Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • 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 Guri007 · Jun 16, 2016 at 05:50 PM · unassignedreferenceexcept

PLZ HELP !!!!!

ERROR SHOWING-UnassignedReferenceException: The variable m_MovementAudio of TankMovement has not been assigned. You probably need to assign the m_MovementAudio variable of the TankMovement script in the inspector. TankMovement.Start () (at Assets/Scripts/Tank/TankMovement.cs:47)

using UnityEngine;

public class TankMovement : MonoBehaviour { public int m_PlayerNumber = 1;
public float m_Speed = 12f;
public float m_TurnSpeed = 180f;
public AudioSource m_MovementAudio;
public AudioClip m_EngineIdling;
public AudioClip m_EngineDriving;
public float m_PitchRange = 0.2f;

 private string m_MovementAxisName;     
 private string m_TurnAxisName;         
 private Rigidbody m_Rigidbody;         
 private float m_MovementInputValue;    
 private float m_TurnInputValue;        
 private float m_OriginalPitch;         


 private void Awake()
 {
     m_Rigidbody = GetComponent<Rigidbody>();
 }


 private void OnEnable ()
 {
     m_Rigidbody.isKinematic = false;
     m_MovementInputValue = 0f;
     m_TurnInputValue = 0f;
 }


 private void OnDisable ()
 {
     m_Rigidbody.isKinematic = true;
 }


 private void Start()
 {
     m_MovementAxisName = "Vertical" + m_PlayerNumber;
     m_TurnAxisName = "Horizontal" + m_PlayerNumber;

     m_OriginalPitch = m_MovementAudio.pitch;
 }
   

 private void Update()
 {
     // Store the player's input and make sure the audio for the engine is playing.
     m_MovementInputValue = Input.GetAxis (m_MovementAxisName);
     m_TurnInputValue = Input.GetAxis (m_TurnAxisName);
     EngineAudio ();
 }


 private void EngineAudio()
 {
     // Play the correct audio clip based on whether or not the tank is moving and what audio is currently playing.
     if (Mathf.Abs (m_MovementInputValue) < 0.1f && Mathf.Abs (m_TurnInputValue) < 0.1f) 
     {
         if (m_MovementAudio.clip == m_EngineDriving) 
         {
             m_MovementAudio.clip = m_EngineIdling;
             m_MovementAudio.pitch = Random.Range (m_OriginalPitch - m_PitchRange, m_OriginalPitch + m_PitchRange);
             m_MovementAudio.Play ();
         }
     } else 
     {
         if (m_MovementAudio.clip == m_EngineIdling) 
         {
             m_MovementAudio.clip = m_EngineDriving;
             m_MovementAudio.pitch = Random.Range (m_OriginalPitch - m_PitchRange, m_OriginalPitch + m_PitchRange);
             m_MovementAudio.Play ();
         }
     }
 }


 private void FixedUpdate()
 {
     // Move and turn the tank.
     Move ();
     Turn ();

 }


 private void Move()
 {
     // Adjust the position of the tank based on the player's input.
     Vector3 movement = transform.forward * m_MovementInputValue * m_Speed * Time.deltaTime;

     m_Rigidbody.MovePosition (m_Rigidbody.position + movement);
 }


 private void Turn()
 {
     // Adjust the rotation of the tank based on the player's input.
     float turn = m_TurnInputValue * m_TurnSpeed * Time.deltaTime;

     Quaternion turnRotation = Quaternion.Euler (0f, turn, 0f);

     m_Rigidbody.MoveRotation (m_Rigidbody.rotation * turnRotation);
 }

}

Comment
Add comment · Show 2
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
avatar image Dave-Carlile · Jun 16, 2016 at 05:51 PM 0
Share

Please edit your question, select all of the code and use the 101010 button to format it properly.

avatar image Dave-Carlile · Jun 16, 2016 at 05:51 PM 0
Share

Have you done what the error message says to do? Where does a value get assigned to the m_$$anonymous$$ovementAudio field?

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.

Follow this Question

Answers Answers and Comments

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Unassigned reference exception 0 Answers

Unassigned Reference Exception on an Animator, but Animator is assigned in Inspector? 0 Answers

UnassignedReferenceException: The variable enemy of EnemiesSpawner has not been assigned 0 Answers

Variable has been assigned but has UnassignedReferenceExcecption 1 Answer

Unassigned reference is assigned and works despite the error... help! 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges