aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/ClientView.API.cs
diff options
context:
space:
mode:
authorlbsa712007-07-08 19:47:04 +0000
committerlbsa712007-07-08 19:47:04 +0000
commitf62b7f3d1ed0fbc1afc431a1e25c20ec8effe243 (patch)
treedabbe7b18d786929e59d3a3896dc66e7fa0f22a2 /OpenSim/Region/ClientStack/ClientView.API.cs
parent* Because of svn quirkiness, this has to be a two-phase rocket (diff)
downloadopensim-SC_OLD-f62b7f3d1ed0fbc1afc431a1e25c20ec8effe243.zip
opensim-SC_OLD-f62b7f3d1ed0fbc1afc431a1e25c20ec8effe243.tar.gz
opensim-SC_OLD-f62b7f3d1ed0fbc1afc431a1e25c20ec8effe243.tar.bz2
opensim-SC_OLD-f62b7f3d1ed0fbc1afc431a1e25c20ec8effe243.tar.xz
* reverted rev 1200 waiting for info re animations.xml
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientView.API.cs')
-rw-r--r--OpenSim/Region/ClientStack/ClientView.API.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.API.cs b/OpenSim/Region/ClientStack/ClientView.API.cs
index dfae9e0..cefe856 100644
--- a/OpenSim/Region/ClientStack/ClientView.API.cs
+++ b/OpenSim/Region/ClientStack/ClientView.API.cs
@@ -527,21 +527,6 @@ namespace OpenSim.Region.ClientStack
527 OutPacket(avp); 527 OutPacket(avp);
528 } 528 }
529 529
530 public void SendAnimation(LLUUID animID, int seq, LLUUID sourceAgentId)
531 {
532 AvatarAnimationPacket ani = new AvatarAnimationPacket();
533 ani.AnimationSourceList = new AvatarAnimationPacket.AnimationSourceListBlock[1];
534 ani.AnimationSourceList[0] = new AvatarAnimationPacket.AnimationSourceListBlock();
535 ani.AnimationSourceList[0].ObjectID = sourceAgentId;
536 ani.Sender = new AvatarAnimationPacket.SenderBlock();
537 ani.Sender.ID = sourceAgentId;
538 ani.AnimationList = new AvatarAnimationPacket.AnimationListBlock[1];
539 ani.AnimationList[0] = new AvatarAnimationPacket.AnimationListBlock();
540 ani.AnimationList[0].AnimID = animID;
541 ani.AnimationList[0].AnimSequenceID = seq;
542 this.OutPacket(ani);
543 }
544
545 #endregion 530 #endregion
546 531
547 #region Avatar Packet/data sending Methods 532 #region Avatar Packet/data sending Methods