28-08-2016, 11:58 AM
ho fatto come dici
if (!m_CharacterController.isGrounded || inwater == true);
ma mi da questo errore
Severity Code Description Project File Line Suppression State
Error CS0103 The name 'inwater' does not exist in the current context L.O.S.T. Pre Alpha v0.1.CSharp.Plugins C:\Users\Peppe\Documents\L.O.S.T. Pre Alpha v0.1\Assets\Standard Assets\Characters\FirstPersonCharacter\Scripts\FirstPersonController.cs 214 Active
perchè la variable non è dichiarata all'interno del firstpersoncontroller.cs giusto?
ma la variabile si trova nello script Swim.cs come t iavevo scritto in alcuni post fa..
allora ho provato a fare come per gli altri script con il Getcomponent cosi:
if (!m_CharacterController.isGrounded || this.gameObject.GetComponent<Swim>().inwater == true)
ma mi viene dato l'errore
Severity Code Description Project File Line Suppression State
Error CS0246 The type or namespace name 'Swim' could not be found (are you missing a using directive or an assembly reference?) L.O.S.T. Pre Alpha v0.1.CSharp.Plugins C:\Users\Peppe\Documents\L.O.S.T. Pre Alpha v0.1\Assets\Standard Assets\Characters\FirstPersonCharacter\Scripts\FirstPersonController.cs 214 Active
if (!m_CharacterController.isGrounded || inwater == true);
ma mi da questo errore
Severity Code Description Project File Line Suppression State
Error CS0103 The name 'inwater' does not exist in the current context L.O.S.T. Pre Alpha v0.1.CSharp.Plugins C:\Users\Peppe\Documents\L.O.S.T. Pre Alpha v0.1\Assets\Standard Assets\Characters\FirstPersonCharacter\Scripts\FirstPersonController.cs 214 Active
perchè la variable non è dichiarata all'interno del firstpersoncontroller.cs giusto?
ma la variabile si trova nello script Swim.cs come t iavevo scritto in alcuni post fa..
allora ho provato a fare come per gli altri script con il Getcomponent cosi:
if (!m_CharacterController.isGrounded || this.gameObject.GetComponent<Swim>().inwater == true)
ma mi viene dato l'errore
Severity Code Description Project File Line Suppression State
Error CS0246 The type or namespace name 'Swim' could not be found (are you missing a using directive or an assembly reference?) L.O.S.T. Pre Alpha v0.1.CSharp.Plugins C:\Users\Peppe\Documents\L.O.S.T. Pre Alpha v0.1\Assets\Standard Assets\Characters\FirstPersonCharacter\Scripts\FirstPersonController.cs 214 Active