diff options
author | UbitUmarov | 2018-12-28 13:52:59 +0000 |
---|---|---|
committer | UbitUmarov | 2018-12-28 13:52:59 +0000 |
commit | 4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4 (patch) | |
tree | 6e8200b3b7a3c0465853e42bbd790a59ccd4e312 /OpenSim/Framework/IClientAPI.cs | |
parent | update pbs (diff) | |
download | opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.zip opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.gz opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.bz2 opensim-SC-4a73cc81dc4e03b2b7c46829cecfc0627c3fddb4.tar.xz |
now break several things at same time... sog/sop updates, threads options,...
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 18 |
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 | ||