11 lines
242 B
C#
11 lines
242 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
public class Marisa : Entity
|
|
{
|
|
protected override void FixedUpdate()
|
|
{
|
|
moveDirection = new Vector2(Input.GetAxis("Horizontal"), Input.GetAxis("Vertical"));
|
|
base.FixedUpdate();
|
|
}
|
|
}
|