Common Issues
New Input System
If you are receiving this error:
⚠️ Assets\GlassVaultStudio\SharedFiles\Scripts\GVS_PlayerInput.cs(6,19): error CS0234: The type or namespace name 'InputSystem' does not exist in the namespace 'UnityEngine' (are you missing an assembly reference?)
Make sure you have installed the new input system package: com.unity.inputsystem
Change the Active Input Handling to “Both”.
Edit > Project Settings > Player > Active Input Handling
NavMesh and Agent
If you are receiving this error:
⚠️ Failed to create agent because there is no valid NavMesh
Make sure your terrain object has the NavMesh surface component on it.
Remember to click the Bake option so that the mesh is created on your terrain. If you already have a mesh, you can press clear, then bake again to update it.
Jobs
If you are receiving this error:
⚠️ Library\PackageCache\com.unity.jobs\Unity.Jobs\IJobParallelForDefer.cs(176,85): error CS8377: The type 'U' must be a non-nullable value type, along with all fields at any level of nesting, in order to use it as parameter 'T' in the generic type or method 'NativeList<T>'
Ensure you are using the latest version of the Unity jobs asset. To do this, go to: package manager > unity registry > jobs > version history
Select update on the latest version.
Character Animation SO
If the Character Animations SO prefab is not compiling correctly: please message GVS.
OnTriggerExit()
If you are trying to use Unity’s OnTriggerExit method, note that this is called if ANY part of the collider leaves the trigger area. The iMove player’s collider is intentionally placed down into the ground so that dynamic platforms can easily detect the player. To have the OnTriggerExit method behave correctly, you need to make sure it goes far enough below the ground so that the player’s collider is all the way within the trigger collider.
Animator Controller
If your character isn't moving and stuck in the T-pose, this means the Animator Controller is likely missing from the Animator component of that character prefab. This can happen when assigning or creating a new animator controller. Ensure the animator controller on the Animator is the same one as the iMove Character Set up.

Last updated