the-crypt/magic/Projectiles/WaveProjectile.tscn

22 lines
597 B
Plaintext
Raw Normal View History

2020-07-19 18:36:36 -05:00
[gd_scene load_steps=4 format=2]
[ext_resource path="res://art/WaveProjectile.png" type="Texture" id=1]
2020-07-20 16:36:28 -05:00
[ext_resource path="res://magic/Projectiles/WaveProjectile.gd" type="Script" id=2]
2020-07-19 18:36:36 -05:00
[sub_resource type="CapsuleShape2D" id=1]
2020-07-20 16:36:28 -05:00
radius = 5.0
2020-07-19 18:36:36 -05:00
height = 4.0
[node name="WaveProjectile" type="KinematicBody2D"]
collision_layer = 8
collision_mask = 6
2020-07-19 18:36:36 -05:00
script = ExtResource( 2 )
[node name="Sprite" type="Sprite" parent="."]
2020-07-20 16:36:28 -05:00
scale = Vector2( 1.5, 1.5 )
2020-07-19 18:36:36 -05:00
texture = ExtResource( 1 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
2020-07-20 16:36:28 -05:00
position = Vector2( -1, 0 )
2020-07-19 18:36:36 -05:00
shape = SubResource( 1 )