gamo-gd/helper.gd

12 lines
229 B
GDScript
Raw Normal View History

2026-01-24 17:06:05 +02:00
extends Node
const NO_DEVICE := "No Active Device"
const DRIFT_DEADZONE := 0.01;
const REST_DEADZONE := 0.005;
const STUCK_DEADZONE := 0.05;
const ERROR_COLOR := Color(0xbe2037ff)
static var options: Array[ConfigOption] = []