diff --git a/scenes/characters/blue/dummy.gd b/scenes/characters/blue/dummy.gd index 5d94094..304b3d7 100644 --- a/scenes/characters/blue/dummy.gd +++ b/scenes/characters/blue/dummy.gd @@ -16,7 +16,7 @@ func _process(delta: float) -> void: func _on_head_collision_body_part_hit(dam: Variant) -> void: print("head is hit" + str(dam)) - owner_placeholder.take_damage(dam) + #owner_placeholder.take_damage(dam) pass # Replace with function body. func _get_owner() -> CharacterBody3D: diff --git a/scenes/maps/el_test.gd b/scenes/maps/el_test.gd index 6f92b67..ccbc102 100644 --- a/scenes/maps/el_test.gd +++ b/scenes/maps/el_test.gd @@ -26,11 +26,14 @@ func _ready() -> void: $MultiplayerSpawner.spawn(char) players.add_child(char) +var bullet_amount: int = 0 func spawn_bullet(position): print("spawning a bullet") var node: Node3D = ResourceLoader.load("res://scenes/weapon/bullet.tscn").instantiate() node.position = position.global_position node.transform.basis = position.global_transform.basis + node.name = str(bullet_amount) + bullet_amount += 1 $BulletSpawner.spawn(node) $Bullets.add_child(node) # Called every frame. 'delta' is the elapsed time since the previous frame. diff --git a/scenes/maps/el_test.tscn b/scenes/maps/el_test.tscn index 3e90782..07612a9 100644 --- a/scenes/maps/el_test.tscn +++ b/scenes/maps/el_test.tscn @@ -2567,6 +2567,6 @@ libraries = { [node name="BulletSpawner" type="MultiplayerSpawner" parent="."] _spawnable_scenes = PackedStringArray("res://scenes/weapon/bullet.tscn") spawn_path = NodePath("../Bullets") -spawn_limit = 8510 +spawn_limit = 100 [connection signal="body_part_hit" from="Dummy/Body/Armature/Skeleton3D/BoneAttachment3D/HeadCollision" to="Dummy" method="_on_head_collision_body_part_hit"] diff --git a/scenes/weapon/bullet.tscn b/scenes/weapon/bullet.tscn index 04a7909..6241d78 100644 --- a/scenes/weapon/bullet.tscn +++ b/scenes/weapon/bullet.tscn @@ -33,13 +33,13 @@ size = Vector3(0.05, 0.05, 0.05) [sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_b8q4c"] properties/0/path = NodePath(".:position") properties/0/spawn = true -properties/0/replication_mode = 1 +properties/0/replication_mode = 2 properties/1/path = NodePath(".:rotation") properties/1/spawn = true -properties/1/replication_mode = 1 +properties/1/replication_mode = 2 properties/2/path = NodePath(".:rotation_order") properties/2/spawn = true -properties/2/replication_mode = 1 +properties/2/replication_mode = 2 [node name="Bullet" type="Node3D"] transform = Transform3D(20, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0)