Advertisement
Guest User

CM3D2CameraUtility.Plugin

a guest
Aug 17th, 2015
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 21.94 KB | None | 0 0
  1. using System;
  2. using System.Reflection;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using UnityEngine;
  7. using UnityInjector;
  8. using UnityInjector.Attributes;
  9.  
  10. namespace CM3D2CameraUtility
  11. {
  12.     [PluginFilter("CM3D2x64"),
  13.     PluginFilter("CM3D2x86"),
  14.     PluginFilter("CM3D2VRx64"),
  15.     PluginName("Camera Utility"),
  16.     PluginVersion("2.0.0.0")]
  17.  
  18.     public class CameraUtility : PluginBase
  19.     {
  20.         //移動関係キー設定
  21.         private KeyCode bgLeftMoveKey = KeyCode.LeftArrow;
  22.         private KeyCode bgRightMoveKey = KeyCode.RightArrow;
  23.         private KeyCode bgForwardMoveKey = KeyCode.UpArrow;
  24.         private KeyCode bgBackMoveKey = KeyCode.DownArrow;
  25.         private KeyCode bgUpMoveKey = KeyCode.PageUp;
  26.         private KeyCode bgDownMoveKey = KeyCode.PageDown;
  27.         private KeyCode bgLeftRotateKey = KeyCode.Delete;
  28.         private KeyCode bgRightRotateKey = KeyCode.End;
  29.         private KeyCode bgLeftPitchKey = KeyCode.Insert;
  30.         private KeyCode bgRightPitchKey = KeyCode.Home;
  31.         private KeyCode bgInitializeKey = KeyCode.Backspace;
  32.  
  33.         //VR用移動関係キー設定
  34.         private KeyCode bgLeftMoveKeyVR = KeyCode.J;
  35.         private KeyCode bgRightMoveKeyVR = KeyCode.L;
  36.         private KeyCode bgForwardMoveKeyVR = KeyCode.I;
  37.         private KeyCode bgBackMoveKeyVR = KeyCode.K;
  38.         private KeyCode bgUpMoveKeyVR = KeyCode.Alpha0;
  39.         private KeyCode bgDownMoveKeyVR = KeyCode.P;
  40.         private KeyCode bgLeftRotateKeyVR = KeyCode.U;
  41.         private KeyCode bgRightRotateKeyVR = KeyCode.O;
  42.         private KeyCode bgLeftPitchKeyVR = KeyCode.Alpha8;
  43.         private KeyCode bgRightPitchKeyVR = KeyCode.Alpha9;
  44.         private KeyCode bgInitializeKeyVR = KeyCode.Backspace;
  45.  
  46.         //カメラ操作関係キー設定
  47.         private KeyCode cameraLeftPitchKey = KeyCode.Period;
  48.         private KeyCode cameraRightPitchKey = KeyCode.Backslash;
  49.         private KeyCode cameraPitchInitializeKey = KeyCode.Slash;
  50.         private KeyCode cameraFoVPlusKey = KeyCode.RightBracket;
  51.         //Equalsになっているが日本語キーボードだとセミコロン
  52.         private KeyCode cameraFoVMinusKey = KeyCode.Equals;
  53.         //Semicolonになっているが日本語キーボードだとコロン
  54.         private KeyCode cameraFoVInitializeKey = KeyCode.Semicolon;
  55.  
  56.         //こっち見てキー設定
  57.         private KeyCode eyetoCamToggleKey = KeyCode.G;
  58.         private KeyCode eyetoCamChangeKey = KeyCode.T;
  59.  
  60.         //夜伽UI消しキー設定
  61.         private KeyCode hideUIToggleKey = KeyCode.Tab;
  62.  
  63.         //FPSモード切替キー設定
  64.         private KeyCode cameraFPSModeToggleKey = KeyCode.F;
  65.  
  66.         //TimeScale変更関係キー設定
  67.         private KeyCode timeScalePlusKey = KeyCode.LeftBracket;
  68.         private KeyCode timeScaleMinusKey = KeyCode.P;
  69.         private KeyCode timeScaleInitialize = KeyCode.BackQuote;
  70.         private KeyCode timeScaleZero = KeyCode.O;
  71.  
  72.         private enum modKey
  73.         {
  74.             Shift,
  75.             Alt,
  76.             Ctrl
  77.         }
  78.  
  79.         private Maid maid;
  80.         private CameraMain mainCamera;
  81.         private Transform mainCameraTransform;
  82.         private Transform maidTransform;
  83.         private Transform bg;
  84.         private GameObject manEye;
  85.         private GameObject uiObject;
  86.  
  87.         private float defaultFOV = 35f;
  88.         private bool allowUpdate = false;
  89.         private bool occulusVR = false;
  90.         private bool fpsMode = false;
  91.         private bool eyetoCamToggle = false;
  92.  
  93.         private float cameraRotateSpeed = 1f;
  94.         private float cameraFOVChangeSpeed = 0.25f;
  95.         private float floorMoveSpeed = 0.05f;
  96.         private float maidRotateSpeed = 2f;
  97.         private float fpsModeFoV = 60f;
  98.  
  99.         private int sceneLevel;
  100.         private int frameCount = 0;
  101.  
  102.         private float fpsOffsetForward = 0.02f;
  103.         private float fpsOffsetUp = 0.06f;
  104.  
  105.         ////以下の数値だと男の目の付近にカメラが移動しますが
  106.         ////うちのメイドはデフォで顔ではなく喉元見てるのであんまりこっち見てくれません
  107.         //private float fpsOffsetForward = 0.1f;
  108.         //private float fpsOffsetUp = 0.12f;
  109.  
  110.         private Vector3 oldPos;
  111.         private Vector3 oldTargetPos;
  112.         private float oldDistance;
  113.         private float oldFoV;
  114.         private Quaternion oldRotation;
  115.  
  116.         private bool oldEyetoCamToggle;
  117.         private int eyeToCamIndex = 0;
  118.  
  119.         private bool uiVisible = true;
  120.         private GameObject profilePanel;
  121.  
  122.         public void Awake()
  123.         {
  124.             GameObject.DontDestroyOnLoad(this);
  125.  
  126.             string path = Application.dataPath;
  127.             occulusVR = path.Contains("CM3D2VRx64");
  128.             if (occulusVR)
  129.             {
  130.                 bgLeftMoveKey = bgLeftMoveKeyVR;
  131.                 bgRightMoveKey = bgRightMoveKeyVR;
  132.                 bgForwardMoveKey = bgForwardMoveKeyVR;
  133.                 bgBackMoveKey = bgBackMoveKeyVR;
  134.                 bgUpMoveKey = bgUpMoveKeyVR;
  135.                 bgDownMoveKey = bgDownMoveKeyVR;
  136.                 bgLeftRotateKey = bgLeftRotateKeyVR;
  137.                 bgRightRotateKey = bgRightRotateKeyVR;
  138.                 bgLeftPitchKey = bgLeftPitchKeyVR;
  139.                 bgRightPitchKey = bgRightPitchKeyVR;
  140.                 bgInitializeKey = bgInitializeKeyVR;
  141.             }
  142.         }
  143.  
  144.         public void Start()
  145.         {
  146.             mainCameraTransform = Camera.main.gameObject.transform;
  147.         }
  148.  
  149.         public void OnLevelWasLoaded(int level)
  150.         {
  151.             sceneLevel = level;
  152.  
  153.             maid = GameMain.Instance.CharacterMgr.GetMaid(0);
  154.  
  155.             if (maid)
  156.             {
  157.                 maidTransform = maid.body0.transform;
  158.             }
  159.  
  160.             bg = GameObject.Find("__GameMain__/BG").transform;
  161.  
  162.             mainCamera = GameMain.Instance.MainCamera;
  163.  
  164.             if (maid && bg && maidTransform)
  165.             {
  166.                 allowUpdate = true;
  167.             }
  168.             else
  169.             {
  170.                 allowUpdate = false;
  171.             }
  172.  
  173.             if (occulusVR)
  174.             {
  175.                 uiObject = GameObject.Find("ovr_screen");
  176.             }
  177.             else
  178.             {
  179.                 uiObject = GameObject.Find("/UI Root/Camera");
  180.                 defaultFOV = Camera.main.fieldOfView;
  181.             }
  182.  
  183.             if (level == 5)
  184.             {
  185.                 GameObject uiRoot = GameObject.Find("/UI Root");
  186.                 profilePanel = uiRoot.transform.Find("ProfilePanel").gameObject;
  187.             }
  188.             else if (level == 12)
  189.             {
  190.                 GameObject uiRoot = GameObject.Find("/UI Root");
  191.                 profilePanel = uiRoot.transform.Find("UserEditPanel").gameObject;
  192.             }
  193.             fpsMode = false;
  194.         }
  195.  
  196.         private bool getModKeyPressing(modKey key)
  197.         {
  198.             switch (key)
  199.             {
  200.                 case modKey.Shift:
  201.                     return (Input.GetKey(KeyCode.LeftShift) || Input.GetKey(KeyCode.RightShift));
  202.                 case modKey.Alt:
  203.                     return (Input.GetKey(KeyCode.LeftAlt) || Input.GetKey(KeyCode.RightAlt));
  204.                 case modKey.Ctrl:
  205.                     return (Input.GetKey(KeyCode.LeftControl) || Input.GetKey(KeyCode.RightControl));
  206.                 default:
  207.                     return false;
  208.             }
  209.         }
  210.  
  211.         private void SaveCameraPos()
  212.         {
  213.             oldPos = mainCamera.GetPos();
  214.             oldTargetPos = mainCamera.GetTargetPos();
  215.             oldDistance = mainCamera.GetDistance();
  216.             oldRotation = mainCameraTransform.rotation;
  217.             oldFoV = Camera.main.fieldOfView;
  218.         }
  219.  
  220.         private void LoadCameraPos()
  221.         {
  222.             mainCameraTransform.rotation = oldRotation;
  223.             mainCamera.SetPos(oldPos);
  224.             mainCamera.SetTargetPos(oldTargetPos, true);
  225.             mainCamera.SetDistance(oldDistance, true);
  226.             Camera.main.fieldOfView = oldFoV;
  227.         }
  228.  
  229.         private Vector3 GetYotogiPlayPosition()
  230.         {
  231.             var field = mainCamera.GetType().GetField("m_vCenter", BindingFlags.GetField | BindingFlags.NonPublic | BindingFlags.Instance);
  232.             return (Vector3)field.GetValue(mainCamera);
  233.         }
  234.  
  235.         private void FirstPersonCamera()
  236.         {
  237.             if (sceneLevel == 14)
  238.             {
  239.                 if (!manEye)
  240.                 {
  241.                     if (frameCount == 60)
  242.                     {
  243.                         manEye = GameObject.Find("__GameMain__/Character/Active/AllOffset/Man[0]/Offset/_BO_mbody/_SM_mbody/ManBip/ManBip Spine/ManBip Spine1/ManBip Spine2/ManBip Neck/ManBip Head");
  244.                         frameCount = 0;
  245.                     }
  246.                     else
  247.                     {
  248.                         frameCount++;
  249.                     }
  250.                 }
  251.                 else
  252.                 {
  253.                     if (occulusVR)
  254.                     {
  255.                         if (Input.GetKeyDown(cameraFPSModeToggleKey))
  256.                         {
  257.                             //    eyetoCamToggle = false;
  258.                             //    maid.EyeToCamera(Maid.EyeMoveType.無し, 0f);
  259.                             Vector3 localPos = uiObject.transform.localPosition;
  260.                             mainCamera.SetPos(manEye.transform.position);
  261.                             uiObject.transform.position = manEye.transform.position;
  262.                             uiObject.transform.localPosition = localPos;
  263.  
  264.                         }
  265.                     }
  266.                     else
  267.                     {
  268.                         if (Input.GetKeyDown(cameraFPSModeToggleKey))
  269.                         {
  270.                             fpsMode = !fpsMode;
  271.                             Console.WriteLine("fpsmode = " + fpsMode.ToString());
  272.                             if (fpsMode)
  273.                             {
  274.                                 SaveCameraPos();
  275.  
  276.                                 Camera.main.fieldOfView = fpsModeFoV;
  277.                                 eyetoCamToggle = false;
  278.                                 maid.EyeToCamera(Maid.EyeMoveType.無し, 0f);
  279.  
  280.                                 mainCameraTransform.rotation = Quaternion.LookRotation(manEye.transform.up);
  281.                             }
  282.                             else
  283.                             {
  284.                                 Vector3 cameraTargetPosFromScript = GetYotogiPlayPosition();
  285.  
  286.                                 if (oldTargetPos != cameraTargetPosFromScript)
  287.                                 {
  288.                                     Console.WriteLine("Position Changed!");
  289.                                     oldTargetPos = cameraTargetPosFromScript;
  290.                                 }
  291.  
  292.                                 LoadCameraPos();
  293.                                 //Camera.main.fieldOfView = defaultFOV;
  294.  
  295.                                 eyetoCamToggle = oldEyetoCamToggle;
  296.                                 oldEyetoCamToggle = eyetoCamToggle;
  297.                             }
  298.                         }
  299.                         if (fpsMode)
  300.                         {
  301.                             Vector3 cameraTargetPosFromScript = GetYotogiPlayPosition();
  302.                             if (oldTargetPos != cameraTargetPosFromScript)
  303.                             {
  304.                                 Console.WriteLine("Position Changed!");
  305.                                 mainCameraTransform.rotation = Quaternion.LookRotation(manEye.transform.up);
  306.                                 oldTargetPos = cameraTargetPosFromScript;
  307.  
  308.                             }
  309.  
  310.                             mainCamera.SetPos(manEye.transform.position + manEye.transform.up * fpsOffsetUp + manEye.transform.right * -fpsOffsetForward);
  311.  
  312.                             mainCamera.SetTargetPos(manEye.transform.position + manEye.transform.up * fpsOffsetUp + manEye.transform.right * -fpsOffsetForward, true);
  313.                             mainCamera.SetDistance(0f, true);
  314.                         }
  315.                     }
  316.                 }
  317.             }
  318.         }
  319.  
  320.         private void ExtendedCameraHandle()
  321.         {
  322.             if (!occulusVR)
  323.             {
  324.                 if (mainCameraTransform)
  325.                 {
  326.                     if (Input.GetKey(cameraFoVMinusKey))
  327.                     {
  328.                         Camera.main.fieldOfView += -cameraFOVChangeSpeed;
  329.                     }
  330.                     if (Input.GetKey(cameraFoVInitializeKey))
  331.                     {
  332.                         Camera.main.fieldOfView = defaultFOV;
  333.                     }
  334.                     if (Input.GetKey(cameraFoVPlusKey))
  335.                     {
  336.                         Camera.main.fieldOfView += cameraFOVChangeSpeed;
  337.                     }
  338.                     if (Input.GetKey(cameraLeftPitchKey))
  339.                     {
  340.                         mainCameraTransform.Rotate(0, 0, cameraRotateSpeed);
  341.                     }
  342.                     if (Input.GetKey(cameraPitchInitializeKey))
  343.                     {
  344.                         mainCameraTransform.eulerAngles = new Vector3(
  345.                             mainCameraTransform.rotation.eulerAngles.x,
  346.                             mainCameraTransform.rotation.eulerAngles.y,
  347.                             0f);
  348.                     }
  349.                     if (Input.GetKey(cameraRightPitchKey))
  350.                     {
  351.                         mainCameraTransform.Rotate(0, 0, -cameraRotateSpeed);
  352.                     }
  353.                 }
  354.             }
  355.         }
  356.  
  357.         private void FloorMover(float moveSpeed, float rotateSpeed)
  358.         {
  359.             if (bg)
  360.             {
  361.                 Vector3 cameraForward = mainCameraTransform.TransformDirection(Vector3.forward);
  362.                 Vector3 cameraRight = mainCameraTransform.TransformDirection(Vector3.right);
  363.                 Vector3 cameraUp = mainCameraTransform.TransformDirection(Vector3.up);
  364.  
  365.                 Vector3 direction = Vector3.zero;
  366.  
  367.                 if (Input.GetKey(bgLeftMoveKey))
  368.                 {
  369.                     direction += new Vector3(cameraRight.x, 0f, cameraRight.z) * moveSpeed;
  370.                 }
  371.                 if (Input.GetKey(bgRightMoveKey))
  372.                 {
  373.                     direction += new Vector3(cameraRight.x, 0f, cameraRight.z) * -moveSpeed;
  374.                 }
  375.                 if (Input.GetKey(bgBackMoveKey))
  376.                 {
  377.                     direction += new Vector3(cameraForward.x, 0f, cameraForward.z) * moveSpeed;
  378.                 }
  379.                 if (Input.GetKey(bgForwardMoveKey))
  380.                 {
  381.                     direction += new Vector3(cameraForward.x, 0f, cameraForward.z) * -moveSpeed;
  382.                 }
  383.                 if (Input.GetKey(bgUpMoveKey))
  384.                 {
  385.                     direction += new Vector3(0f, cameraUp.y, 0f) * -moveSpeed;
  386.                 }
  387.                 if (Input.GetKey(bgDownMoveKey))
  388.                 {
  389.                     direction += new Vector3(0f, cameraUp.y, 0f) * moveSpeed;
  390.                 }
  391.  
  392.                 bg.localPosition += direction;
  393.  
  394.                 if (Input.GetKey(bgLeftRotateKey))
  395.                 {
  396.                     bg.RotateAround(maidTransform.transform.position, Vector3.up, rotateSpeed);
  397.                 }
  398.                 if (Input.GetKey(bgRightRotateKey))
  399.                 {
  400.                     bg.RotateAround(maidTransform.transform.position, Vector3.up, -rotateSpeed);
  401.                 }
  402.                 if (Input.GetKey(bgLeftPitchKey))
  403.                 {
  404.                     bg.RotateAround(maidTransform.transform.position, new Vector3(cameraForward.x, 0f, cameraForward.z), rotateSpeed);
  405.                 }
  406.                 if (Input.GetKey(bgRightPitchKey))
  407.                 {
  408.                     bg.RotateAround(maidTransform.transform.position, new Vector3(cameraForward.x, 0f, cameraForward.z), -rotateSpeed);
  409.                 }
  410.  
  411.                 if (getModKeyPressing(modKey.Alt) && (Input.GetKey(bgLeftRotateKey) || Input.GetKey(bgRightRotateKey)))
  412.                 {
  413.                     bg.RotateAround(maidTransform.position, Vector3.up, -bg.rotation.eulerAngles.y);
  414.                 }
  415.                 if (getModKeyPressing(modKey.Alt) && (Input.GetKey(bgLeftPitchKey) || Input.GetKey(bgRightPitchKey)))
  416.                 {
  417.                     bg.RotateAround(maidTransform.position, Vector3.forward, -bg.rotation.eulerAngles.z);
  418.                     bg.RotateAround(maidTransform.position, Vector3.right, -bg.rotation.eulerAngles.x);
  419.                 }
  420.                 if (getModKeyPressing(modKey.Alt) && (Input.GetKey(bgLeftMoveKey) || Input.GetKey(bgRightMoveKey) || Input.GetKey(bgBackMoveKey) || Input.GetKey(bgForwardMoveKey)))
  421.                 {
  422.                     bg.localPosition = new Vector3(0f, bg.localPosition.y, 0f);
  423.                 }
  424.                 if (getModKeyPressing(modKey.Alt) && (Input.GetKey(bgUpMoveKey) || Input.GetKey(bgDownMoveKey)))
  425.                 {
  426.                     bg.localPosition = new Vector3(bg.localPosition.x, 0f, bg.localPosition.z);
  427.                 }
  428.                 if (Input.GetKeyDown(bgInitializeKey))
  429.                 {
  430.                     bg.localPosition = Vector3.zero;
  431.                     bg.RotateAround(maidTransform.position, Vector3.up, -bg.rotation.eulerAngles.y);
  432.                     bg.RotateAround(maidTransform.position, Vector3.right, -bg.rotation.eulerAngles.x);
  433.                     bg.RotateAround(maidTransform.position, Vector3.forward, -bg.rotation.eulerAngles.z);
  434.                     bg.RotateAround(maidTransform.position, Vector3.up, -bg.rotation.eulerAngles.y);
  435.                 }
  436.             }
  437.         }
  438.  
  439.         private void LookAtThis()
  440.         {
  441.             if (Input.GetKeyDown(eyetoCamChangeKey))
  442.             {
  443.                 if (eyeToCamIndex == Enum.GetNames(typeof(Maid.EyeMoveType)).Length - 1)
  444.                 {
  445.                     eyetoCamToggle = false;
  446.                     eyeToCamIndex = 0;
  447.                 }
  448.                 else
  449.                 {
  450.                     eyeToCamIndex++;
  451.                     eyetoCamToggle = true;
  452.                 }
  453.                 maid.EyeToCamera((Maid.EyeMoveType)eyeToCamIndex, 0f);
  454.                 Console.WriteLine("EyeToCam:{0}", eyeToCamIndex);
  455.             }
  456.  
  457.             if (Input.GetKeyDown(eyetoCamToggleKey))
  458.             {
  459.                 eyetoCamToggle = !eyetoCamToggle;
  460.                 //Console.WriteLine("Eye to Cam : {0}", eyetoCamToggle);
  461.                 if (!eyetoCamToggle)
  462.                 {
  463.                     maid.EyeToCamera(Maid.EyeMoveType.無し, 0f);
  464.                     eyeToCamIndex = 0;
  465.                     Console.WriteLine("EyeToCam:{0}", eyeToCamIndex);
  466.                 }
  467.                 else
  468.                 {
  469.                     maid.EyeToCamera(Maid.EyeMoveType.目と顔を向ける, 0f);
  470.                     eyeToCamIndex = 5;
  471.                     Console.WriteLine("EyeToCam:{0}", eyeToCamIndex);
  472.                 }
  473.             }
  474.         }
  475.  
  476.         private void TimeScaleChanger()
  477.         {
  478.             if (Input.GetKeyDown(timeScaleMinusKey))
  479.             {
  480.                 Time.timeScale = Mathf.Max(0f, Time.timeScale - 0.2f);
  481.                 Console.WriteLine("TileScale:{0}", Time.timeScale);
  482.             }
  483.             if (Input.GetKeyDown(timeScalePlusKey))
  484.             {
  485.                 Time.timeScale += 0.2f;
  486.                 Console.WriteLine("TileScale:{0}", Time.timeScale);
  487.             }
  488.             if (Input.GetKeyDown(timeScaleZero))
  489.             {
  490.                 Time.timeScale = 0f;
  491.                 Console.WriteLine("TileScale:{0}", Time.timeScale);
  492.             }
  493.             if (Input.GetKeyDown(timeScaleInitialize))
  494.             {
  495.                 Time.timeScale = 1f;
  496.                 Console.WriteLine("TileScale:{0}", Time.timeScale);
  497.             }
  498.         }
  499.  
  500.         private void HideUI()
  501.         {
  502.             if (Input.GetKeyDown(hideUIToggleKey))
  503.             {
  504.                 if (sceneLevel == 5 || sceneLevel == 14)
  505.                 {
  506.                     var field = GameMain.Instance.MainCamera.GetType().GetField("m_eFadeState", BindingFlags.GetField | BindingFlags.NonPublic | BindingFlags.Instance);
  507.  
  508.                     int i = (int)field.GetValue(mainCamera);
  509.                     //Console.WriteLine("FadeState:{0}", i);
  510.                     if (i == 0)
  511.                     {
  512.                         uiVisible = !uiVisible;
  513.                         if (uiObject)
  514.                         {
  515.                             uiObject.SetActive(uiVisible);
  516.                         }
  517.                     }
  518.                     Console.WriteLine("UIVisible:{0}", uiVisible);
  519.                 }
  520.             }
  521.         }
  522.  
  523.         public void Update()
  524.         {
  525.  
  526.             if (sceneLevel == 5)
  527.             {
  528.                 if (profilePanel.activeSelf)
  529.                 {
  530.                     allowUpdate = false;
  531.                 }
  532.                 else
  533.                 {
  534.                     allowUpdate = true;
  535.                 }
  536.             }
  537.             else if (sceneLevel == 12)
  538.             {
  539.                 if (profilePanel.activeSelf)
  540.                 {
  541.                     allowUpdate = false;
  542.                 }
  543.                 else
  544.                 {
  545.                     allowUpdate = true;
  546.                 }
  547.             }
  548.  
  549.             if (allowUpdate)
  550.             {
  551.                 float moveSpeed = floorMoveSpeed;
  552.                 float rotateSpeed = maidRotateSpeed;
  553.  
  554.                 if (getModKeyPressing(modKey.Shift))
  555.                 {
  556.                     moveSpeed *= 0.1f;
  557.                     rotateSpeed *= 0.1f;
  558.                 }
  559.  
  560.                 //TimeScaleChanger();
  561.  
  562.                 FirstPersonCamera();
  563.  
  564.                 LookAtThis();
  565.  
  566.                 FloorMover(moveSpeed, rotateSpeed);
  567.  
  568.                 if (!occulusVR)
  569.                 {
  570.                     ExtendedCameraHandle();
  571.  
  572.                     HideUI();
  573.                 }
  574.             }
  575.         }
  576.     }
  577. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement