* 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
14 lines
329 B
C#
14 lines
329 B
C#
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);
|
|
}
|
|
}
|