Files
godot-shader-experiments/addons/gecs/tests/systems/s_test_without_group.gd
2026-01-15 15:27:48 +01:00

13 lines
251 B
GDScript

class_name TestSystemWithoutGroup
extends System
var entities_found := []
func query():
return q.without_group(["TestGroup"])
func process(entities: Array[Entity], components: Array, delta: float) -> void:
entities_found = entities.duplicate()