12345678910111213141516171819202122 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class ModeController : MonoBehaviour
- {
- public enum Perspective
- {
- FirstPersonPerspective,
- ThirdPersonPerspective
- };
- public enum Feedback
- {
- NoFeedback,
- ColorFeedback,
- HapticFeedback
- }
- public Perspective perspective;
- public Feedback feedback;
- }
|