Simian:
* 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:
13
Programs/Simian/Interfaces/IAvatarManager.cs
Normal file
13
Programs/Simian/Interfaces/IAvatarManager.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user