added gamescreen UI and simple start menu

This commit is contained in:
Mausham
2026-01-04 16:41:13 -08:00
parent dcf3bead16
commit 589260292c
508 changed files with 247792 additions and 516 deletions

View File

@@ -15,6 +15,7 @@ namespace Darkmatter.Presentation
protected readonly int moveXhash = Animator.StringToHash("MoveX");
protected readonly int moveYhash = Animator.StringToHash("MoveY");
private readonly int reloadHash = Animator.StringToHash("Reload");
private readonly int deadHash = Animator.StringToHash("Dead");
public TwoBoneIKConstraint HandOnGunIK; //for gunHand Ik
private Coroutine reloadCoroutine;
@@ -71,5 +72,10 @@ namespace Darkmatter.Presentation
{
Debug.Log("player Shoot");
}
public void PlayDeadAnim()
{
animator.SetTrigger(deadHash);
}
}
}