Solved Getting list of monuments positions?
Discussion in 'Rust Development' started by Sir BenSon, Oct 25, 2016.
-
No i need the position in c# for my project
[DOUBLEPOST=1477662916][/DOUBLEPOST]And lusty Map is a stolen map image from playrust.io... -
var monumentInfos = UnityEngine.Object.FindObjectsOfType<MonumentInfo>();
foreach (var monumentInfo in monumentInfos)
{
X = monumentInfo.transform.position.x;
Z = monumentInfo.transform.position.z;
}; -
Thanks
