Pose.cs' conflicts with the imported type 'Pose' in 'UnityEngine.CoreModule

Hello, So ive downloaded an SDK which on importing its package into unity i get this warning

Pose.cs conflicts with the imported type ‘Pose’ in 'UnityEngine.CoreModule

Now i think this means the Pose.cs script inside this SDK has some issues with the POSE.cs inside the unity core engine module. How might i go about fixing this so i don’t get these warnings any more ? I would like to link or have it reference the CoreModule pose.

Thank you

You probably need to put all of the custom SDKs classes into their own namespace.
If you only put the Pose.cs into that new namespace the other scripts in the SDK will likely throw errors.

1 Like