TO SQUASH: Started map covering.

This commit is contained in:
2026-08-12 00:52:57 -04:00
parent 59e6e73b20
commit 1cf68b32a1
64 changed files with 1275 additions and 488 deletions
+22
View File
@@ -0,0 +1,22 @@
using UnityEngine;
public class PlayerGun : MonoBehaviour
{
public Player player;
private Animator animator;
private SpriteRenderer spriteRenderer;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
spriteRenderer = GetComponent<SpriteRenderer>();
animator = GetComponent<Animator>();
}
public void AnimationFinished()
{
spriteRenderer.enabled = false;
}
}