3 using System.Collections.Generic;
15 public KeyCode DownKey;
16 public KeyCode LeftKey;
17 public KeyCode RightKey;
18 public KeyCode PrimaryKey;
19 public KeyCode SecondaryKey;
20 public KeyCode CycleNextKey;
21 public KeyCode CyclePreviousKey;
22 public KeyCode MenuKey;
23 public KeyCode BackKey;
27 Vector3 direction = Vector3.zero;
29 if (Input.GetKey(UpKey))
30 direction += Vector3.up;
31 if (Input.GetKey(DownKey))
32 direction -= Vector3.up;
33 if (Input.GetKey(RightKey))
34 direction += Vector3.right;
35 if (Input.GetKey(LeftKey))
36 direction -= Vector3.right;
static void InjectActionState(ControlsAction action, bool state)
Injections an action state.
Abstract class to be extended by devices.
static void InjectDirection(Vector3 direction)
Injects a direction. Call this from a device script.
A Device for providing Direction information to the Controls class from keyboard input.
Controls class. Allows for controls queries and controls injection from devices.