DariusGodotGame/dariusgodotproject/scenes/bullet.tscn

24 lines
836 B
Plaintext
Raw Normal View History

2025-01-21 01:44:44 +00:00
[gd_scene load_steps=4 format=3 uid="uid://dwfife67i1fmr"]
2025-01-14 01:58:53 +00:00
[ext_resource type="Script" path="res://scripts/bullet.gd" id="1_qivxv"]
2025-01-21 01:44:44 +00:00
[ext_resource type="Texture2D" uid="uid://dwukfncvqppye" path="res://assets/graphics/projectiles/pixel_bullet.png" id="2_a2saw"]
2025-01-14 01:58:53 +00:00
[sub_resource type="RectangleShape2D" id="RectangleShape2D_dp02a"]
size = Vector2(16, 4)
[node name="Area2D" type="Area2D"]
script = ExtResource("1_qivxv")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("RectangleShape2D_dp02a")
debug_color = Color(1, 1, 0, 0.419608)
2025-01-21 01:44:44 +00:00
[node name="Sprite2D" type="Sprite2D" parent="."]
texture_filter = 1
position = Vector2(-5, 2)
rotation = -3.1402
scale = Vector2(0.171023, -0.0779315)
texture = ExtResource("2_a2saw")
2025-01-14 01:58:53 +00:00
[connection signal="body_entered" from="." to="." method="_on_body_entered"]