blob: 5194841c01a57867aabcd5a2b27610a880493b40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using Godot;
using System;
public partial class InputHandler : Node {
public Action GetAction() {
Action action = null;
if (Input.IsActionJustPressed("walk-up")) {
action = new BumpAction(Vector2I.Up);
} else if (Input.IsActionJustPressed("walk-down")) {
action = new BumpAction(Vector2I.Down);
} else if (Input.IsActionJustPressed("walk-left")) {
action = new BumpAction(Vector2I.Left);
} else if (Input.IsActionJustPressed("walk-right")) {
action = new BumpAction(Vector2I.Right);
} else if (Input.IsActionJustPressed("skip-turn")) {
action = new BumpAction(Vector2I.Zero);
}
return action;
}
}
|