first_anniversary_godot_jam/scripts/Library/Actions/ActionList.gd

13 lines
145 B
GDScript3
Raw Normal View History

2024-04-20 14:16:44 +00:00
class_name ActionList
extends Action
func onTrigger():
var children = get_children()
for c in children:
triggerAction( c )