godot-demo-projects/networking/multiplayer_bomber/tile_scene.tscn

24 lines
655 B
Plaintext
Raw Normal View History

[gd_scene load_steps=3 format=2]
[ext_resource path="res://brickfloor.png" type="Texture" id=1]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 24, 24 )
2020-02-20 20:54:50 +01:00
[node name="TileScene" type="Node2D"]
2020-02-20 20:54:50 +01:00
[node name="Wall" type="Sprite" parent="."]
position = Vector2( 24, 24 )
texture = ExtResource( 1 )
region_rect = Rect2( 0, 0, 48, 48 )
2020-02-20 20:54:50 +01:00
[node name="StaticBody2D" type="StaticBody2D" parent="Wall"]
2020-02-20 20:54:50 +01:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="Wall/StaticBody2D"]
shape = SubResource( 1 )
2020-02-20 20:54:50 +01:00
[node name="Floor" type="Sprite" parent="."]
position = Vector2( 72, 24 )
texture = ExtResource( 1 )
region_rect = Rect2( 48, 0, 48, 48 )