blob: 61ab36532e063173db883fa757b376e66d757f39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[gd_scene load_steps=3 format=2]
[ext_resource path="res://scripts/turret.gd" type="Script" id=1]
[sub_resource type="BoxShape" id=1]
[node name="turret" type="Spatial" groups=["turrets"]]
script = ExtResource( 1 )
[node name="turret" type="StaticBody" parent="." groups=["turrets"]]
[node name="CollisionShape" type="CollisionShape" parent="turret"]
transform = Transform( 0.25, 0, 0, 0, 0.25, 0, 0, 0, 0.25, 0, 0.25, 0 )
shape = SubResource( 1 )
|