NotifyNeedsRecompile() private method

Tells the material that it needs recompilation.
private NotifyNeedsRecompile ( ) : void
return void
Esempio n. 1
0
 /// <summary>
 ///    Forces this Technique to recompile.
 /// </summary>
 /// <remarks>
 ///    The parent Material is asked to recompile to accomplish this.
 /// </remarks>
 internal void NotifyNeedsRecompile()
 {
     // Disable require to recompile when splitting illumination passes
     if (illuminationPassesCompilationPhase != IlluminationPassesState.CompileDisabled)
     {
         parent.NotifyNeedsRecompile();
     }
 }