public void OnDisabled(CSGOperation component)
 {
     if (!component || UnityEditor.EditorApplication.isPlayingOrWillChangePlaymode)
     {
         return;
     }
     InternalCSGModelManager.OnDisabled(component);
 }
Exemple #2
0
 // Operation Constructor
 private CSGNode(CSGOperation operation)
 {
     Operation = operation;
 }
Exemple #3
0
 internal CSGGraphic(CSGOperation operation, Graphic left, Graphic right)
 {
     this.LeftOperand = left;
     this.RightOperand = right;
     this.Operation = operation;
 }