How do i get the bullets to emit directly forwards, ignoring the physics of the player (rolling)?

General Tech Bugs & Fixes 3 years ago

2.82K 1 0 0 0

User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 3 years ago

 

The issue with my code is that the bullets will basically spill out of the player object but i cannot get them to shoot directly forward to hit the obstacles. Instead, as the player rolls each direction, the bullets come out the same set vector which is not what i want. I'd like the bullets to shoot along the x-axis only while instead, they shoot out of all sides depending on how the player rolls.

I've tried changing the bullet rotation and force, in the case that the bullet force altered the player direction and momentum. That failed so i removed the players forward force to test, and still no progress.

using UnityEngine;

public class PlayerMovement : MonoBehaviour
{

    public Rigidbody rb;
    public float backwardForce = -60f;
    public float forwardForce = 100f;
    public float sidewaysForce = 1f;

    // Start is called before the first frame update
    void Start()
    {
        rb.AddForce(0, 100, 200);
    }

    // Update is called once per frame
    void FixedUpdate()
    {
        //Movement force
        rb.AddForce(0, 0, 50.0f * Time.deltaTime);

        if (Input.GetKey("a"))
        {
            rb.AddForce(-sidewaysForce * Time.deltaTime, 0, 0, ForceMode.VelocityChange);
        }
        else if (Input.GetKey("d"))
        {
            rb.AddForce(sidewaysForce * Time.deltaTime, 0, 0, ForceMode.VelocityChange);
        }
        else if (Input.GetKey("w"))
        {
            rb.AddForce(forwardForce * Time.deltaTime, 0, 0, ForceMode.Force);
        }
        else if (Input.GetKey("s"))
        {
            rb.AddForce(backwardForce * Time.deltaTime, 0, 0, ForceMode.Force);
        }


        /*switch (Input.GetKeyDown())
         {

            // case Input.GetKeyDown("a"):


            //a: rb.AddForce(sidewaysForce * Time.deltaTime, 0, 0);

        }
    }
}
public class BulletShoot : MonoBehaviour
{

    //Reference to bullet emitter
    public GameObject Bullet_Emitter;

    //Reference to bullet prefab
    public GameObject Bullet;

    //Forward force of bullet
    public float Bullet_Force;// = 10.0f;

    // Start is called before the first frame update
    void Start()
    {

    }

    // Update is called once per frame
    void Update()
    {
        //When "Space" key is pressed..
        if (Input.GetKey(
                                                
0 views
0 shares

No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

Similar Forum