OpenMetaverse.InventoryManager.RequestRezFromInventory C# (CSharp) Method

RequestRezFromInventory() public method

Rez an object from inventory
public RequestRezFromInventory ( Simulator simulator, Quaternion rotation, System.Vector3 position, InventoryItem item ) : UUID
simulator Simulator Simulator to place object in
rotation Quaternion Rotation of the object when rezzed
position System.Vector3 Vector of where to place object
item InventoryItem InventoryItem object containing item details
return UUID
        public UUID RequestRezFromInventory(Simulator simulator, Quaternion rotation, Vector3 position,
            InventoryItem item)
        {
            return RequestRezFromInventory(simulator, rotation, position, item, _Client.Self.ActiveGroup,
                UUID.Random(), false);
        }

Same methods

InventoryManager::RequestRezFromInventory ( Simulator simulator, Quaternion rotation, System.Vector3 position, InventoryItem item, UUID groupOwner ) : UUID
InventoryManager::RequestRezFromInventory ( Simulator simulator, Quaternion rotation, System.Vector3 position, InventoryItem item, UUID groupOwner, UUID queryID, bool requestObjectDetails ) : UUID