OpenMetaverse.ObjectManager.SetPosition C# (CSharp) Method

SetPosition() public method

Change the position of an object, Will change position of entire linkset
public SetPosition ( Simulator simulator, uint localID, System.Vector3 position ) : void
simulator Simulator A reference to the object where the object resides
localID uint The objects ID which is local to the simulator the object is in
position System.Vector3 The new position of the object
return void
        public void SetPosition(Simulator simulator, uint localID, Vector3 position)
        {
            UpdateObject(simulator, localID, position, UpdateType.Position | UpdateType.Linked);
        }

Same methods

ObjectManager::SetPosition ( Simulator simulator, uint localID, System.Vector3 position, bool childOnly ) : void