Compare commits

..

2 commits

Author SHA1 Message Date
47255e5850 geep: add new gear 2026-01-25 17:21:15 +13:00
72c41f8817 util: add class 2026-01-25 17:21:15 +13:00
3 changed files with 12 additions and 0 deletions

4
gears/geep_body.tres Normal file
View file

@ -0,0 +1,4 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://dpacu3e7vsks5"]
[resource]
albedo_color = Color(0.99607843, 0.99607843, 0.99607843, 1)

4
gears/geep_wheel.tres Normal file
View file

@ -0,0 +1,4 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://bt5aat64e478k"]
[resource]
albedo_color = Color(0.1254902, 0.1254902, 0.1254902, 1)

4
util/util.gd Normal file
View file

@ -0,0 +1,4 @@
class_name Util extends Node
static func input_action_string(action):
return InputMap.action_get_events(action)[0].as_text()