Extensive work on animations and partially functional level keys, new UI gears but needs rounding error correction. Particle preloader added.

This commit is contained in:
2026-04-07 06:43:12 -04:00
parent 86f655ff07
commit 39401ff04f
128 changed files with 42916 additions and 120860 deletions

View File

@@ -10,20 +10,20 @@ const action_value : Dictionary[String, int] = {
const icon_textures : Array = [
{
"normal" : preload("res://visuals/images/icons/button-detonate.png"),
"pressed" : preload("res://visuals/images/icons/button-detonate-hit.png")
"normal" : preload("res://visuals/images/icons/detect button.png"),
"pressed" : preload("res://visuals/images/icons/lit detect button.png")
},
{
"normal" : preload("res://visuals/images/icons/button-hack.png"),
"pressed" : preload("res://visuals/images/icons/button-hack-hit.png")
"normal" : preload("res://visuals/images/icons/install button.png"),
"pressed" : preload("res://visuals/images/icons/lit install button.png")
},
{
"normal" : preload("res://visuals/images/icons/button-detect.png"),
"pressed" : preload("res://visuals/images/icons/button-detect-hit.png")
"normal" : preload("res://visuals/images/icons/switch button.png"),
"pressed" : preload("res://visuals/images/icons/lit switch button.png")
},
{
"normal" : preload("res://visuals/images/icons/button-attack.png"),
"pressed" : preload("res://visuals/images/icons/button-attack-hit.png")
"normal" : preload("res://visuals/images/icons/melee attack button.png"),
"pressed" : preload("res://visuals/images/icons/lit melee attack button.png")
},
]