blob: d8b98769c4188ad13f65cd6cf5f95fd37d843897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://lib/base_buyable.gd" type="Script" id=1]
[ext_resource path="res://buildings/building_interface.gd" type="Script" id=2]
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 32, 32 )
[node name="texture" type="Sprite"]
script = ExtResource( 2 )
[node name="Area2D" type="Area2D" parent="."]
script = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource( 1 )
[node name="Label" type="Label" parent="."]
margin_left = -32.0
margin_top = -32.0
margin_right = 32.0
margin_bottom = -16.0
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_colors/font_outline_modulate = Color( 0, 0, 0, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
|