Make mesh upload respect the same parts maximum as what is set for the
simulatorLSLKeyTest
parent
110297793c
commit
57b6398b71
|
@ -153,6 +153,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
// tell it about scene object limits
|
||||
m_ModelCost.NonPhysicalPrimScaleMax = m_Scene.m_maxNonphys;
|
||||
m_ModelCost.PhysicalPrimScaleMax = m_Scene.m_maxPhys;
|
||||
m_ModelCost.ObjectLinkedPartsMax = m_Scene.m_linksetCapacity;
|
||||
|
||||
// m_ModelCost.ObjectLinkedPartsMax = ??
|
||||
// m_ModelCost.PrimScaleMin = ??
|
||||
|
|
|
@ -140,7 +140,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
|||
|
||||
int numberInstances = resources.instance_list.Array.Count;
|
||||
|
||||
if( numberInstances > ObjectLinkedPartsMax )
|
||||
if (ObjectLinkedPartsMax != 0 && numberInstances > ObjectLinkedPartsMax)
|
||||
{
|
||||
error = "Model would have more than " + ObjectLinkedPartsMax.ToString() + " linked prims";
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue