mirror of
https://github.com/xiaopeng12138/MaiDXR.git
synced 2024-11-23 19:40:57 +01:00
fix camera smooth config issue
This commit is contained in:
parent
2d679be382
commit
dc8c5b22b1
@ -38,7 +38,7 @@ public class NoneVRSettingManager : MonoBehaviour
|
||||
if (JsonConfig.HasKey("NVRMode"))
|
||||
Dropdown.value = JsonConfig.GetInt("NVRMode");
|
||||
if (JsonConfig.HasKey("NVRCameraSmooth"))
|
||||
CameraSmooth.smoothSpeed = JsonConfig.GetInt("NVRCameraSmooth");
|
||||
CameraSmooth.smoothSpeed = (float)JsonConfig.GetDouble("NVRCameraSmooth");
|
||||
SetNVRMode();
|
||||
}
|
||||
public void GetNVRFOV()
|
||||
@ -88,7 +88,7 @@ public class NoneVRSettingManager : MonoBehaviour
|
||||
break;
|
||||
}
|
||||
JsonConfig.SetInt("NVRMode", Dropdown.value);
|
||||
JsonConfig.SetInt("NVRCameraSmooth", Dropdown.value);
|
||||
JsonConfig.SetDouble("NVRCameraSmooth", Dropdown.value);
|
||||
}
|
||||
public void SetNVRFOV(float fov)
|
||||
{
|
||||
|
@ -194,6 +194,9 @@ PlayerSettings:
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: 0}
|
||||
- {fileID: -6018045015233401694, guid: 3999ab811e936714280a476b3a032d86, type: 2}
|
||||
- {fileID: 6536100391545742739, guid: 55d1ec7a4296de343b6d3bb6f9a19731, type: 2}
|
||||
metroInputSource: 0
|
||||
wsaTransparentSwapchain: 0
|
||||
m_HolographicPauseOnTrackingLoss: 1
|
||||
|
Loading…
Reference in New Issue
Block a user