troublemakers
This commit is contained in:
parent
f6b36c722c
commit
7b36f2d53b
18 changed files with 630 additions and 8 deletions
|
@ -62,3 +62,9 @@ func _on_dialogtest_pressed() -> void:
|
|||
Global.dplace = [1, 8, 11]
|
||||
Global.live = 1
|
||||
get_tree().change_scene_to_file("res://levels/ui/gameplay.tscn")
|
||||
|
||||
|
||||
func _on_bullethell_pressed() -> void:
|
||||
Global.dplace = [1, 1, 17]
|
||||
Global.live = 1
|
||||
get_tree().change_scene_to_file("res://levels/ui/gameplay.tscn")
|
||||
|
|
|
@ -73,7 +73,7 @@ text = "Honker Railway"
|
|||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 32
|
||||
theme_override_styles/focus = SubResource("StyleBoxFlat_6u0xs")
|
||||
text = "BUTTON_PLACEHOLDER"
|
||||
text = "TWIN_TROUBLEMAKERS"
|
||||
|
||||
[node name="Credits" type="Button" parent="VBoxContainer"]
|
||||
layout_mode = 2
|
||||
|
@ -96,4 +96,5 @@ text = "BUTTON_RETURN"
|
|||
[connection signal="pressed" from="VBoxContainer/L20" to="." method="_on_l_20_pressed"]
|
||||
[connection signal="pressed" from="VBoxContainer/Lilytest" to="." method="_on_lilytest_pressed"]
|
||||
[connection signal="pressed" from="VBoxContainer/Dialogtest" to="." method="_on_dialogtest_pressed"]
|
||||
[connection signal="pressed" from="VBoxContainer/Bullethell" to="." method="_on_bullethell_pressed"]
|
||||
[connection signal="pressed" from="VBoxContainer/Back" to="." method="_on_back_pressed"]
|
||||
|
|
|
@ -26,6 +26,7 @@ color = Color(0, 0, 0, 1)
|
|||
[node name="Bottomhud" parent="CanvasLayer" instance=ExtResource("2_jnb0v")]
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="CanvasLayer"]
|
||||
layout_direction = 3
|
||||
offset_right = 40.0
|
||||
offset_bottom = 40.0
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ func _input(event):
|
|||
if dindex < Global.cdialog.size():
|
||||
if Global.cdialog[dindex][1]:
|
||||
cname.set_text(Global.pcnames[Global.cdialog[dindex][2]])
|
||||
pface.texture = load((Global.pcfaces[Global.cdialog[dindex][2]][Global.cdialog[dindex][2]]))
|
||||
pface.texture = load((Global.pcfaces[Global.cdialog[dindex][2]][Global.cdialog[dindex][3]]))
|
||||
else:
|
||||
cname.set_text(Global.npcnames[Global.cdialog[dindex][2]])
|
||||
pface.texture = load((Global.npcfaces[Global.cdialog[dindex][2]]))
|
||||
|
|
|
@ -65,11 +65,13 @@ text = "100/100"
|
|||
horizontal_alignment = 2
|
||||
|
||||
[node name="Topminibg" type="ColorRect" parent="CanvasLayer"]
|
||||
layout_direction = 3
|
||||
offset_right = 438.0
|
||||
offset_bottom = 116.0
|
||||
color = Color(0.254902, 0.254902, 0.254902, 1)
|
||||
|
||||
[node name="Topmini" type="HBoxContainer" parent="CanvasLayer"]
|
||||
layout_direction = 3
|
||||
offset_right = 377.0
|
||||
offset_bottom = 116.0
|
||||
|
||||
|
@ -159,12 +161,14 @@ color = Color(0, 0, 1, 1)
|
|||
|
||||
[node name="Topleftbg" type="ColorRect" parent="CanvasLayer"]
|
||||
visible = false
|
||||
layout_direction = 3
|
||||
offset_right = 437.0
|
||||
offset_bottom = 476.0
|
||||
color = Color(0.254902, 0.254902, 0.254902, 1)
|
||||
|
||||
[node name="Topleft" type="VBoxContainer" parent="CanvasLayer"]
|
||||
visible = false
|
||||
layout_direction = 3
|
||||
offset_right = 377.0
|
||||
offset_bottom = 476.0
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue