Cleanup from prev. commit

Make correct defaults to Phys/nonPhys prims to fix errors in prev. commit
connector_plugin
BlueWall 2012-09-18 10:09:32 -04:00
parent d29fc53052
commit 9d973ec3b3
2 changed files with 4 additions and 4 deletions

View File

@ -106,7 +106,7 @@ namespace OpenSim.Region.Framework.Scenes
/// <summary> /// <summary>
/// Minimum value of the size of a non-physical prim in each axis /// Minimum value of the size of a non-physical prim in each axis
/// </summary> /// </summary>
public float m_minNonphys = 0.01f; public float m_minNonphys = 0.001f;
/// <summary> /// <summary>
/// Maximum value of the size of a non-physical prim in each axis /// Maximum value of the size of a non-physical prim in each axis
@ -116,7 +116,7 @@ namespace OpenSim.Region.Framework.Scenes
/// <summary> /// <summary>
/// Minimum value of the size of a physical prim in each axis /// Minimum value of the size of a physical prim in each axis
/// </summary> /// </summary>
public float m_minPhys = 0.001f; public float m_minPhys = 0.01f;
/// <summary> /// <summary>
/// Maximum value of the size of a physical prim in each axis /// Maximum value of the size of a physical prim in each axis

View File

@ -87,9 +87,9 @@
;; from the selected region_info_source. ;; from the selected region_info_source.
; allow_regionless = false ; allow_regionless = false
;# {NonPhysicalPrimMin} {} {Minimum size of nonphysical prims?} {} 0.01 ;# {NonPhysicalPrimMin} {} {Minimum size of nonphysical prims?} {} 0.001
;; Minimum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMin!). ;; Minimum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMin!).
; NonPhysicalPrimMin = 0.01 ; NonPhysicalPrimMin = 0.001
;# {NonPhysicalPrimMax} {} {Maximum size of nonphysical prims?} {} 256 ;# {NonPhysicalPrimMax} {} {Maximum size of nonphysical prims?} {} 256
;; Maximum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMax!). ;; Maximum size for non-physical prims. Affects resizing of existing prims. This can be overriden in the region config file (as NonPhysicalPrimMax!).