Skip to content
Snippets Groups Projects
Commit 65c12f4a authored by Robin Halseth Sandvik's avatar Robin Halseth Sandvik
Browse files

Added new variants for instanciating prefabs.

parent c6f0c377
No related branches found
No related tags found
1 merge request!68Master
......@@ -41,14 +41,22 @@ namespace BigSock.Service {
public GameObject Instance(string name, Vector3? pos = null)
=> Instance(_prefabs[_sanitize(name)], pos);
private GameObject Instance(GameObject obj, Transform parent)
{
private GameObject Instance(GameObject obj, Transform parent) {
var res = MonoBehaviour.Instantiate(obj, parent);
return res;
}
public GameObject Instance(string name, Transform parent)
=> Instance(_prefabs[_sanitize(name)], parent);
public GameObject Instance(GameObject obj, Vector3 position, Quaternion rotation, Transform parent) {
return MonoBehaviour.Instantiate(obj, position, rotation, parent);
}
public GameObject Instance(GameObject obj, Vector3 position, Quaternion rotation) {
return MonoBehaviour.Instantiate(obj, position, rotation);
}
/*
Destroy an instance.
*/
......
......@@ -105,7 +105,7 @@ BoxCollider2D:
m_SpriteTilingProperty:
border: {x: 0, y: 0, z: 0, w: 0}
pivot: {x: 0.5, y: 0.5}
oldSize: {x: 1.125, y: 0.75}
oldSize: {x: 2.25, y: 1.5}
newSize: {x: 1, y: 1}
adaptiveTilingThreshold: 0.5
drawMode: 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment