-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.tscn
110 lines (97 loc) · 3.4 KB
/
Game.tscn
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[gd_scene load_steps=10 format=2]
[ext_resource path="res://Game.gd" type="Script" id=1]
[ext_resource path="res://Acts/ActManager.tscn" type="PackedScene" id=2]
[ext_resource path="res://Scenarios/Minigames/SopaLetras/SopaLetras.tscn" type="PackedScene" id=3]
[ext_resource path="res://Scenarios/Memory/Memory.tscn" type="PackedScene" id=4]
[ext_resource path="res://Dialogues/DialogueManager.tscn" type="PackedScene" id=5]
[ext_resource path="res://IntroScene.tscn" type="PackedScene" id=6]
[sub_resource type="Animation" id=1]
resource_name = "FadeIn"
tracks/0/type = "value"
tracks/0/path = NodePath("Overlay:modulate")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 1 ),
"transitions": PoolRealArray( 2, 1 ),
"update": 0,
"values": [ Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ) ]
}
[sub_resource type="Animation" id=2]
resource_name = "FadeOut"
tracks/0/type = "value"
tracks/0/path = NodePath("Overlay:modulate")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 0.990093 ),
"transitions": PoolRealArray( 0.5, 1 ),
"update": 0,
"values": [ Color( 1, 1, 1, 1 ), Color( 1, 1, 1, 0 ) ]
}
[sub_resource type="Animation" id=3]
resource_name = "Inyection"
length = 4.0
tracks/0/type = "value"
tracks/0/path = NodePath("Overlay:color")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 1, 3, 3.99994 ),
"transitions": PoolRealArray( 2, 1, 1, 2 ),
"update": 0,
"values": [ Color( 0.0117647, 0.0156863, 0.0980392, 1 ), Color( 0.807843, 0.94902, 0.94902, 1 ), Color( 0.807843, 0.94902, 0.94902, 1 ), Color( 0.0117647, 0.0156863, 0.0980392, 1 ) ]
}
tracks/1/type = "value"
tracks/1/path = NodePath("Overlay:modulate")
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/imported = false
tracks/1/enabled = true
tracks/1/keys = {
"times": PoolRealArray( 0, 1, 3, 4 ),
"transitions": PoolRealArray( 1, 1, 1, 1 ),
"update": 0,
"values": [ Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ), Color( 1, 1, 1, 1 ), Color( 1, 1, 1, 0 ) ]
}
[node name="Main" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
script = ExtResource( 1 )
skip_with_s = true
[node name="ActManager" parent="." instance=ExtResource( 2 )]
first_act = "Act1/Act1_Room"
[node name="SopaLetras" parent="." instance=ExtResource( 3 )]
visible = false
margin_left = 786.297
margin_top = 72.0999
margin_right = 786.297
margin_bottom = 72.0999
level = "laundry"
[node name="Memory" parent="." instance=ExtResource( 4 )]
[node name="Overlay" type="ColorRect" parent="."]
modulate = Color( 1, 1, 1, 0 )
anchor_right = 1.0
anchor_bottom = 1.0
mouse_filter = 2
color = Color( 0.0117647, 0.0156863, 0.0980392, 1 )
[node name="DialogueManager" parent="." instance=ExtResource( 5 )]
mouse_filter = 2
cecilia = Color( 0.831373, 0.619608, 0.862745, 1 )
dr_nick = Color( 0.694118, 0.623529, 0.980392, 1 )
claire = Color( 0.356863, 0.737255, 0.870588, 1 )
lucia = Color( 0.611765, 0.941176, 0.623529, 1 )
monteasalvo = Color( 0.223529, 0.360784, 0.827451, 1 )
customer = Color( 0.564706, 0.584314, 0.658824, 1 )
[node name="IntroScene" parent="." instance=ExtResource( 6 )]
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
anims/FadeIn = SubResource( 1 )
anims/FadeOut = SubResource( 2 )
anims/Inyection = SubResource( 3 )