mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-12 19:15:54 +00:00
Simplified actor modules
This commit is contained in:
parent
28671c098b
commit
a7f4f4eb28
8 changed files with 57 additions and 34 deletions
|
|
@ -34,8 +34,13 @@ public partial class ActorTankMovement : MovementHandler
|
|||
MovementDirection = Vector2.Zero;
|
||||
FacingDirection = Vector2.Down;
|
||||
}
|
||||
|
||||
public override void Move(double delta)
|
||||
|
||||
public override void Update(double delta)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override void PhysicsUpdate(double delta)
|
||||
{
|
||||
var inputDirection = AggregateInputProviders();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue