Launcher/Notice_msg.tscn

77 lines
1.9 KiB
Plaintext

[gd_scene load_steps=6 format=2]
[ext_resource path="res://fonts/Retro Gaming.ttf" type="DynamicFontData" id=1]
[ext_resource path="res://Notice_msg.gd" type="Script" id=2]
[sub_resource type="DynamicFont" id=1]
extra_spacing_char = 4
font_data = ExtResource( 1 )
[sub_resource type="Animation" id=2]
length = 0.001
tracks/0/type = "value"
tracks/0/path = NodePath(".:position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0 ),
"transitions": PoolRealArray( 1 ),
"update": 0,
"values": [ Vector2( 0, 0 ) ]
}
tracks/1/type = "value"
tracks/1/path = NodePath("Label:rect_position")
tracks/1/interp = 1
tracks/1/loop_wrap = true
tracks/1/imported = false
tracks/1/enabled = true
tracks/1/keys = {
"times": PoolRealArray( 0 ),
"transitions": PoolRealArray( 1 ),
"update": 0,
"values": [ Vector2( 0, 0 ) ]
}
[sub_resource type="Animation" id=3]
resource_name = "move_off_screen"
length = 0.5
tracks/0/type = "value"
tracks/0/path = NodePath("Label:rect_position")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 0.5 ),
"transitions": PoolRealArray( 1, 1 ),
"update": 0,
"values": [ Vector2( 0, 0 ), Vector2( -1000, 0 ) ]
}
[node name="Notice_msg" type="Node2D"]
script = ExtResource( 2 )
__meta__ = {
"_edit_group_": true
}
[node name="TTL" type="Timer" parent="."]
wait_time = 3.0
one_shot = true
autostart = true
[node name="Label" type="Label" parent="."]
margin_right = 200.0
margin_bottom = 41.0
custom_fonts/font = SubResource( 1 )
text = "Test"
valign = 1
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
anims/RESET = SubResource( 2 )
anims/move_off_screen = SubResource( 3 )
[connection signal="timeout" from="TTL" to="." method="_on_TTL_timeout"]
[connection signal="animation_finished" from="AnimationPlayer" to="." method="_on_AnimationPlayer_animation_finished"]