With the following code, I initiate a prefab inside the Content parent. However, the prefab is always loaded at the bottom of Content. Is it possibe to initiate the prefab directly under the first “singleOpretContainer”?
You will see the instantiated object (SingleOpretContainer(clone)) is at the bottom, which is incorrect.
// instantiate prefab
vContent = GameObject.FindGameObjectWithTag("scrollSingle");
Instantiate(prefab, vContent.transform,false);