FMOD.ChannelGroup.getChannel C# (CSharp) Метод

getChannel() публичный Метод

public getChannel ( int index, Channel &channel ) : RESULT
index int
channel Channel
Результат RESULT
        public RESULT getChannel             (int index, out Channel channel)
        {
            channel = null;

            IntPtr channelraw;
            RESULT result = FMOD_ChannelGroup_GetChannel(getRaw(), index, out channelraw);
            channel = new Channel(channelraw);

            return result;
        }