1234567891011121314151617181920212223242526 |
- [gd_scene load_steps=5 format=3 uid="uid://bq2tsg7ic7l6h"]
- [ext_resource type="Texture2D" uid="uid://b4cgnkp8rrngn" path="res://assets/textures/logo-black.png" id="1_36ime"]
- [ext_resource type="Script" path="res://assets/scenes/logo.gd" id="1_lrvxc"]
- [ext_resource type="Texture2D" uid="uid://c8u4qq28kad8n" path="res://assets/textures/logo-red.png" id="2_5hq8e"]
- [sub_resource type="AnimatedTexture" id="AnimatedTexture_ht0ny"]
- frames = 2
- pause = true
- speed_scale = 0.0
- frame_0/texture = ExtResource("1_36ime")
- frame_1/texture = ExtResource("2_5hq8e")
- frame_1/duration = 1.0
- [node name="Logo" type="TextureRect"]
- offset_right = 809.0
- offset_bottom = 83.0
- texture = SubResource("AnimatedTexture_ht0ny")
- stretch_mode = 4
- script = ExtResource("1_lrvxc")
- [node name="Timer" type="Timer" parent="."]
- wait_time = 0.2
- autostart = true
- [connection signal="timeout" from="Timer" to="." method="_on_timer_timeout"]
|