1
0
mirror of synced 2025-01-31 12:23:44 +01:00

default config fix

This commit is contained in:
xpeng 2022-06-10 00:16:34 +02:00
parent 98d62503b1
commit 121055afcd
2 changed files with 5 additions and 5 deletions

View File

@ -27661,11 +27661,11 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
DefaultPhysicFPS: 90 DefaultPhysicFPS: 90
DefaultHandSize: 8 DefaultHandSize: 7
DefaultHandPosition: DefaultHandPosition:
- 2 - 1
- -2 - 1
- 7 - -3
Display: {fileID: 129013443} Display: {fileID: 129013443}
LHand: {fileID: 918186758} LHand: {fileID: 918186758}
RHand: {fileID: 587127949} RHand: {fileID: 587127949}

View File

@ -6,7 +6,7 @@ public class SettingsManager : MonoBehaviour
{ {
public double DefaultPhysicFPS = 90; public double DefaultPhysicFPS = 90;
public double DefaultHandSize = 7; public double DefaultHandSize = 7;
public float[] DefaultHandPosition = {2f, -2f, 7f}; public float[] DefaultHandPosition = {1f, 1f, -3f};
private bool FocusChecked; private bool FocusChecked;
public GameObject Display; public GameObject Display;