mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
let LLSDAssetUploadRequest include asset_resources information plus let
NewAgentInventoryRequest know about mesh (does nothing with it still)
This commit is contained in:
@@ -30,6 +30,15 @@ using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Framework.Capabilities
|
||||
{
|
||||
[OSDMap]
|
||||
public class LLSDAssetResource
|
||||
{
|
||||
public OSDArray instance_list = new OSDArray();
|
||||
public OSDArray texture_list = new OSDArray();
|
||||
public OSDArray mesh_list = new OSDArray();
|
||||
public string metric = String.Empty;
|
||||
}
|
||||
|
||||
[OSDMap]
|
||||
public class LLSDAssetUploadRequest
|
||||
{
|
||||
@@ -38,7 +47,7 @@ namespace OpenSim.Framework.Capabilities
|
||||
public UUID folder_id = UUID.Zero;
|
||||
public string inventory_type = String.Empty;
|
||||
public string name = String.Empty;
|
||||
|
||||
public LLSDAssetResource asset_resources = new LLSDAssetResource();
|
||||
public LLSDAssetUploadRequest()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user