diff options
author | mingchen | 2007-07-15 21:02:13 +0000 |
---|---|---|
committer | mingchen | 2007-07-15 21:02:13 +0000 |
commit | 6510aea0ed33134c09d25be690a69e1fff4a3282 (patch) | |
tree | 977e759a9ae61b788439e68ce01bd94dfae4c1fc /OpenSim/Framework/General | |
parent | * Primitives are now loaded from Datastore during scene initialisation. (diff) | |
download | opensim-SC_OLD-6510aea0ed33134c09d25be690a69e1fff4a3282.zip opensim-SC_OLD-6510aea0ed33134c09d25be690a69e1fff4a3282.tar.gz opensim-SC_OLD-6510aea0ed33134c09d25be690a69e1fff4a3282.tar.bz2 opensim-SC_OLD-6510aea0ed33134c09d25be690a69e1fff4a3282.tar.xz |
*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)
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r-- | OpenSim/Framework/General/Interfaces/IClientAPI.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index fbd239f..4c6a0e0 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs | |||
@@ -69,7 +69,8 @@ namespace OpenSim.Framework.Interfaces | |||
69 | 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); | 69 | 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); |
70 | public delegate void ParcelDivideRequest(int west, int south, int east, int north, IClientAPI remote_client); | 70 | public delegate void ParcelDivideRequest(int west, int south, int east, int north, IClientAPI remote_client); |
71 | public delegate void ParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client); | 71 | public delegate void ParcelJoinRequest(int west, int south, int east, int north, IClientAPI remote_client); |
72 | public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); // NOTETOSELFremove the packet part | 72 | public delegate void ParcelPropertiesUpdateRequest(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); |
73 | public delegate void ParcelSelectObjects(int parcel_local_id, int request_type, IClientAPI remote_client); | ||
73 | 74 | ||
74 | public delegate void EstateOwnerMessageRequest(EstateOwnerMessagePacket packet, IClientAPI remote_client); | 75 | public delegate void EstateOwnerMessageRequest(EstateOwnerMessagePacket packet, IClientAPI remote_client); |
75 | 76 | ||
@@ -126,6 +127,7 @@ namespace OpenSim.Framework.Interfaces | |||
126 | event ParcelDivideRequest OnParcelDivideRequest; | 127 | event ParcelDivideRequest OnParcelDivideRequest; |
127 | event ParcelJoinRequest OnParcelJoinRequest; | 128 | event ParcelJoinRequest OnParcelJoinRequest; |
128 | event ParcelPropertiesUpdateRequest OnParcelPropertiesUpdateRequest; | 129 | event ParcelPropertiesUpdateRequest OnParcelPropertiesUpdateRequest; |
130 | event ParcelSelectObjects OnParcelSelectObjects; | ||
129 | 131 | ||
130 | event EstateOwnerMessageRequest OnEstateOwnerMessage; | 132 | event EstateOwnerMessageRequest OnEstateOwnerMessage; |
131 | 133 | ||