game(scripts): reformat
This commit is contained in:
parent
71b7a3b919
commit
fc9b9ac330
7 changed files with 20 additions and 20 deletions
|
@ -33,7 +33,7 @@ public class AudioLoop : MonoBehaviour
|
||||||
audioSource.Stop(); // Pause the audio
|
audioSource.Stop(); // Pause the audio
|
||||||
yield return new WaitForSeconds(15f); // Pause for 15 seconds
|
yield return new WaitForSeconds(15f); // Pause for 15 seconds
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: are we really just going to let this stay alive forever
|
// NOTE: are we really just going to let this stay alive forever
|
||||||
// ReSharper disable once IteratorNeverReturns
|
// ReSharper disable once IteratorNeverReturns
|
||||||
}
|
}
|
||||||
|
|
|
@ -125,7 +125,7 @@ public class BedroomTask : MonoBehaviour
|
||||||
|
|
||||||
// If the player has collected/ thrown the required amount of trash
|
// If the player has collected/ thrown the required amount of trash
|
||||||
if (trashCollected < trashRequired) return;
|
if (trashCollected < trashRequired) return;
|
||||||
|
|
||||||
if (GameManager.Instance == null)
|
if (GameManager.Instance == null)
|
||||||
Debug.LogError("GameManager instance is null!");
|
Debug.LogError("GameManager instance is null!");
|
||||||
else
|
else
|
||||||
|
|
|
@ -34,7 +34,7 @@ public class BroomSweeping : MonoBehaviour
|
||||||
private void Update()
|
private void Update()
|
||||||
{
|
{
|
||||||
if (dirtSweepCount < dirtRequired || _taskCompleted) return;
|
if (dirtSweepCount < dirtRequired || _taskCompleted) return;
|
||||||
|
|
||||||
_taskCompleted = true;
|
_taskCompleted = true;
|
||||||
GameManager.Instance.FloorSweepedTaskComplete();
|
GameManager.Instance.FloorSweepedTaskComplete();
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ public class BroomSweeping : MonoBehaviour
|
||||||
{
|
{
|
||||||
// Now correctly checks for "Dirt" before triggering
|
// Now correctly checks for "Dirt" before triggering
|
||||||
if (!other.CompareTag("Dirt")) return;
|
if (!other.CompareTag("Dirt")) return;
|
||||||
|
|
||||||
dirtSweepCount++;
|
dirtSweepCount++;
|
||||||
|
|
||||||
// Destroy it to prevent extra counting
|
// Destroy it to prevent extra counting
|
||||||
|
|
|
@ -54,7 +54,7 @@ public class BrushTeeth : MonoBehaviour
|
||||||
private void Update()
|
private void Update()
|
||||||
{
|
{
|
||||||
if (!_isGrabbing || _taskCompleted) return;
|
if (!_isGrabbing || _taskCompleted) return;
|
||||||
|
|
||||||
_timer += Time.deltaTime;
|
_timer += Time.deltaTime;
|
||||||
progressBar.value = _timer / progressTime;
|
progressBar.value = _timer / progressTime;
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ public class BrushTeeth : MonoBehaviour
|
||||||
private void OnDestroy()
|
private void OnDestroy()
|
||||||
{
|
{
|
||||||
if (_grabInteractable == null) return;
|
if (_grabInteractable == null) return;
|
||||||
|
|
||||||
_grabInteractable.selectEntered.RemoveListener(OnGrab);
|
_grabInteractable.selectEntered.RemoveListener(OnGrab);
|
||||||
_grabInteractable.selectExited.RemoveListener(OnRelease);
|
_grabInteractable.selectExited.RemoveListener(OnRelease);
|
||||||
}
|
}
|
||||||
|
@ -83,7 +83,7 @@ public class BrushTeeth : MonoBehaviour
|
||||||
|
|
||||||
// Play brushing sound while toothbrush is grabbed, plays only if it isn't playing already
|
// Play brushing sound while toothbrush is grabbed, plays only if it isn't playing already
|
||||||
if (audioSource.isPlaying) return;
|
if (audioSource.isPlaying) return;
|
||||||
|
|
||||||
audioSource.clip = brushingSound;
|
audioSource.clip = brushingSound;
|
||||||
|
|
||||||
// Loops the sound for as long as the toothbrush is held; allows editable progress time
|
// Loops the sound for as long as the toothbrush is held; allows editable progress time
|
||||||
|
|
|
@ -9,7 +9,7 @@ using UnityEngine;
|
||||||
public class CameraGhostFollow : MonoBehaviour
|
public class CameraGhostFollow : MonoBehaviour
|
||||||
{
|
{
|
||||||
public Transform target; // Usually the Main Camera (XR Rig's Head)
|
public Transform target; // Usually the Main Camera (XR Rig's Head)
|
||||||
|
|
||||||
public float followSpeed = 5f; // How quickly it follows the target
|
public float followSpeed = 5f; // How quickly it follows the target
|
||||||
public Vector3 offset = new(0, -0.2f, 1.5f); // Position offset
|
public Vector3 offset = new(0, -0.2f, 1.5f); // Position offset
|
||||||
public bool followRotation = true; // Toggle for rotating with the head
|
public bool followRotation = true; // Toggle for rotating with the head
|
||||||
|
@ -26,7 +26,7 @@ public class CameraGhostFollow : MonoBehaviour
|
||||||
|
|
||||||
// Smooth Rotation Follow (Yaw + Pitch)
|
// Smooth Rotation Follow (Yaw + Pitch)
|
||||||
if (!followRotation) return;
|
if (!followRotation) return;
|
||||||
|
|
||||||
// Capture target's full rotation
|
// Capture target's full rotation
|
||||||
var targetEulerAngles = target.eulerAngles;
|
var targetEulerAngles = target.eulerAngles;
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ public class Car : MonoBehaviour
|
||||||
{
|
{
|
||||||
// Check if the collider belongs to the player
|
// Check if the collider belongs to the player
|
||||||
if (!other.CompareTag("Player")) return;
|
if (!other.CompareTag("Player")) return;
|
||||||
|
|
||||||
Debug.Log("Teleporting Player...");
|
Debug.Log("Teleporting Player...");
|
||||||
TeleportPlayer();
|
TeleportPlayer();
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,16 +14,16 @@ public class DrawerDynamicJointConfiguration : MonoBehaviour
|
||||||
{
|
{
|
||||||
[Header("mark's all-in-one dynamic drawer component")]
|
[Header("mark's all-in-one dynamic drawer component")]
|
||||||
[Space(10)]
|
[Space(10)]
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
[HelpBox("make sure every child inside both prefabs are under the" +
|
[HelpBox("make sure every child inside both prefabs are under the" +
|
||||||
"'Interactable Environment' layer.\n\n" +
|
"'Interactable Environment' layer.\n\n" +
|
||||||
"whatever non-standard (a la ProBuilder) object geometry under the " +
|
"whatever non-standard (a la ProBuilder) object geometry under the " +
|
||||||
"interactable prefab should have a convex mesh collider if the console nags about it!\n\n" +
|
"interactable prefab should have a convex mesh collider if the console nags about it!\n\n" +
|
||||||
"any Curve Interaction Casters (a la 'XR Origin (VR)' > 'Camera Offset' > '... Controller' " +
|
"any Curve Interaction Casters (a la 'XR Origin (VR)' > 'Camera Offset' > '... Controller' " +
|
||||||
"> 'Near-Far Interactor' > 'Curve Interaction Caster') should be have the " +
|
"> 'Near-Far Interactor' > 'Curve Interaction Caster') should be have the " +
|
||||||
"'Interactable Environment' layer included in its' Raycast Mask.",
|
"'Interactable Environment' layer included in its' Raycast Mask.",
|
||||||
HelpBoxMessageType.Error)]
|
HelpBoxMessageType.Error)]
|
||||||
#endif
|
#endif
|
||||||
[Space(10)]
|
[Space(10)]
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
private MovementAxis movementAxis = MovementAxis.Z;
|
private MovementAxis movementAxis = MovementAxis.Z;
|
||||||
|
|
Loading…
Add table
Reference in a new issue