public static arctusBehaveV3 Constructor() { GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("ArctusV3")); return(go.GetComponent <arctusBehaveV3>()); }
public static InteractablePrism Constructor() { return(GameObject.Instantiate(PrefabManager.GetPrefab("InteractablePrism")).GetComponent <InteractablePrism>()); }
public static flatfaceBehave Constructor() { GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("Flatface")); return(go.GetComponent <flatfaceBehave>()); }
public static straightEdgeBehave Constructor() { GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("Straightedge")); return(go.GetComponent <straightEdgeBehave>()); }
public static InteractableLineSegment Constructor() { return(Instantiate(PrefabManager.GetPrefab("InteractableLineSegment")).GetComponent <InteractableLineSegment>()); }
// Use this for initialization #region Constructors public static parallelLinesMaker Constructor() { GameObject go = GameObject.Instantiate(PrefabManager.GetPrefab("ParallelLines")); return(go.GetComponent <parallelLinesMaker>()); }
public static alphabetLabel Constructor() { return(GameObject.Instantiate(PrefabManager.GetPrefab("AlphabetLabel")).GetComponent <alphabetLabel>()); }
public static regularPolygon Constructor() { return(GameObject.Instantiate(PrefabManager.GetPrefab("RegularPolygon")).GetComponent <regularPolygon>()); }
public static SnappablePoint Constructor() { return(GameObject.Instantiate(PrefabManager.GetPrefab("SnappablePoint")).GetComponent <SnappablePoint>()); }