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
Currently, loading events in this extension is done by 'guid' (default) but in the settings users can opt-in to load by event name instead. While this is useful, sometimes developers want to load events by GUID, but in specific cases we just want to look them up by name, e.g. when the name is dynamic based on situation:
In this case, I want FMOD to load it by event, since I provided a valid event name.
Proposal: best effort solution to lookup event
Rather than forcing a 'load everything by GUID' vs. 'load everything by name', we can change this to be something like 'prefer loading by GUID' vs. 'prefer loading by name' in the settings:
in case only GUID is present (but not event name) it will attempt to load by GUID, independent of 'prefer' setting
in case only name is present (but not GUID) it will attempt to load by name, independent of 'prefer' setting
in case both GUID and name are present, it will load by preferred setting
The text was updated successfully, but these errors were encountered:
Currently, loading events in this extension is done by 'guid' (default) but in the settings users can opt-in to load by event name instead. While this is useful, sometimes developers want to load events by GUID, but in specific cases we just want to look them up by name, e.g. when the name is dynamic based on situation:
In this case, I want FMOD to load it by event, since I provided a valid event name.
Proposal: best effort solution to lookup event
Rather than forcing a 'load everything by GUID' vs. 'load everything by name', we can change this to be something like 'prefer loading by GUID' vs. 'prefer loading by name' in the settings:
The text was updated successfully, but these errors were encountered: