• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by coldfire1500 · Jan 17 at 04:39 PM · 3dshootingweapon

weapon Spread

Hi, I've been trying to make this work but couldn't. What I'm aiming for is a bullet spread using raycasts but they change if your current action is moving, walking or not walking, as for it dreceases for each one. It works if I manually type the input axis in the weapon script, however, if I don't and use public bools from the character script like "isWalking" or "isRunning" it gives me a null error. So I'd like to know what are the solutions for this.

 using UnityEngine;
 
 public class PlayerScript : MonoBehaviour {
 
     [Header("CHARACTER CONTROLLER")]
     public CharacterController characterController;
 
     [Header("MOVEMENT")]
     public float walkSpeed = 12f;
     public float sprintSpeed = 22f;
 
     Vector3 velocity;
 
     public bool isWalking;
     public bool isSprinting;
 
     void Start() {
         characterController = GetComponent<CharacterController>();
     }
 
     void Update() {
        Move();
     }
 
     void Move() {
         //PlayerInput
         float moveX = Input.GetAxisRaw("Horizontal");
         float moveZ = Input.GetAxisRaw("Vertical");
 
         bool sprint = Input.GetKey(KeyCode.LeftShift) ||  Input.GetKey(KeyCode.RightShift);
         isSprinting = sprint;
 
         //Move
         if(isWalking) {
             Vector3 move = transform.right * moveX + transform.forward * moveZ;
             characterController.Move(move * moveSpeed * Time.deltaTime);
         }
 
         //Sprint
         if(isSprinting && isGrounded) {
             moveSpeed = sprintSpeed;
         } else {
             moveSpeed = walkSpeed;
             isWalking = true;
         }
 }

and the weapon Script where I mention this is

         RaycastHit hit; //shoot and hit stuff
 
         //Spread
         Vector3 shootDirection = shootPoint.transform.forward;
         if(player.isSprinting) {
             shootDirection = shootDirection + shootPoint.TransformDirection(new Vector3(
                 Random.Range(-SprintspreadFactor, SprintspreadFactor), 
                 Random.Range(-SprintspreadFactor, SprintspreadFactor)));
         } else if(player.isWalking) {
             shootDirection = shootDirection + shootPoint.TransformDirection(new Vector3(
                 Random.Range(-WalkingspreadFactor, WalkingspreadFactor), 
                 Random.Range(-WalkingspreadFactor, WalkingspreadFactor)));
         } else {
             shootDirection = shootDirection + shootPoint.TransformDirection(new Vector3(
                 Random.Range(0, 0), 
                 Random.Range(0, 0)));
         }
 
         //hitting Something
         if(Physics.Raycast(shootPoint.position, shootDirection, out hit, range)) {
             GameObject hitParticlesEffect = (GameObject)Instantiate(hitParticles, hit.point, Quaternion.FromToRotation(Vector3.up, hit.normal)); //Instantiate the wall hitParticles
             GameObject bulletHole = (GameObject)Instantiate(bulletImpact, hit.point, Quaternion.FromToRotation(Vector3.forward, hit.normal)); //Instantiate the wall bulletHole
 
             Destroy(bulletHole, 2f);
 
             //DealDamage
             if(hit.transform.GetComponent<HealthController>()) {
                 hit.transform.GetComponent<HealthController>().ApplyDamage(damage);
             }
 
             SpawnBulletTrail(hit.point);
         }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

189 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Shots don´t go forward 0 Answers

How to Equip/ Dequip by deleting a Gameobject 0 Answers

Problem with a shooting script. 0 Answers

Destroy a spawning enemy prefab with an weapon prefab 0 Answers

[Unity, beginner. Help me.]Fire five parabolic lines in the desired random direction. 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges