blob: 9bed978245fd292192f222b7d0b2650cc218a8f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[gd_scene load_steps=5 format=2]
[ext_resource path="res://components/textreveal.gd" type="Script" id=1]
[ext_resource path="res://scenes/introduction/introduction.gd" type="Script" id=2]
[ext_resource path="res://components/button.tscn" type="PackedScene" id=3]
[ext_resource path="res://textures/backgrounds/background_grey.png" type="Texture" id=4]
[node name="CanvasLayer" type="Node2D"]
script = ExtResource( 2 )
[node name="background_grey" type="Sprite" parent="."]
texture = ExtResource( 4 )
[node name="TextReveal" type="Label" parent="."]
margin_left = -500.0
margin_top = -200.0
margin_right = 500.0
margin_bottom = 200.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
to_render = "Failed to load Tex :("
[node name="Continue" parent="." instance=ExtResource( 3 )]
position = Vector2( 0, 250 )
text = "Continue"
[node name="Skip" parent="." instance=ExtResource( 3 )]
position = Vector2( 545.262, 293.882 )
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"]
|