1
0
forked from cgvr/DeltaVR

add character sprites, mouth moving open closed

This commit is contained in:
2025-12-19 11:00:22 +02:00
parent f184151fdb
commit 39b4a24ef3
17 changed files with 852 additions and 4 deletions

View File

@@ -31,6 +31,7 @@ public class ArcheryRange : NetworkBehaviour
public ModelGenerationBox modelGenerationBox;
public KeyboardManager keyboardManager;
public NPCController npcController;
private List<ArcheryTarget> _targets;
@@ -59,6 +60,11 @@ public class ArcheryRange : NetworkBehaviour
StartCoroutine(DelayedSetHighScoreText(10f)); // Cannot immediately assign these values because fishnet needs time.
}
private void Start()
{
npcController.StartTalking();
}
private System.Collections.IEnumerator DelayedSetHighScoreText(float delaySeconds)
{
yield return new WaitForSeconds(delaySeconds);