1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using SC.XR.Unity.Module_InputSystem.InputDeviceGC;
- using SC.XR.Unity.Module_InputSystem;
- using UnityEngine.UI;
- using TMPro;
- using System;
- public class FoveationTest : MonoBehaviour
- {
- public Toggle toggle;
- public Slider GainX;
- public Slider GainY;
- public Slider Area;
- public Slider Min;
- public TextMeshProUGUI toggleText;
- public TextMeshProUGUI GainXText;
- public TextMeshProUGUI GainYText;
- public TextMeshProUGUI AreaText;
- public TextMeshProUGUI MinText;
-
- void Update()
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|