1
0
Fork 0
1bit-godot-course/metroidvania/Scenes/Objects/Proyectile.tscn

21 lines
850 B
Plaintext

[gd_scene load_steps=3 format=2]
[ext_resource path="res://Scenes/Objects/Proyectile.gd" type="Script" id=1]
[ext_resource path="res://Scenes/Objects/Hitbox.tscn" type="PackedScene" id=2]
[node name="Proyectile" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
[node name="VisibilityNotifier2D" type="VisibilityNotifier2D" parent="."]
rect = Rect2( -4, -4, 8, 8 )
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
[node name="Hitbox" parent="." instance=ExtResource( 2 )]
collision_mask = 2
[connection signal="viewport_exited" from="VisibilityNotifier2D" to="." method="_on_VisibilityNotifier2D_viewport_exited"]
[connection signal="area_entered" from="Hitbox" to="." method="_on_Hitbox_area_entered"]
[connection signal="body_entered" from="Hitbox" to="." method="_on_Hitbox_body_entered"]