Compare commits

...

2 commits

Author SHA1 Message Date
d5b6dee74f meta: adding readme for credits 2025-02-06 21:15:33 +08:00
d5c2c0e445 game: removing unused function 2025-02-06 21:15:17 +08:00
2 changed files with 5 additions and 14 deletions

4
README.md Normal file
View file

@ -0,0 +1,4 @@
# Attributes and Credits
``` text
"Red Emergency Stop Button" (https://skfb.ly/oQOG7) by Cry11y is licensed under Creative Commons Attribution (http://creativecommons.org/licenses/by/4.0/).
```

View file

@ -18,10 +18,6 @@ public class NpcMovementRework : MonoBehaviour
public NavMeshAgent agent;
public Transform desk;
public float walkRange;
public LayerMask waitingArea;
public LayerMask despawnArea;
public Vector3 roamingPoint;
public Animator animator;
private static readonly int IsSitting = Animator.StringToHash("isSitting");
private static readonly int Speed = Animator.StringToHash("Speed");
@ -55,16 +51,7 @@ public class NpcMovementRework : MonoBehaviour
agent.SetDestination(desk.position);
}
public void Wait()
{
Debug.Log("walking");
if (animator.GetBool(IsSitting))
{
animator.SetBool(IsSitting,false);
}
agent.SetDestination(roamingPoint);
}
public IEnumerator SitDown()
{