*Added support for the "show" button that highlights objects over the selected Objects

*Known bug, client does some weird "showing" when more than 255 objects are meant to be selected (linked objects count as one object)
This commit is contained in:
mingchen
2007-07-15 21:02:13 +00:00
parent 61446c0cd8
commit 6510aea0ed
7 changed files with 91 additions and 17 deletions

View File

@@ -69,7 +69,8 @@ namespace OpenSim.Framework.Interfaces
public delegate void ParcelPropertiesRequest(int start_x, int start_y, int end_x, int end_y, int sequence_id, bool snap_selection, IClientAPI remote_client);
public delegate void ParcelDivideRequest(int west, int south, int east, int north, IClientAPI remote_client);
public delegate void ParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client);
public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); // NOTETOSELFremove the packet part
public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client);
public delegate void ParcelSelectObjects(int parcel_local_id, int request_type, IClientAPI remote_client);
public delegate void EstateOwnerMessageRequest(EstateOwnerMessagePacket packet, IClientAPI remote_client);
@@ -126,6 +127,7 @@ namespace OpenSim.Framework.Interfaces
event ParcelDivideRequest OnParcelDivideRequest;
event ParcelJoinRequest OnParcelJoinRequest;
event ParcelPropertiesUpdateRequest OnParcelPropertiesUpdateRequest;
event ParcelSelectObjects OnParcelSelectObjects;
event EstateOwnerMessageRequest OnEstateOwnerMessage;