Difference between revisions of "George Commands : Layers"

From TVPaintWiki
Jump to: navigation, search
Line 57: Line 57:
 
*[[tv_LayerLockPosition]]
 
*[[tv_LayerLockPosition]]
 
*[[tv_LayerStencil]]
 
*[[tv_LayerStencil]]
*[[tv_layerloaddependencies ]]
+
*[[tv_LayerLoadDependencies ]]
  
 
*[[tv_LayerAutoBreakInstance ]]
 
*[[tv_LayerAutoBreakInstance ]]

Revision as of 09:50, 4 September 2015

<<<George<<<George Command Reference

Project

Clip

Instance

Layers


CODE

//LAYER RUN

loop= 1
i= 0
WHILE loop
	tv_LayerGetID i
	curLID= result	
	IF CMP(curLID,"NONE")==0		
		
		// START RUN ON LAYER 
               tv_layerSet curLID
		// END RUN ON LAYER
		i= i+1	
	ELSE		
		loop=0
	END
END