- Home /
VR Steam VR Asset
Hi guys,
I am working on a personal project with Unity, and I'm trying to use steam vr to connect with my vive camera. With the new steamvr plugin, the 1.1.1 version, I have run into a bug.
These are my two errors Assets/SteamVR/Scripts/SteamVR_ExternalCamera.cs(151,48): error CS0103: The name LightProbeUsage' does not exist in the current context Assets/SteamVR/Scripts/SteamVR_ExternalCamera.cs(151,30): error CS1061: Type
UnityEngine.MeshRenderer' does not contain a definition for lightProbeUsage' and no extension method
lightProbeUsage' of type `UnityEngine.MeshRenderer' could be found (are you missing a using directive or an assembly reference?)
Does anyone know how to fix these errors?
Thanks!
Answer by y0kkaboom · Jan 14, 2019 at 02:42 PM
@mira1168 Did You try to re-import the package? Maybe something went wrong!
If you tried: I think you should search for wherever the problem first occurs is (is clicking on the error guiding you to first occurrence? Maybe you could understand what is the problem by reading a bit of the code in the area) and then create a LightProbeUsage Component (if it's not a script ) or delete (usually deleting is a bad idea put in comments) all occurence (ctrl +f) of that. Then if the dev made it useless nothing should change and you could do your thing. It's kind of wanky I must admit...