NoteLoop() public method

Plays the current patch and loops it.
public NoteLoop ( ) : int
return int
Ejemplo n.º 1
0
        public static HITResult NoteOnLoop(HITThread thread) //0x60
        {
            var dest = thread.ReadByte();

            thread.WriteVar(dest, thread.NoteLoop());
            return(HITResult.HALT);
        }
Ejemplo n.º 2
0
        //0x60
        public static HITResult NoteOnLoop(HITThread thread)
        {
            var dest = thread.ReadByte();
            thread.WriteVar(dest, thread.NoteLoop());

            return HITResult.CONTINUE;
        }