aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneGraph.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Correct wrong inverted logic on settings goupMelanie Thielker2008-11-281-1/+1
|
* Force regioncrossed prims to get a new LocalID. Reset parent local ID to newMelanie Thielker2008-11-281-1/+6
| | | | | | avatar local ID when corssing.
* Fix permission propagation that was broken some revision back, causingMelanie Thielker2008-11-271-3/+1
| | | | | | sold/given prim to become full perm.
* * Refactored a number of locks into EntityManager to limit the scope of the ↵Adam Frisby2008-11-241-37/+17
| | | | locks.
* * Swaps Scene.Entities Dictionary for EntityManager.Adam Frisby2008-11-241-5/+3
| | | | | | * Important Changes: Scene.Entities is now IEnumerable directly. You do not need to use Entities.Values, you can Enumerate on .Entities directly. (So 'foreach Scene.Entities' vs 'foreach Scene.Entities.Values'). * Locks: Entities maintains it's own internal locking states. This means you do not need to lock entities anymore. I'll be going through and removing locks on it systematically.
* Fix build breakMelanie Thielker2008-11-221-1/+1
|
* Remove a redundant check and add checking for attachments in parcels thatMelanie Thielker2008-11-221-2/+2
| | | | | | have no entry set, part 1
* Mantis #2442Melanie Thielker2008-11-221-1/+1
| | | | | | Attempt to reinstate the Object Entry flag in parcel settings
* Refactor: Scene.ExternalChecks -> Scene.Permissions. Also make allMelanie Thielker2008-11-211-22/+22
| | | | | | the internals of the permissions module adapter sane
* From: Christopher Yeoh <cyeoh@au1.ibm.com>Sean Dague2008-11-201-1/+0
| | | | | | | | | | | | | | | | | Attached is a patch which fixes mantis bug 2645 where scripts in child prims freeze after being unlinked from the root prim. This got introduced some time after the 0.6 freeze. Have checked test suites pass even after nant clean ;-) http://opensimulator.org/mantis/bug_update_page.php?bug_id=2645 Also removes a redundant ResetIDs call Regards, Chris
* * refactor: as per a recent opensim-dev thread, rename InnerScene to ↵Justin Clarke Casey2008-11-121-0/+1724
SceneGraph to make it more descriptive of its intended function