first_anniversary_godot_jam/scripts/Library/Actions/ActionList.gd

13 lines
145 B
GDScript

class_name ActionList
extends Action
func onTrigger():
var children = get_children()
for c in children:
triggerAction( c )