I’m trying to get the name of my ChannelGroup for debug purposes, but I have no clue how ChannelGroup.getName works. I’m not sure what to pass into the “namelen” since you can’t know the length beforehand. I tried passing in a bunch of numbers but I always get giberish back, including some weird emojis.
In a testcase I know the name is “sfx”.
I use this code;
string channelGroupName = null;
var result = grp.getName( out channelGroupName, 32 );
channelGroupName comes back as “”
result is “FMOD.RESULT.ERR_INVALID_PARAM”
Any pointers?