-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGirard.tscn
74 lines (59 loc) · 1.8 KB
/
Girard.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
[gd_scene load_steps=6 format=1]
[ext_resource path="res://assets/girard/animation.tres" type="SpriteFrames" id=1]
[ext_resource path="res://scripts/Girard.gd" type="Script" id=2]
[ext_resource path="res://assets/surprise.png" type="Texture" id=3]
[sub_resource type="StyleBoxFlat" id=1]
content_margin/left = -1.0
content_margin/right = -1.0
content_margin/top = -1.0
content_margin/bottom = -1.0
bg_color = Color( 1, 0, 0, 1 )
light_color = Color( 0.8, 0.8, 0.8, 1 )
dark_color = Color( 0.375, 0, 0, 1 )
border_size = 0
border_blend = true
draw_bg = true
[sub_resource type="StyleBoxFlat" id=2]
content_margin/left = -1.0
content_margin/right = -1.0
content_margin/top = -1.0
content_margin/bottom = -1.0
bg_color = Color( 0, 0, 0, 1 )
light_color = Color( 0, 0, 0, 1 )
dark_color = Color( 0, 0, 0, 1 )
border_size = 16
border_blend = true
draw_bg = true
[node name="Girard" type="AnimatedSprite"]
transform/scale = Vector2( 6, 6 )
frames = ExtResource( 1 )
animation = "aware"
playing = true
script/script = ExtResource( 2 )
[node name="Surprise" type="Sprite" parent="."]
visibility/visible = false
transform/pos = Vector2( -3.36292, -21.3467 )
texture = ExtResource( 3 )
[node name="Awareness" type="ProgressBar" parent="."]
visibility/visible = false
rect/scale = Vector2( 0.1, 0.1 )
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 0
margin/left = -15.0
margin/top = -19.0
margin/right = 205.0
margin/bottom = 13.0
custom_styles/fg = SubResource( 1 )
custom_styles/bg = SubResource( 2 )
range/min = 0.0
range/max = 1.0
range/step = 0.1
range/page = 0.0
range/value = 0.0
range/exp_edit = false
range/rounded = false
percent/visible = false
[connection signal="aware" from="." to="Awareness" method="hide"]
[connection signal="aware" from="." to="Surprise" method="show"]