diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2022-06-05 14:09:41 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2022-06-05 14:09:41 -0600 |
commit | 14538d486de312af41ce012836861468b8fb7897 (patch) | |
tree | 569d09c43fd7724a5fbb0898f5c1d1db3fd64b3d /src/ui/hud/actions/scenes | |
parent | 4b42a8ba26f21e2c6c766fa747c8b93a115a53b2 (diff) |
finish all necessary for playability
Diffstat (limited to 'src/ui/hud/actions/scenes')
-rw-r--r-- | src/ui/hud/actions/scenes/ActionsHUD.tscn | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/ui/hud/actions/scenes/ActionsHUD.tscn b/src/ui/hud/actions/scenes/ActionsHUD.tscn new file mode 100644 index 0000000..520a5cb --- /dev/null +++ b/src/ui/hud/actions/scenes/ActionsHUD.tscn @@ -0,0 +1,78 @@ +[gd_scene load_steps=9 format=2] + +[ext_resource path="res://themes/Theme.tres" type="Theme" id=1] +[ext_resource path="res://ui/hud/actions/sprites/space2.png" type="Texture" id=3] +[ext_resource path="res://ui/hud/actions/sprites/space3.png" type="Texture" id=4] +[ext_resource path="res://ui/hud/actions/sprites/w3.png" type="Texture" id=5] +[ext_resource path="res://ui/hud/actions/sprites/w2.png" type="Texture" id=6] +[ext_resource path="res://ui/hud/actions/sprites/s3.png" type="Texture" id=7] +[ext_resource path="res://ui/hud/actions/sprites/s2.png" type="Texture" id=8] +[ext_resource path="res://ui/hud/actions/scripts/actions_hud.gd" type="Script" id=11] + +[node name="ActionsHUD" type="MarginContainer"] +theme = ExtResource( 1 ) +script = ExtResource( 11 ) + +[node name="VBox" type="VBoxContainer" parent="."] +margin_right = 44.0 +margin_bottom = 44.0 +custom_constants/separation = -2 + +[node name="WHBox" type="HBoxContainer" parent="VBox"] +margin_right = 44.0 +margin_bottom = 16.0 + +[node name="W" type="TextureButton" parent="VBox/WHBox"] +margin_right = 16.0 +margin_bottom = 16.0 +disabled = true +texture_normal = ExtResource( 6 ) +texture_disabled = ExtResource( 5 ) + +[node name="Label" type="Label" parent="VBox/WHBox"] +margin_left = 20.0 +margin_top = 1.0 +margin_right = 44.0 +margin_bottom = 14.0 +custom_colors/font_color_shadow = Color( 0, 0, 0, 1 ) +text = "Dash" + +[node name="SHBox" type="HBoxContainer" parent="VBox"] +margin_top = 14.0 +margin_right = 44.0 +margin_bottom = 30.0 + +[node name="S" type="TextureButton" parent="VBox/SHBox"] +margin_right = 16.0 +margin_bottom = 16.0 +disabled = true +texture_normal = ExtResource( 8 ) +texture_disabled = ExtResource( 7 ) + +[node name="Label" type="Label" parent="VBox/SHBox"] +margin_left = 20.0 +margin_top = 1.0 +margin_right = 44.0 +margin_bottom = 14.0 +custom_colors/font_color_shadow = Color( 0, 0, 0, 1 ) +text = "Slow" + +[node name="SpaceHBox" type="HBoxContainer" parent="VBox"] +margin_top = 28.0 +margin_right = 44.0 +margin_bottom = 44.0 + +[node name="Space" type="TextureButton" parent="VBox/SpaceHBox"] +margin_right = 16.0 +margin_bottom = 16.0 +disabled = true +texture_normal = ExtResource( 3 ) +texture_disabled = ExtResource( 4 ) + +[node name="Label" type="Label" parent="VBox/SpaceHBox"] +margin_left = 20.0 +margin_top = 1.0 +margin_right = 44.0 +margin_bottom = 14.0 +custom_colors/font_color_shadow = Color( 0, 0, 0, 1 ) +text = "Jump" |