a game about throwing hammers made for the github game off
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=3 uid="uid://cqssoh4optvhe"]

[ext_resource type="Script" path="res://enemys/Enemy.gd" id="1_rvxwt"]
[ext_resource type="PackedScene" uid="uid://bgt7m0j1ier74" path="res://colliders/hurtbox.tscn" id="2_c7rvc"]
[ext_resource type="PackedScene" uid="uid://ug40hxlkequx" path="res://colliders/hitbox.tscn" id="3_cav1d"]

[node name="Enemy" type="CharacterBody2D"]
texture_filter = 1
collision_layer = 16
script = ExtResource("1_rvxwt")

[node name="Sprite" type="Sprite2D" parent="."]

[node name="Collision" type="CollisionShape2D" parent="."]
visible = false

[node name="Hurtbox" parent="." instance=ExtResource("2_c7rvc")]
visible = false
collision_layer = 8

[node name="Hitbox" parent="." instance=ExtResource("3_cav1d")]
visible = false
collision_mask = 4

[editable path="Hurtbox"]
[editable path="Hitbox"]