cutscenes
This commit is contained in:
parent
0d29a9a48f
commit
02a5a73656
26 changed files with 387 additions and 10 deletions
|
@ -20,11 +20,14 @@ func _process(delta):
|
|||
|
||||
func _input(event):
|
||||
if Input.is_action_just_pressed("ui_accept") && travel != null:
|
||||
if Global.debug:
|
||||
Global.dplace = travel
|
||||
if Global.ccutscene == null:
|
||||
if Global.debug:
|
||||
Global.dplace = travel
|
||||
else:
|
||||
Global.cplace = travel
|
||||
Global.live = 5
|
||||
else:
|
||||
Global.cplace = travel
|
||||
Global.live = 5
|
||||
Global.live = 8
|
||||
|
||||
func _statrebase():
|
||||
for i in 4:
|
||||
|
@ -34,6 +37,7 @@ func _statrebase():
|
|||
|
||||
|
||||
func _on_railwaygirl_body_entered(body: Node2D) -> void:
|
||||
Global.ccutscene = 10
|
||||
travel = [1, 8, 11]
|
||||
|
||||
|
||||
|
@ -42,6 +46,7 @@ func _on_railwaygirl_body_exited(body: Node2D) -> void:
|
|||
|
||||
|
||||
func _on_pamela_body_entered(body: Node2D) -> void:
|
||||
Global.ccutscene = 13
|
||||
travel = [1, 1, 17]
|
||||
|
||||
|
||||
|
|
22
levels/Cutscenes/Honker Railway/forest.tscn
Normal file
22
levels/Cutscenes/Honker Railway/forest.tscn
Normal file
|
@ -0,0 +1,22 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://cqevagcsx77jk"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://brvfc3s2cj76f" path="res://backgounds/Midori Deep Forest.jpg" id="1_5c5di"]
|
||||
[ext_resource type="PackedScene" uid="uid://d31udhuuwrajn" path="res://levels/bottomhud.tscn" id="2_a6w8j"]
|
||||
|
||||
[node name="Forest" type="Node2D"]
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
offset_right = 1278.0
|
||||
offset_bottom = 600.0
|
||||
texture = ExtResource("1_5c5di")
|
||||
|
||||
[node name="Text" type="Label" parent="."]
|
||||
offset_left = 52.0
|
||||
offset_top = 606.0
|
||||
offset_right = 1224.0
|
||||
offset_bottom = 714.0
|
||||
theme_override_font_sizes/font_size = 40
|
||||
text = "CUTSCENE_2_0"
|
||||
horizontal_alignment = 1
|
||||
|
||||
[node name="Bottomhud" parent="." instance=ExtResource("2_a6w8j")]
|
22
levels/Cutscenes/Honker Railway/lordlytrashcan.tscn
Normal file
22
levels/Cutscenes/Honker Railway/lordlytrashcan.tscn
Normal file
|
@ -0,0 +1,22 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://bchg066ikmnxc"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://dntabv68wlisu" path="res://backgounds/Trashcan girl in forest.jpg" id="1_kkvvb"]
|
||||
[ext_resource type="PackedScene" uid="uid://d31udhuuwrajn" path="res://levels/bottomhud.tscn" id="2_1o4m2"]
|
||||
|
||||
[node name="Lordlytrashcan" type="Node2D"]
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
offset_right = 1278.0
|
||||
offset_bottom = 600.0
|
||||
texture = ExtResource("1_kkvvb")
|
||||
|
||||
[node name="Text" type="Label" parent="."]
|
||||
offset_left = 52.0
|
||||
offset_top = 606.0
|
||||
offset_right = 1224.0
|
||||
offset_bottom = 714.0
|
||||
theme_override_font_sizes/font_size = 40
|
||||
text = "CUTSCENE_2_1"
|
||||
horizontal_alignment = 1
|
||||
|
||||
[node name="Bottomhud" parent="." instance=ExtResource("2_1o4m2")]
|
12
levels/Cutscenes/Honker Railway/railway.gd
Normal file
12
levels/Cutscenes/Honker Railway/railway.gd
Normal file
|
@ -0,0 +1,12 @@
|
|||
extends Node2D
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
if !Global.debug:
|
||||
Global.cplace = [1, 8, 11]
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta: float) -> void:
|
||||
pass
|
24
levels/Cutscenes/Honker Railway/railway.tscn
Normal file
24
levels/Cutscenes/Honker Railway/railway.tscn
Normal file
|
@ -0,0 +1,24 @@
|
|||
[gd_scene load_steps=4 format=3 uid="uid://c0f8yoj6q7l6w"]
|
||||
|
||||
[ext_resource type="Script" path="res://levels/Cutscenes/Honker Railway/railway.gd" id="1_0hhdb"]
|
||||
[ext_resource type="Texture2D" uid="uid://5w6pjyubryq3" path="res://backgounds/Honker Railway in forest.jpg" id="1_10hv6"]
|
||||
[ext_resource type="PackedScene" uid="uid://d31udhuuwrajn" path="res://levels/bottomhud.tscn" id="2_4m46s"]
|
||||
|
||||
[node name="Railway" type="Node2D"]
|
||||
script = ExtResource("1_0hhdb")
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
offset_right = 1278.0
|
||||
offset_bottom = 600.0
|
||||
texture = ExtResource("1_10hv6")
|
||||
|
||||
[node name="Text" type="Label" parent="."]
|
||||
offset_left = 52.0
|
||||
offset_top = 606.0
|
||||
offset_right = 1224.0
|
||||
offset_bottom = 714.0
|
||||
theme_override_font_sizes/font_size = 40
|
||||
text = "CUTSCENE_2_2"
|
||||
horizontal_alignment = 1
|
||||
|
||||
[node name="Bottomhud" parent="." instance=ExtResource("2_4m46s")]
|
22
levels/Cutscenes/Troublemaker/buildings.tscn
Normal file
22
levels/Cutscenes/Troublemaker/buildings.tscn
Normal file
|
@ -0,0 +1,22 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://sjmpoah3xpkv"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://bvl47pildpugx" path="res://backgounds/Kaizo Campus.jpg" id="1_md8cp"]
|
||||
[ext_resource type="PackedScene" uid="uid://d31udhuuwrajn" path="res://levels/bottomhud.tscn" id="2_jjk5t"]
|
||||
|
||||
[node name="Buildings" type="Node2D"]
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
offset_right = 1278.0
|
||||
offset_bottom = 600.0
|
||||
texture = ExtResource("1_md8cp")
|
||||
|
||||
[node name="Text" type="Label" parent="."]
|
||||
offset_left = 52.0
|
||||
offset_top = 606.0
|
||||
offset_right = 1224.0
|
||||
offset_bottom = 714.0
|
||||
theme_override_font_sizes/font_size = 40
|
||||
text = "CUTSCENE_3_0"
|
||||
horizontal_alignment = 1
|
||||
|
||||
[node name="Bottomhud" parent="." instance=ExtResource("2_jjk5t")]
|
12
levels/Cutscenes/Troublemaker/kungfu.gd
Normal file
12
levels/Cutscenes/Troublemaker/kungfu.gd
Normal file
|
@ -0,0 +1,12 @@
|
|||
extends Node2D
|
||||
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
if !Global.debug:
|
||||
Global.cplace = [1, 1, 17]
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta: float) -> void:
|
||||
pass
|
25
levels/Cutscenes/Troublemaker/kungfu.tscn
Normal file
25
levels/Cutscenes/Troublemaker/kungfu.tscn
Normal file
|
@ -0,0 +1,25 @@
|
|||
[gd_scene load_steps=4 format=3 uid="uid://bgndmlvrvfetr"]
|
||||
|
||||
[ext_resource type="Script" path="res://levels/Cutscenes/Troublemaker/kungfu.gd" id="1_dab6h"]
|
||||
[ext_resource type="Texture2D" uid="uid://rurrmoxngtek" path="res://backgounds/Pamela Hashimoto fury.jpg" id="1_rcce4"]
|
||||
[ext_resource type="PackedScene" uid="uid://d31udhuuwrajn" path="res://levels/bottomhud.tscn" id="2_4y4yi"]
|
||||
|
||||
[node name="Kungfu" type="Node2D"]
|
||||
script = ExtResource("1_dab6h")
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
offset_right = 1278.0
|
||||
offset_bottom = 600.0
|
||||
texture = ExtResource("1_rcce4")
|
||||
|
||||
[node name="Text" type="Label" parent="."]
|
||||
offset_left = 52.0
|
||||
offset_top = 606.0
|
||||
offset_right = 1224.0
|
||||
offset_bottom = 714.0
|
||||
theme_override_colors/font_color = Color(0, 0, 0, 1)
|
||||
theme_override_font_sizes/font_size = 40
|
||||
text = "CUTSCENE_3_2"
|
||||
horizontal_alignment = 1
|
||||
|
||||
[node name="Bottomhud" parent="." instance=ExtResource("2_4y4yi")]
|
22
levels/Cutscenes/Troublemaker/pamela.tscn
Normal file
22
levels/Cutscenes/Troublemaker/pamela.tscn
Normal file
|
@ -0,0 +1,22 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://hn7pvoe3ygux"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://duaxggciofmts" path="res://backgounds/Pamela Hashimoto clasista.jpg" id="1_e1eqv"]
|
||||
[ext_resource type="PackedScene" uid="uid://d31udhuuwrajn" path="res://levels/bottomhud.tscn" id="2_kv77b"]
|
||||
|
||||
[node name="Pamela" type="Node2D"]
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
offset_right = 1278.0
|
||||
offset_bottom = 600.0
|
||||
texture = ExtResource("1_e1eqv")
|
||||
|
||||
[node name="Text" type="Label" parent="."]
|
||||
offset_left = 52.0
|
||||
offset_top = 606.0
|
||||
offset_right = 1224.0
|
||||
offset_bottom = 714.0
|
||||
theme_override_font_sizes/font_size = 40
|
||||
text = "CUTSCENE_3_1"
|
||||
horizontal_alignment = 1
|
||||
|
||||
[node name="Bottomhud" parent="." instance=ExtResource("2_kv77b")]
|
|
@ -59,7 +59,8 @@ func _on_wip_pressed():
|
|||
|
||||
func _on_results_pressed():
|
||||
#get_tree().change_scene_to_file("res://backgounds/result.tscn")
|
||||
pass
|
||||
Global.ccutscene = 13
|
||||
get_tree().change_scene_to_file("res://levels/ui/Cutscenes.tscn")
|
||||
|
||||
|
||||
func _on_disclaimer_pressed():
|
||||
|
@ -76,4 +77,5 @@ func _on_testrooms_pressed():
|
|||
|
||||
func _on_ceres_pressed():
|
||||
#get_tree().change_scene_to_file("res://levels/ui/ceres.tscn")
|
||||
pass
|
||||
Global.ccutscene = 10
|
||||
get_tree().change_scene_to_file("res://levels/ui/Cutscenes.tscn")
|
||||
|
|
|
@ -67,13 +67,13 @@ text = "CUTSCENE_1_NAME"
|
|||
layout_mode = 2
|
||||
theme_override_font_sizes/font_size = 32
|
||||
theme_override_styles/focus = SubResource("StyleBoxFlat_6u0xs")
|
||||
text = "BUTTON_PLACEHOLDER"
|
||||
text = "Honker Railway"
|
||||
|
||||
[node name="Results" type="Button" parent="VBoxContainer"]
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue