blob: d2f4c14e12f9b861426a6e58c082dffd5d8dcedb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://Bullet.gd" type="Script" id=1]
[ext_resource path="res://icon.png" type="Texture" id=2]
[sub_resource type="CapsuleShape2D" id=1]
radius = 8.0
[node name="Bullet" type="KinematicBody2D"]
position = Vector2( 648, 360 )
script = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
position = Vector2( -1, 1 )
shape = SubResource( 1 )
disabled = true
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 2 )
|