bakemodule didnt like last changes
parent
66dea8fe05
commit
552b4e45e8
|
@ -254,18 +254,16 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
p.Appearance.WearableCacheItems = cacheItems;
|
p.Appearance.WearableCacheItems = cacheItems;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (m_BakedTextureModule != null)
|
if (m_BakedTextureModule != null)
|
||||||
{
|
{
|
||||||
m_BakedTextureModule.Store(remoteClient.AgentId, cacheItems);
|
m_BakedTextureModule.Store(remoteClient.AgentId, cacheItems);
|
||||||
p.Appearance.WearableCacheItemsDirty = true;
|
p.Appearance.WearableCacheItemsDirty = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
p.Appearance.WearableCacheItemsDirty = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12037,19 +12037,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
ScenePresence p = m_scene.GetScenePresence(AgentId);
|
ScenePresence p = m_scene.GetScenePresence(AgentId);
|
||||||
if (p.Appearance != null)
|
if (p.Appearance != null)
|
||||||
{
|
{
|
||||||
if (p.Appearance.WearableCacheItems == null)
|
if (p.Appearance.WearableCacheItems == null || p.Appearance.WearableCacheItemsDirty)
|
||||||
{
|
{
|
||||||
if (bakedTextureModule != null)
|
if (bakedTextureModule != null)
|
||||||
{
|
{
|
||||||
m_log.Debug("[ HandleAgentTextureCached] bakedTextureModule");
|
m_log.Debug("[ HandleAgentTextureCached] bakedTextureModule");
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (p.Appearance.WearableCacheItemsDirty)
|
cacheItems = bakedTextureModule.Get(AgentId);
|
||||||
{
|
p.Appearance.WearableCacheItems = cacheItems;
|
||||||
cacheItems = bakedTextureModule.Get(AgentId);
|
p.Appearance.WearableCacheItemsDirty = false;
|
||||||
p.Appearance.WearableCacheItems = cacheItems;
|
|
||||||
p.Appearance.WearableCacheItemsDirty = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -12074,7 +12071,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p.Appearance.WearableCacheItems != null)
|
else if (p.Appearance.WearableCacheItems != null)
|
||||||
{
|
{
|
||||||
cacheItems = p.Appearance.WearableCacheItems;
|
cacheItems = p.Appearance.WearableCacheItems;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue