Skip to content

Commit

Permalink
chore: better naming
Browse files Browse the repository at this point in the history
  • Loading branch information
momintlh committed Aug 20, 2024
1 parent 5177802 commit 3b07141
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using UnityEngine;
using Random = UnityEngine.Random;

public class IsometricManager : MonoBehaviour
public class GameManagerIsometric : MonoBehaviour
{
private static readonly List<PlayroomKit.Player> players = new();
private static readonly List<GameObject> playerGameObjects = new();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ public void LookAround()
Look();
}

// private void FixedUpdate() {
// Move();
// }

private void GatherInput()
{
_input = new Vector3(Input.GetAxisRaw("Horizontal"), 0, Input.GetAxisRaw("Vertical"));
Expand Down

0 comments on commit 3b07141

Please sign in to comment.