taqin/src/Taquin.tscn

90 lines
2.3 KiB
Plaintext
Raw Normal View History

2020-01-12 18:51:07 +01:00
[gd_scene load_steps=7 format=2]
2019-11-21 00:25:53 +01:00
[ext_resource path="res://src/Taquin.gd" type="Script" id=1]
2019-12-03 13:50:42 +01:00
[ext_resource path="res://src/Piece.tscn" type="PackedScene" id=2]
2019-11-21 00:25:53 +01:00
2019-12-02 13:42:02 +01:00
[sub_resource type="Animation" id=1]
resource_name = "MovingPiece"
2019-12-03 13:50:42 +01:00
length = 0.2
step = 0.01
2019-12-02 13:42:02 +01:00
tracks/0/type = "value"
2019-12-03 13:50:42 +01:00
tracks/0/path = NodePath("AnimationPlayer/MockPiece:position")
tracks/0/interp = 1
2019-12-02 13:42:02 +01:00
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 0.2 ),
"transitions": PoolRealArray( 1, 1 ),
"update": 0,
2019-12-03 13:50:42 +01:00
"values": [ Vector2( 15, 15 ), Vector2( 175, 15 ) ]
2019-12-02 13:42:02 +01:00
}
2020-02-09 17:01:32 +01:00
[sub_resource type="Gradient" id=2]
2020-01-12 18:51:07 +01:00
colors = PoolColorArray( 1, 1, 1, 1, 1, 0.140625, 0.140625, 1 )
2020-02-09 17:01:32 +01:00
[sub_resource type="GradientTexture" id=3]
gradient = SubResource( 2 )
2020-01-12 18:51:07 +01:00
2020-02-09 17:01:32 +01:00
[sub_resource type="ParticlesMaterial" id=4]
2020-01-12 18:51:07 +01:00
emission_shape = 2
emission_box_extents = Vector3( 10, 5, 1 )
flag_disable_z = true
spread = 180.0
gravity = Vector3( 0, 10, 0 )
initial_velocity = 50.0
angular_velocity = 28.0
orbit_velocity = 0.0
orbit_velocity_random = 0.0
linear_accel = 1.0
damping = 22.0
angle = 45.0
angle_random = 1.0
2020-02-09 17:01:32 +01:00
scale = 5.0
color_ramp = SubResource( 3 )
2020-01-12 18:51:07 +01:00
2019-12-10 13:55:03 +01:00
[node name="Taquin" type="Control"]
rect_min_size = Vector2( 540, 540 )
2019-11-21 00:25:53 +01:00
script = ExtResource( 1 )
2020-02-09 17:01:32 +01:00
__meta__ = {
"_edit_use_anchors_": false
}
2020-02-13 13:51:14 +01:00
rows = 3
columns = 3
2019-11-27 22:25:07 +01:00
difficulty = 0
2019-11-27 00:50:35 +01:00
2019-12-03 13:50:42 +01:00
[node name="Background" type="ColorRect" parent="."]
2019-11-27 00:50:35 +01:00
margin_right = 512.0
margin_bottom = 512.0
color = Color( 0.254902, 0.329412, 0.45098, 1 )
2019-12-02 13:42:02 +01:00
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
anims/MovingPiece = SubResource( 1 )
2019-12-03 13:50:42 +01:00
[node name="MockPiece" parent="AnimationPlayer" instance=ExtResource( 2 )]
2019-12-09 23:54:35 +01:00
visible = false
2019-12-03 13:50:42 +01:00
position = Vector2( 175, 15 )
size = 160
[node name="PlaceholderTexture" type="ColorRect" parent="AnimationPlayer/MockPiece"]
margin_right = 160.0
margin_bottom = 160.0
color = Color( 0.137255, 0.976471, 0.0196078, 1 )
2020-01-12 18:51:07 +01:00
[node name="Particles2D" type="Particles2D" parent="."]
position = Vector2( 253, 262 )
rotation = -1.5708
2020-02-09 17:01:32 +01:00
emitting = false
2020-01-12 18:51:07 +01:00
amount = 30
lifetime = 1.6
preprocess = 0.25
speed_scale = 1.25
explosiveness = 1.0
local_coords = false
2020-02-09 17:01:32 +01:00
process_material = SubResource( 4 )
2020-01-12 18:51:07 +01:00
[node name="Timer" type="Timer" parent="."]
wait_time = 2.0
one_shot = true
2020-01-12 19:35:20 +01:00
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]