i am looking respectfully

This commit is contained in:
reisenlol 2026-01-29 01:49:09 -08:00
parent 3160bff7a3
commit 084aada510
No known key found for this signature in database
29 changed files with 2891 additions and 482 deletions

11
Assets/Scripts/Marisa.cs Normal file
View file

@ -0,0 +1,11 @@
using System;
using UnityEngine;
public class Marisa : Entity
{
protected override void FixedUpdate()
{
moveDirection = new Vector2(Input.GetAxis("Horizontal"), Input.GetAxis("Vertical"));
base.FixedUpdate();
}
}