add prim scale limits to OpenSimExtras simulator features, for viewers that may care..

This commit is contained in:
UbitUmarov
2020-10-29 02:31:56 +00:00
parent 054c8aec4e
commit 1eb05d10ba

View File

@@ -1263,6 +1263,11 @@ namespace OpenSim.Region.Framework.Scenes
fm.AddOpenSimExtraFeature("SimulatorFPSFactor", OSD.FromReal(statisticsFPSfactor));
fm.AddOpenSimExtraFeature("SimulatorFPSWarnPercent", OSD.FromInteger(FrameTimeWarnPercent));
fm.AddOpenSimExtraFeature("SimulatorFPSCritPercent", OSD.FromInteger(FrameTimeCritPercent));
fm.AddOpenSimExtraFeature("MinPrimScale", OSD.FromReal(m_minNonphys));
fm.AddOpenSimExtraFeature("MaxPrimScale", OSD.FromReal(m_maxNonphys));
fm.AddOpenSimExtraFeature("MinPhysPrimScale", OSD.FromReal(m_minPhys));
fm.AddOpenSimExtraFeature("MaxPhysPrimScale", OSD.FromReal(m_maxPhys));
}
}