* Implemented the first interface, IAvatarManager, along with automatic interface binding
* Changed the way animations are tracked and sent to minimize locking/execution time/redundant packets
* Fixed TimeDilation value to correct the walking animation

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2158 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-08-22 19:20:02 +00:00
parent 4cc6722aa9
commit d672f821ce
5 changed files with 198 additions and 247 deletions

View File

@@ -0,0 +1,13 @@
using System;
using OpenMetaverse;
namespace Simian
{
public interface IAvatarManager
{
bool SetDefaultAnimation(Agent agent, UUID animID);
bool AddAnimation(Agent agent, UUID animID);
bool RemoveAnimation(Agent agent, UUID animID);
void SendAnimations(Agent agent);
}
}