[Wurst] Passing this into Closure, or alternative?

Status
Not open for further replies.

Taztingo

T

Taztingo

I have a class that contains a dialog. is there any way I can add a callback to it, and call a method within the class using a Trigger?


Code:
trigger t = CreateTrigger()
                    ..registerDialogEvent(this.mode)
                    ..addAction(-> onScoreClicked(0))

I cannot capture "this".

Are there any examples of how to do this, or do I have to extract my trigger outside of my class? There wasn't too much documentation on triggers.
 
Status
Not open for further replies.
Back
Top