Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,14 @@ public void SetAppearance(IScenePresence sp, Primitive.TextureEntry textureEntry

private void SendAppearance(ScenePresence sp)
{
// Send the appearance to everyone in the scene
// Send the updated appearance back to the avatar themselves so that
// mLastProcessedAppearance on the viewer is kept current. Without
// this, resetSkeleton() on the viewer replays the stale appearance
// from region-entry and reverts the avatar's textures to a previous
// outfit.
sp.SendAppearanceToAgentNF(sp);

// Send the appearance to everyone else in the scene
sp.SendAppearanceToAllOtherAgents();

// Send animations back to the avatar as well
Expand Down