You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using FmodEventEmitter2D, we have access to this really useful event picker for the FMOD Event parameter.
This allows for easy event binding and proper completion to avoid potential typos in event names, it's also a very convenient way to ask for an event as input.
In my case, I'm creating a FMODButton class using GDScript, allowing to easily have Buttons that will emit events on click, hover, focus, etc
The issue is that the best I can do is using @export_enum to provide a list of possible String values and it could be made better using the already existing picker.
Maybe this is just a lack of documentation tho, hence this issue 🙂
The text was updated successfully, but these errors were encountered:
When using
FmodEventEmitter2D
, we have access to this really useful event picker for theFMOD Event
parameter.This allows for easy event binding and proper completion to avoid potential typos in event names, it's also a very convenient way to ask for an event as input.
In my case, I'm creating a
FMODButton
class using GDScript, allowing to easily haveButton
s that will emit events on click, hover, focus, etcThe issue is that the best I can do is using
@export_enum
to provide a list of possible String values and it could be made better using the already existing picker.Maybe this is just a lack of documentation tho, hence this issue 🙂
The text was updated successfully, but these errors were encountered: