taqin/game/src/Taquin.tscn

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-12-03 13:50:42 +01:00
[gd_scene load_steps=4 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
}
2019-11-25 01:16:06 +01:00
[node name="Taquin" type="Node2D"]
2019-11-21 00:25:53 +01:00
script = ExtResource( 1 )
2019-11-27 22:25:07 +01:00
rows = 3
columns = 3
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 )]
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 )