1234567891011121314151617181920212223242526 |
- [gd_scene load_steps=4 format=2]
- [ext_resource path="res://component/ui/LifeContainer.gd" type="Script" id=1]
- [ext_resource path="res://component/entity/brick/brick_tileset.tres" type="TileSet" id=2]
- [ext_resource path="res://component/entity/brick/Grid.gd" type="Script" id=3]
- [node name="Grid" type="TileMap" groups=[
- "grid",
- ]]
- mode = 2
- tile_set = ExtResource( 2 )
- cell_size = Vector2( 40, 20 )
- cell_custom_transform = Transform2D( 40, 0, 0, 20, 0, 0 )
- collision_layer = 4
- collision_mask = 8
- format = 1
- script = ExtResource( 3 )
- [node name="LifeContainer" type="Node2D" parent="."]
- script = ExtResource( 1 )
- [node name="MoveDown" type="Tween" parent="."]
- __meta__ = {
- "_editor_description_": "Move grid to show the new row"
- }
- [connection signal="tween_all_completed" from="MoveDown" to="." method="_on_MoveDown_tween_all_completed"]
|