gamo-gd/helper.gd

12 lines
264 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 DEFAULT_COLOR := Color(0x2a2a2aff)
const ACTIVE_COLOR := Color(0x4a8e53ff)
const ERROR_COLOR := Color(0xbe2037ff)