aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs18
1 files changed, 12 insertions, 6 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 1c042c4..9617505 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -683,9 +683,16 @@ namespace OpenSim.Framework
683 ExtraData = 1 << 20, 683 ExtraData = 1 << 20,
684 Sound = 1 << 21, 684 Sound = 1 << 21,
685 Joint = 1 << 22, 685 Joint = 1 << 22,
686 FullUpdate = 0x0fffffff, 686
687 SendInTransit = 0x20000000, 687 TerseUpdate = Position | Rotation | Velocity | Acceleration | AngularVelocity,
688 CancelKill = 0x4fffffff, // 1 << 30 688 FullUpdate = 0x00ffffff,
689
690 Animations = 1 << 24,
691
692 FullUpdatewithAnim = FullUpdate | Animations,
693
694 SendInTransit = 0x20000000, // 1 << 29
695 CancelKill = 0x41ffffff, // 1 << 30
689 Kill = 0x80000000 // 1 << 31 696 Kill = 0x80000000 // 1 << 31
690 } 697 }
691 698
@@ -736,9 +743,6 @@ namespace OpenSim.Framework
736 743
737 List<uint> SelectedObjects { get; } 744 List<uint> SelectedObjects { get; }
738 745
739 // [Obsolete("LLClientView Specific - Replace with ???")]
740 int NextAnimationSequenceNumber { get; }
741
742 /// <summary> 746 /// <summary>
743 /// Returns the full name of the agent/avatar represented by this client 747 /// Returns the full name of the agent/avatar represented by this client
744 /// </summary> 748 /// </summary>
@@ -765,6 +769,8 @@ namespace OpenSim.Framework
765 769
766 bool SendLogoutPacketWhenClosing { set; } 770 bool SendLogoutPacketWhenClosing { set; }
767 771
772 int NextAnimationSequenceNumber {get; set;}
773
768 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")] 774 // [Obsolete("LLClientView Specific - Circuits are unique to LLClientView")]
769 uint CircuitCode { get; } 775 uint CircuitCode { get; }
770 776