GAudio.MasterPulseModule.Start C# (CSharp) Method

Start() protected method

protected Start ( ) : void
return void
        void Start()
        {
            #if UNITY_EDITOR
            if( Application.isPlaying )
            {
                if( _StartPulseAuto )
                {
                    StartPulsing( 0, GATInfo.SyncDspTime + _StartDelay );
                }
            }
            #else
            if( _StartPulseAuto )
            {
                StartPulsing( 0, GATInfo.SyncDspTime + _StartDelay );
            }
            #endif
        }