can't access a component (don't exist).

Hey guys, im in the process of updating one of my Asset Store items to be updated and I need to be able to access the new AR components. But for some reason, when I go into script and do

gameObject.AddComponent<SpatialMappingCollider>(); it can’t find “SpatialMappingCollider” nor the Renderer components. When I say can’t find, I mean literally - it’s just not there.

Do I need to derive from some sort of Namespace at the top to do this? Or is this some protected component’s that you can’t access yet.

This is for 5.5.0f3

Ah got it. Wow almost every single time I post on here I end up figuring it out after a little longer tinkering.

For anyone who runs into this problem you have to add at the top

“using UnityEngine.VR.WSA;” And it will become available.