mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 07:35:34 +00:00
17 lines
No EOL
545 B
C#
17 lines
No EOL
545 B
C#
using Cirno.Scripts.Components.Actors;
|
|
using Godot;
|
|
|
|
namespace Cirno.Scripts.Components.FSM._3DPlayer;
|
|
|
|
public partial class IsoPlayerStorageModule : Node
|
|
{
|
|
[Export] public IsoPlayerFSMProxy Root { get; private set; }
|
|
|
|
[Export] public ActorResourceProvider Shield { get; private set; }
|
|
|
|
public Node RootAsNode => Root;
|
|
|
|
public Vector2 FacingDirection { get; set; } = Vector2.Down;
|
|
public Vector2 AimingDirection { get; set; } = Vector2.Down;
|
|
public Vector2 MovementDirection { get; set; } = Vector2.Zero;
|
|
} |