-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBullet.tscn
More file actions
26 lines (19 loc) · 790 Bytes
/
Bullet.tscn
File metadata and controls
26 lines (19 loc) · 790 Bytes
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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://art/orbSmall.png" type="Texture" id=1]
[ext_resource path="res://Bullet.gd" type="Script" id=2]
[sub_resource type="CircleShape2D" id=1]
radius = 84.5351
[node name="Bullet" type="RigidBody2D" groups=[
"bullets",
]]
collision_mask = 0
gravity_scale = 0.0
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
modulate = Color( 0.929412, 0.929412, 0.929412, 1 )
texture = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
scale = Vector2( 0.33, 0.33 )
shape = SubResource( 1 )
[node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
[connection signal="viewport_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_viewport_exited"]