aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/world
diff options
context:
space:
mode:
authorgareth2007-03-23 14:54:22 +0000
committergareth2007-03-23 14:54:22 +0000
commit0e58f30358e1094717a2ec36ba8bab7918ddf223 (patch)
treeb8ce173e0bb9b0ff3f01d34d00cdc9bc13791734 /OpenSim.RegionServer/world
parentAdded initial (buggy) support for animations (diff)
downloadopensim-SC_OLD-0e58f30358e1094717a2ec36ba8bab7918ddf223.zip
opensim-SC_OLD-0e58f30358e1094717a2ec36ba8bab7918ddf223.tar.gz
opensim-SC_OLD-0e58f30358e1094717a2ec36ba8bab7918ddf223.tar.bz2
opensim-SC_OLD-0e58f30358e1094717a2ec36ba8bab7918ddf223.tar.xz
Fixed the "doh!" bug with animations (hint - sending a stand animation for walking is very "doh!")
Diffstat (limited to 'OpenSim.RegionServer/world')
-rw-r--r--OpenSim.RegionServer/world/Avatar.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim.RegionServer/world/Avatar.cs b/OpenSim.RegionServer/world/Avatar.cs
index 2382f81..b55d572 100644
--- a/OpenSim.RegionServer/world/Avatar.cs
+++ b/OpenSim.RegionServer/world/Avatar.cs
@@ -280,7 +280,7 @@ namespace OpenSim.world
280 280
281 if((movementflag &1) == 0) 281 if((movementflag &1) == 0)
282 { 282 {
283 this.current_anim=AnimsLLUUID["ANIM_AGENT_STAND"]; 283 this.current_anim=AnimsLLUUID["ANIM_AGENT_WALK"];
284 this.anim_seq=1; 284 this.anim_seq=1;
285 this.SendAnimPack(); 285 this.SendAnimPack();
286 } 286 }