From 9f2f40244036a459cc580a06df57cbbf2028a499 Mon Sep 17 00:00:00 2001 From: Jonas Bernard Date: Sun, 25 Apr 2021 01:34:15 +0200 Subject: nightly build --- fonts/Flipps.tres | 5 +++-- fonts/windows_command_prompt.ttf | Bin 0 -> 29616 bytes fonts/windows_command_prompt.zip | Bin 0 -> 5864 bytes scenes/introduction.gd | 4 ++++ scenes/introduction.tscn | 6 ++++++ scenes/levels/base_level.tscn | 2 +- 6 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 fonts/windows_command_prompt.ttf create mode 100644 fonts/windows_command_prompt.zip diff --git a/fonts/Flipps.tres b/fonts/Flipps.tres index d177109..35e1ded 100644 --- a/fonts/Flipps.tres +++ b/fonts/Flipps.tres @@ -1,8 +1,9 @@ [gd_resource type="DynamicFont" load_steps=2 format=2] -[ext_resource path="res://fonts/Fipps-Regular.otf" type="DynamicFontData" id=1] +[ext_resource path="res://fonts/windows_command_prompt.ttf" type="DynamicFontData" id=1] [resource] +size = 23 outline_size = 2 -outline_color = Color( 0, 0, 0, 1 ) +outline_color = Color( 0.121569, 0.160784, 0.2, 1 ) font_data = ExtResource( 1 ) diff --git a/fonts/windows_command_prompt.ttf b/fonts/windows_command_prompt.ttf new file mode 100644 index 0000000..b771b3a Binary files /dev/null and b/fonts/windows_command_prompt.ttf differ diff --git a/fonts/windows_command_prompt.zip b/fonts/windows_command_prompt.zip new file mode 100644 index 0000000..20303bb Binary files /dev/null and b/fonts/windows_command_prompt.zip differ diff --git a/scenes/introduction.gd b/scenes/introduction.gd index 713e901..ad898f2 100644 --- a/scenes/introduction.gd +++ b/scenes/introduction.gd @@ -15,3 +15,7 @@ func _on_TextReveal_finished_reveal(): func _on_Button_on_click(): get_tree().change_scene("res://scenes/levels/base_level.tscn") + + +func _on_Skip_on_click(): + get_tree().change_scene("res://scenes/levels/base_level.tscn") diff --git a/scenes/introduction.tscn b/scenes/introduction.tscn index 21612bd..8447d96 100644 --- a/scenes/introduction.tscn +++ b/scenes/introduction.tscn @@ -21,9 +21,15 @@ to_render = "AHAHAHAHHAHAHA Cock and ball torture (CBT), occasionally known as penis torture, dick torture or male genitorture, is a sexual activity involving application of pain or constriction to the penis or testicles. " +speed = 10.0 [node name="Continue" parent="." instance=ExtResource( 3 )] position = Vector2( 10, 260 ) text = "Continue" + +[node name="Skip" parent="." instance=ExtResource( 3 )] +position = Vector2( 552.365, 339.54 ) +text = "Skip" [connection signal="finished_reveal" from="TextReveal" to="." method="_on_TextReveal_finished_reveal"] [connection signal="on_click" from="Continue" to="." method="_on_Button_on_click"] +[connection signal="on_click" from="Skip" to="." method="_on_Skip_on_click"] diff --git a/scenes/levels/base_level.tscn b/scenes/levels/base_level.tscn index 118dc63..cd32baa 100644 --- a/scenes/levels/base_level.tscn +++ b/scenes/levels/base_level.tscn @@ -38,7 +38,7 @@ maxhealth = 3 offset = 60 [node name="MenuButton" parent="." instance=ExtResource( 4 )] -position = Vector2( 722.995, 115.66 ) +position = Vector2( 734.768, 113.978 ) text = "Menu" [node name="Control" type="Control" parent="."] -- cgit