aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IAvatarService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* First attempt to get multiple attachments working to support viewer2.Master ScienceSim2010-10-211-11/+5
| | | | | | | The attachment code appears to work correctly for 1.23 viewers so, in spite of some big changes in the internal representation, there don't appear to be regressions. That being said, I still can't get a viewer2 avatar to show correctly.
* Major refactoring of appearance handling.Master ScienceSim2010-10-201-7/+25
| | | | | | | | | | | | | | | | | | | AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
* Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto2010-01-121-1/+1
| | | | Appearance is now being passed with AgentCircuitData, as it should be.
* Fixed a couple of bugs with Appearance. Appearance is all good now.Diva Canto2010-01-111-43/+80
|
* Some work on avatar service. Retrieval and storage doneMelanie2010-01-041-0/+4
|
* * Converters from new AvatarData to old AvatarAppearance and vice-versaDiva Canto2010-01-021-1/+94
| | | | * Login now retrieves AvatarData from AvatarService and sends it off with the agent data
* Changed the rest of references to IAvatarData to AvatarDataDiva Canto2010-01-021-2/+7
|
* Change to a classMelanie2010-01-021-5/+7
|
* Strip the lindenisms from the interfaceMelanie2010-01-021-8/+2
|
* Clarifying comments.Diva Canto2010-01-021-1/+7
|
* First stab at avatar data. Very genericMelanie2010-01-021-7/+16
|
* Minor interface changesMelanie2010-01-021-8/+5
|
* * Forgotten ILibraryService from yesterdayDiva Canto2010-01-021-0/+94
* New IAvatarService -- first pass