mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-08 18:45:55 +00:00
Isometric implementation
This commit is contained in:
parent
1434f7aa6d
commit
ed656f00bb
92 changed files with 2834 additions and 223 deletions
13
Scripts/Components/FSM/3DPlayer/IsoPlayerStorageModule.cs
Normal file
13
Scripts/Components/FSM/3DPlayer/IsoPlayerStorageModule.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Components.FSM._3DPlayer;
|
||||
|
||||
public partial class IsoPlayerStorageModule : Node
|
||||
{
|
||||
[Export] public IsoPlayerFSMProxy Root { get; private set; }
|
||||
public Node RootAsNode => Root;
|
||||
|
||||
public Vector2 FacingDirection { get; set; } = Vector2.Down;
|
||||
public Vector2 AimingDirection { get; set; } = Vector2.Down;
|
||||
public Vector3 MovementDirection { get; set; } = Vector3.Zero;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue