Can you explain that more?
Yes, you can attach data to an event you send. Right before the
Send Event action (and variants), use the
Set Event Data, it will automatically associate variables to the next event sent from this FSM, packing them as the event is sent (it's like a form of encapsulation).
Then you just have to collect the data on the receiving end with an action called
Get Event Info right where another FSM's state receives the event. There are actions that are specific to var types like
Get Event Int Data, another one for strings but I might have taken them from the Ecosystem.
You can also use
Set/Get Event Properties that requires extra steps, wherein a property is defined with a key (a string used for the property's name), a var type (Float, Int, String, etc.), and the actual value or FsmVariable to use.
This can be useful if for some reason some events might fail to receive data.