When you load and then try to position a static mesh the mesh data does not follow the mesh in dbp.
If you have the position data pre-stored in the mesh then you just load it and its automatically positioned for you with you call the phy mesh command.
Now the problem here is that what if you want to clone your object so you have more than one. You would have to pre-store the position data in each for every object.
Now this function will solve that problem. You can instance/clone any object and positon it anywhere you want to.
The only thing is before you call this function you must set the scale/position/rotation in dbp where you want it before you call.
Function Phy_Fix_StaticMesh(obj)
make mesh from object 99,obj
make object obj+1,99,0
position object obj+1 ,600,50,600
phy make rigid body static mesh obj+1
delete mesh 99
exclude object on obj+ 1
EndFunction
Thank you.