diff options
author | BlueWall | 2012-05-18 19:56:46 -0400 |
---|---|---|
committer | BlueWall | 2012-05-18 20:02:32 -0400 |
commit | 247a56593fe132e6412612248ceaacaf324c50d8 (patch) | |
tree | 236d268946308afb9f70cf83b2987cd00aa1c6c7 /OpenSim/Region | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-247a56593fe132e6412612248ceaacaf324c50d8.zip opensim-SC_OLD-247a56593fe132e6412612248ceaacaf324c50d8.tar.gz opensim-SC_OLD-247a56593fe132e6412612248ceaacaf324c50d8.tar.bz2 opensim-SC_OLD-247a56593fe132e6412612248ceaacaf324c50d8.tar.xz |
Further refinement on properties
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 29eed67..5a0f564 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -569,21 +569,18 @@ namespace OpenSim.Region.Framework.Scenes | |||
569 | get { return m_sceneGraph.Entities; } | 569 | get { return m_sceneGraph.Entities; } |
570 | } | 570 | } |
571 | 571 | ||
572 | // can be closest/random/sequence | 572 | |
573 | private string m_SpawnPointRouting = "closest"; | ||
574 | // used in sequence see: SpawnPoint() | 573 | // used in sequence see: SpawnPoint() |
575 | private int m_SpawnPoint; | 574 | private int m_SpawnPoint; |
575 | // can be closest/random/sequence | ||
576 | public string SpawnPointRouting | 576 | public string SpawnPointRouting |
577 | { | 577 | { |
578 | get { return m_SpawnPointRouting; } | 578 | get; private set; |
579 | private set { m_SpawnPointRouting = value; } | ||
580 | } | 579 | } |
581 | // allow landmarks to pass | 580 | // allow landmarks to pass |
582 | private bool m_TelehubAllowLandmarks; | ||
583 | public bool TelehubAllowLandmarks | 581 | public bool TelehubAllowLandmarks |
584 | { | 582 | { |
585 | get { return m_TelehubAllowLandmarks; } | 583 | get; private set; |
586 | private set { m_TelehubAllowLandmarks = value; } | ||
587 | } | 584 | } |
588 | 585 | ||
589 | #endregion Properties | 586 | #endregion Properties |