bullets bullets bullets bullets

This commit is contained in:
Haze Weathers 2025-12-31 14:09:06 -06:00
parent 846040c0e4
commit 55059788b2
25 changed files with 139 additions and 91 deletions

View file

@ -0,0 +1,12 @@
@abstract
class_name BulletSetBehavior
extends Resource
## Process one physics tick for a [BulletSet].
func process_set(bullet_set: BulletSet, delta: float) -> void:
_process_set(bullet_set, delta)
## Called once ever physics tick for the [BulletSet].
@abstract func _process_set(bullet_set: BulletSet, delta: float) -> void