Unity&プログラミング初心者です。
バージョンは5.5.1です。

Unity5でSteamVRとEditorVR使いたいのですが、エラーが出て、プレイボタンも押せません。

Unity操作画面のスクリーンショット

  • VR: OpenVR Error! OpenVR failed initialization with error code VRInitError_Init_PathRegistryNotFound: "Installation path could not be located (110)"!
  • Assets/EditorVR/Workspaces/Project/Scripts/AssetGridItem.cs(246,13): error CS1061: Type `UnityEngine.Renderer' does not contain a definition for `motionVectors' and no extension method `motionVectors' of type `UnityEngine.Renderer' could be found.

スクリプトの画面を開くと、こう表示されています。

実際のプログラムのスクリーンショット

    // Turn off expensive render settings
    foreach (var renderer in m_PreviewObjectTransform.GetComponentsInChildren<Renderer>())
    {
        renderer.shadowCastingMode = UnityEngine.Rendering.ShadowCastingMode.Off;
        renderer.receiveShadows = false;
        renderer.reflectionProbeUsage = UnityEngine.Rendering.ReflectionProbeUsage.Off;
        renderer.motionVectors = false;
    }

Unity、SteamVRダウンロード直後はエラーは出ておらず、
オブジェクト作成やカメラセッティングをしていく中で
気が付いたらエラー発生しておりました。

どう解決していけば良いでしょうか?

どうかご教授の程、何卒宜しくお願い致します。