private static void CreatePoint()
 {
     Selection.activeObject = LeanHelper.CreateElement <LeanPoint>(Selection.activeTransform);
 }
Exemple #2
0
 public static void CreatePolygon()
 {
     Selection.activeObject = LeanHelper.CreateElement <LeanPolygon>(Selection.activeTransform);
 }
Exemple #3
0
 private static void CreateBox()
 {
     Selection.activeObject = LeanHelper.CreateElement <LeanBox>(Selection.activeTransform);
 }
Exemple #4
0
 private static void CreateCircle()
 {
     Selection.activeObject = LeanHelper.CreateElement <LeanCircle>(Selection.activeTransform);
 }