コード例 #1
0
ファイル: SoundGenerator.cs プロジェクト: Waevka/SoundScene
 private FMOD.RESULT PCMSetPositionCallback(IntPtr raw, int subsound, uint position, FMOD.TIMEUNIT postype)
 {
     return FMOD.RESULT.OK;
 }
コード例 #2
0
 FMOD.RESULT PCMSetPosCallback(System.IntPtr soundraw, int subsound, uint position, FMOD.TIMEUNIT postype)
 {
     AudioStreamSupport.LOG(LogLevel.DEBUG, this.logLevel, this.gameObjectName, null, "PCMSetPosCallback requesting position {0} ", position);
     return(FMOD.RESULT.OK);
 }
コード例 #3
0
 private FMOD.RESULT PcmSetPosCallback(IntPtr soundraw, int subsound, uint pcmoffset, FMOD.TIMEUNIT postype)
 {
     // not needed
     return(FMOD.RESULT.OK);
 }
コード例 #4
0
ファイル: SoundBrowser.cs プロジェクト: ophiocus/ps2ls
        private static FMOD.RESULT PCMSETPOSCALLBACK(IntPtr soundraw, int subsound, uint pcmoffset, FMOD.TIMEUNIT postype)
        {
            /*
             *  This is useful if the user calls Sound::setTime or Sound::setPosition and you want to seek your data accordingly.
             */

            return(FMOD.RESULT.OK);
        }
コード例 #5
0
ファイル: SoundBrowser.cs プロジェクト: dak0ta101/ps2ls
 private static FMOD.RESULT PCMSETPOSCALLBACK(IntPtr soundraw, int subsound, uint pcmoffset, FMOD.TIMEUNIT postype)
 {
     return(FMOD.RESULT.OK);
 }