Exemplo n.º 1
0
 public static InteractablePrism Constructor()
 {
     return(GameObject.Instantiate(PrefabManager.GetPrefab("InteractablePrism")).GetComponent <InteractablePrism>());
 }
Exemplo n.º 2
0
 public static DependentRevolvedSurface Constructor()
 {
     return(PrefabManager.Spawn("DependentRevolvedSurface").GetComponent <DependentRevolvedSurface>());
 }
Exemplo n.º 3
0
 public static DependentLineSegment Constructor()
 {
     return(PrefabManager.Spawn("DependentLineSegment").GetComponent <DependentLineSegment>());
 }
Exemplo n.º 4
0
        public static straightEdgeBehave Constructor()
        {
            GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("Straightedge"));

            return(go.GetComponent <straightEdgeBehave>());
        }
Exemplo n.º 5
0
        public static arctusBehaveV3 Constructor()
        {
            GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("ArctusV3"));

            return(go.GetComponent <arctusBehaveV3>());
        }
Exemplo n.º 6
0
 public static StaticPoint Constructor()
 {
     return(PrefabManager.Spawn("StaticPoint").GetComponent <StaticPoint>());
 }
Exemplo n.º 7
0
        public static flatfaceBehave Constructor()
        {
            GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("Flatface"));

            return(go.GetComponent <flatfaceBehave>());
        }
Exemplo n.º 8
0
 public static DependentSphere Constructor()
 {
     return(PrefabManager.Spawn("DependentSphere").GetComponent <DependentSphere>());
 }
Exemplo n.º 9
0
 public static InteractablePoint Constructor()
 {
     return(PrefabManager.Spawn("InteractablePoint").GetComponent <InteractablePoint>());
 }
Exemplo n.º 10
0
 public static DependentPolygon Constructor()
 {
     return(PrefabManager.Spawn("DepenDependentPolygon").GetComponent <DependentPolygon>());
 }
Exemplo n.º 11
0
 public static InteractableLineSegment Constructor()
 {
     return(Instantiate(PrefabManager.GetPrefab("InteractableLineSegment")).GetComponent <InteractableLineSegment>());
 }
Exemplo n.º 12
0
        // Use this for initialization
        #region Constructors
        public static parallelLinesMaker Constructor()
        {
            GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("ParallelLines"));

            return(go.GetComponent <parallelLinesMaker>());
        }
Exemplo n.º 13
0
 public static alphabetLabel Constructor()
 {
     return(GameObject.Instantiate(PrefabManager.GetPrefab("AlphabetLabel")).GetComponent <alphabetLabel>());
 }
Exemplo n.º 14
0
 public static regularPolygon Constructor()
 {
     return(GameObject.Instantiate(PrefabManager.GetPrefab("RegularPolygon")).GetComponent <regularPolygon>());
 }
Exemplo n.º 15
0
 public static DependentPyramid Constructor()
 {
     return(PrefabManager.Spawn("DependentPyramid").GetComponent <DependentPyramid>());
 }
Exemplo n.º 16
0
 public static SnappablePoint Constructor()
 {
     return(GameObject.Instantiate(PrefabManager.GetPrefab("SnappablePoint")).GetComponent <SnappablePoint>());
 }