the-crypt/magic/Projectiles/PhantomProjectile.tscn

35 lines
958 B
Plaintext
Raw Normal View History

2020-07-20 01:18:45 -05:00
[gd_scene load_steps=5 format=2]
2020-07-19 18:36:36 -05:00
[ext_resource path="res://art/PhantomProjectile.png" type="Texture" id=1]
2020-07-20 01:18:45 -05:00
[ext_resource path="res://magic/Projectiles/PhantomProjectile.gd" type="Script" id=2]
2020-07-19 18:36:36 -05:00
2020-07-20 01:18:45 -05:00
[sub_resource type="RectangleShape2D" id=1]
extents = Vector2( 1, 4 )
[sub_resource type="CapsuleShape2D" id=2]
radius = 3.0
2020-07-19 20:06:49 -05:00
height = 6.0
2020-07-19 18:36:36 -05:00
[node name="PhantomProjectile" type="KinematicBody2D"]
collision_layer = 8
2020-07-20 01:18:45 -05:00
collision_mask = 2
2020-07-19 18:36:36 -05:00
script = ExtResource( 2 )
2020-07-20 01:18:45 -05:00
[node name="Sprite" type="Sprite" parent="."]
texture = ExtResource( 1 )
2020-07-19 18:36:36 -05:00
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
2020-07-20 01:18:45 -05:00
visible = false
2020-07-19 18:36:36 -05:00
rotation = 1.5708
shape = SubResource( 1 )
2020-07-19 20:06:49 -05:00
2020-07-20 01:18:45 -05:00
[node name="Area2D" type="Area2D" parent="."]
monitorable = false
collision_layer = 0
collision_mask = 4
[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
rotation = 1.5708
shape = SubResource( 2 )
[connection signal="body_entered" from="Area2D" to="." method="_on_body_entered"]