|
I'm trying to pass a value from a player script to the camera script, to see if the player had ducked to move the camera. I've tested the bool in the player script and it returned the correct value but when I pass the bool to the camera script it constantly returns false. but in the cam script it keeps returning false in the update method after i init the variable in the start method. and the update method constantly shows it as false
(comments are locked)
|
|
If you're calling this "_ducking = GameObject.Find("player").GetComponent().duck;" in start, then you're only getting what the variable is AT Start.... cache the script, then get the variable in update and see how that goes.
Just a quick guess, anyway... never did it like that before (setting the variable with getcomponent at start... I always do it this way and it works) I tried what you suggested and it didn't work, it wont recongnise the _ducking.duck because it cant see the .duck being pulled from the Duck class.
Feb 01 '12 at 09:51 AM
dirtydemon
I just tried it after seeing your comment, and it works perfectly fine. Did you change your _ducking variable declaration to suit the other changes? NameOfDuckScript _ducking ;
Feb 01 '12 at 10:03 AM
Lo0NuhtiK
Hmm thanks for the support. I changed that and now i'm just getting a null refrance exception form the debug statement. saying its not linked to an object. Even though when I hover over it in mono it shows me it as being a bool???? sorry the exception error is coming from _ducking = GameObject.Find("player").GetComponent();
Feb 01 '12 at 10:14 AM
dirtydemon
Oh... didn't see the edit you made to your comment. So, you got it to work now then?
Feb 01 '12 at 10:24 AM
Lo0NuhtiK
Unfortunatly no, I'm a uni student and got a demo in 90 mins wanna get the ducking working by then. just gonna plug away at it.
Feb 01 '12 at 10:27 AM
dirtydemon
(comments are locked)
|
