public void OnDisabled(CSGOperation component)
 {
     if (!component || UnityEditor.EditorApplication.isPlayingOrWillChangePlaymode)
     {
         return;
     }
     InternalCSGModelManager.OnDisabled(component);
 }
예제 #2
0
 // Operation Constructor
 private CSGNode(CSGOperation operation)
 {
     Operation = operation;
 }
예제 #3
0
파일: CSG.cs 프로젝트: sandygk/Rendering
 internal CSGGraphic(CSGOperation operation, Graphic left, Graphic right)
 {
     this.LeftOperand = left;
     this.RightOperand = right;
     this.Operation = operation;
 }