Reputation: 47
I'm toying around with the Demoteam digital human package. I need to adress the SkinAttachment component. but it seems Unity has no knowledge of the necessary namespace Unity.DemoTeam.DigitalHuman
. When i'm adding using Unity.DemoTeam.DigitalHuman
, i get this error:
Error CS0234 The type or namespace name 'Demoteam' does not exist in the namespace 'Unity' (are you missing an assembly reference?)
What am i doing wrong? The component exists and functions properly in my scene, so it definately loaded correctly, i just don't know how to adress it via scripting.
Upvotes: 1
Views: 298
Reputation: 64
You should probably have a upperrcase T, because it looks like that's what the package is using. I'm new to development, but trust me, Unity is SUPER picky about capitals.
(edit: I just realized BugFinder had the same idea as me, I'm not trying to copy them :) )
Upvotes: 1