From 5d4583caca85cd6b8bed3917166fd36a9cddd039 Mon Sep 17 00:00:00 2001 From: Mark Joshwel Date: Sat, 10 Aug 2024 13:14:03 +0800 Subject: [PATCH] game(scripts): refmt door and player --- RunningLateGame/Assets/Scripts/Door.cs | 6 +++--- RunningLateGame/Assets/Scripts/Player.cs | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/RunningLateGame/Assets/Scripts/Door.cs b/RunningLateGame/Assets/Scripts/Door.cs index d257dfa..b07a9c1 100644 --- a/RunningLateGame/Assets/Scripts/Door.cs +++ b/RunningLateGame/Assets/Scripts/Door.cs @@ -32,17 +32,17 @@ public enum DoorType /// TODO /// public float duration; - + /// /// TODO /// public AnimationCurve curve; - + /// /// TODO /// private bool _isOpen; - + /// /// TODO /// diff --git a/RunningLateGame/Assets/Scripts/Player.cs b/RunningLateGame/Assets/Scripts/Player.cs index a6a9220..719bd7e 100644 --- a/RunningLateGame/Assets/Scripts/Player.cs +++ b/RunningLateGame/Assets/Scripts/Player.cs @@ -15,32 +15,32 @@ public class Player : MonoBehaviour /// TODO /// [SerializeField] private Transform playerPosition; - + /// /// TODO /// [SerializeField] private float seeDistance; - + /// /// TODO /// public LayerMask raycastLayers; - + /// /// TODO /// private bool _active; - + /// /// TODO /// private CommonInteractable _currentInteractable; - + /// /// TODO /// private bool _raycast; - + /// /// TODO ///