Some extra event stuff

This commit is contained in:
2025-05-20 11:04:04 -05:00
parent 36762682b8
commit 8311d7c68f
6 changed files with 12 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
class_name EventIf extends "res://scripts/Event/Flow/EventGroup.gd"
func ifCondition() -> bool:
return false
func shouldAutoStart() -> bool:
return false
func start() -> void:
super.start()
if ifCondition():
startEventGroup()