I get the following error
Assets/C#/NetworkManager.cs(49,30): error CS0246: The type or namespace name `triggerChildrenCollider’ could not be found. Are you missing a using directive or an assembly reference?
I dont know how i can get it so see where the code is? By the way I get the error from this code GetComponent<triggerChildrenCollider>.enabled = true;
and the caps are correct and its the same name as the code im trying to set to true do i have to add something into the triggerChildrenCollider.js to make it true? And the code up there is in a C# and its trying to do something with a js
in order for a C# script to read JS, they need to be in specific folders. Unity - Manual: Special folders and script compilation order
That fixed allot!!! but there is still three
error Assets/Resources/NetworkManager.cs(52,30): error CS0246: The type or namespace name `crouchController’ could not be found. Are you missing a using directive or an assembly reference?
error
Assets/Resources/NetworkManager.cs(53,48): error CS0246: The type or namespace name `soldierCamera’ could not be found. Are you missing a using directive or an assembly reference?
error Assets/Standard Assets/soldierCamera.js(9,28): BCE0018: The name ‘health’ does not denote a valid type (‘not found’).
oh i fixed those three but now i have 5 new ones -.- omg…