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