It "works"

It's a buggy mess but it's a working buggy mess
This commit is contained in:
Pasha Bibko
2025-04-03 13:06:55 +01:00
parent d0de96ae0a
commit 653876e56e
8 changed files with 95 additions and 15 deletions

View File

@@ -70,4 +70,7 @@ public class CameraController : MonoBehaviour
// Sets its location to where it is tracking
transform.position = m_Tracking.position;
}
// Adds a way for external forces to modify the direction the player is looking
public void RotatePlayerDirection(Vector2 dif) => m_Rotation += dif;
}