aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneGraph.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change the way attachments are persisted. Editing a worn attachment will nowMelanie2010-11-161-5/+12
| | | | | | | save properly, as will the results of a resizer script working. Attachment positions are no longer saved on each move, but instead are saved once on logout. Attachment script states are saved as part of the attachment now when detaching.
* Fix child prims returning after being unlinked and deleted where the root isMelanie2010-11-041-0/+5
| | | | not deleted
* Merge branch 'master' into careminster-presence-refactorMelanie2010-10-271-1/+4
|\
| * Prevent nullrefs in scene object deletion. Mantis #5156Melanie2010-10-271-1/+4
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-10-031-2/+1
|\ \ | |/
| * I really have to say it again and again: e.Message is NOT enough data forMelanie2010-10-031-2/+1
| | | | | | | | | | | | troubleshooting. It MUST be combined with e.StackTrace, or e.ToString() must be used. Fix one more instance of that cr.p
| * Prevent setting arbitrary groups on your objects.Melanie2010-09-271-0/+3
| |
* | Enforce region agent limit as set in estate toolsMelanie2010-09-301-0/+5
| |
* | Prevent setting arbitrary groups on your objects.Melanie2010-09-271-0/+3
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-171-34/+21
|\ \ | |/ | | | | | | | | Integrate the next large patch. Don't use this version, it has a ghost avatar issue. Next push will fix it.
| * Changed SceneObjectGroup to store parts with the fast and thread-safe ↵John Hurliman2010-09-161-33/+20
| | | | | | | | MapAndArray collection
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-141-10/+0
|\ \ | |/
| * Remove SceneGraph.DetachObject() which was accidentally left around after ↵Justin Clark-Casey (justincc)2010-09-131-10/+0
| | | | | | | | being migrated to AttachmentsModule
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-131-159/+148
|\ \ | |/ | | | | | | The modules will need to be updated for this to compile and run again. Please don't use until I do the companion commit to modules later on.
| * Formatting cleanup.Jeff Ames2010-09-121-3/+3
| |
| * Second pass at cleaning up thread safety in EntityManager and SceneGraphJohn Hurliman2010-09-101-34/+32
| |
| * First pass at cleaning up thread safety in EntityManager and SceneGraphJohn Hurliman2010-09-101-136/+127
| |
* | Fix some issues with unlinkingMelanie Thielker2010-09-071-56/+53
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-09-071-0/+2
|\ \ | |/
| * Make sure unlinked child prims get persistedMelanie2010-09-071-0/+5
| |
| * Adjust the "Magic numbers" we use because we can't reference the actualMelanie Thielker2010-08-311-1/+1
| | | | | | | | script state enum to reflect recent changes.
* | Don't turn off the sale settings on child prims when linking, and on copyMelanie Thielker2010-09-061-8/+0
| | | | | | | | | | of prims anymore. The behavior now matches SL and can be used to link vendor prims for transport
* | Adjust the "Magic numbers" we use because we can't reference the actualMelanie Thielker2010-08-311-1/+1
| | | | | | | | script state enum to reflect recent changes.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-301-38/+25
|\ \ | |/
| * Improve liveness by operating on list copies of SOG.Children where appropriateJustin Clark-Casey (justincc)2010-08-281-25/+26
| |
| * refactor: break out attachment position change code in ↵Justin Clark-Casey (justincc)2010-08-261-24/+13
| | | | | | | | | | | | Scene.UpdatePrimPosition() and move into AttachmentsModule This allows region modules to change attachment positions.
| * Remove mono compiler warningsJustin Clark-Casey (justincc)2010-08-261-2/+0
| |
* | Fix a horrible bug in SG, where iteration of scene objects is carriedMelanie Thielker2010-08-261-2/+4
| | | | | | | | | | out in a fashion that causes the delegate to be invoked once per child prim for a given group.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-261-36/+54
|\ \ | |/ | | | | This was rather conflicted. Please test linking.
| * Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2010-08-261-26/+38
| |\ | | | | | | | | | | | | | | | | | | Resolve merge conflicts Conflicts: OpenSim/Region/Framework/Scenes/SceneGraph.cs
| * | Improve consistency of locking for SOG.m_parts in order to avoid race ↵Justin Clark-Casey (justincc)2010-08-261-45/+66
| | | | | | | | | | | | conditions in linking and unlinking
* | | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-251-0/+36
|\ \ \ | | |/ | |/|
| * | Make scene object directories more robust and prevent deleted SOP's fromMelanie Thielker2010-08-251-17/+29
| |/ | | | | | | sticking around
| * Split out actual scene object insertion code from Scene.Inventory.RezObject ↵Justin Clark-Casey (justincc)2010-08-241-0/+36
| | | | | | | | | | | | | | | | and move into SceneGraph.AddNewSceneObject() The new SceneGraph method is more consumable by region modules that want to extract objects from inventory and add them to the scene in separate stages. This change also reduces the number of redundant client updates scheduled when an object is rezzed directly by a script or region module This code does not touch direct rez by a user
* | Change object cleanup again. Make scene object directories more robust andMelanie Thielker2010-08-251-17/+29
| | | | | | | | prevent deleted SOP's from sticking around
* | Fix minimap issues. This addresses mantis #228.meta72010-08-081-21/+2
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-08-071-1/+6
|\ \ | |/
| * Add new SceneGraphTests class. Add simple TestDuplicateObject()Justin Clark-Casey (justincc)2010-08-071-1/+1
| |
| * minor: a few miscellaneous commentsJustin Clark-Casey (justincc)2010-08-071-0/+5
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-07-311-5/+0
|\ \ | |/
| * remove unused BasicQuadTreeNodeJustin Clark-Casey (justincc)2010-07-301-5/+0
| |
| * Remove AgentID and GroupOD from the signature of SOG.Copy(). They were neverMelanie Thielker2010-06-281-1/+1
| | | | | | | | used, but made for a very mispleading read of the code in the callers.
| * Fix Copy on Ray, Drag Copy and other little things. Removed the wrong andMelanie Thielker2010-06-281-1/+1
| | | | | | | | | | | | | | nonworking ownership assignment in SOG, which messed things up before. No longer trust the client to send the ID of the person something is copied as, since it allows to run a script with someone else's permissions. Properly adjust inventory ownership and perms.
| * Make drag copy and copy-on-ray handle friends list perms properlyMelanie Thielker2010-06-271-0/+22
| |
* | Allow megaregions to be used in M7, should we so decideMelanie Thielker2010-07-211-22/+25
| |
* | Remove AgentID and GroupOD from the signature of SOG.Copy(). They were neverMelanie Thielker2010-06-281-1/+1
| | | | | | | | used, but made for a very mispleading read of the code in the callers.
* | Fix Copy on Ray, Drag Copy and other little things. Removed the wrong andMelanie Thielker2010-06-281-1/+1
| | | | | | | | | | | | | | nonworking ownership assignment in SOG, which messed things up before. No longer trust the client to send the ID of the person something is copied as, since it allows to run a script with someone else's permissions. Properly adjust inventory ownership and perms.
* | Make drag copy and copy-on-ray handle friends list perms properlyMelanie Thielker2010-06-271-0/+22
| |
* | Add new event: OnChangedBackupTom Grimshaw2010-06-251-0/+11
| |
* | Merge branch 'careminster-presence-refactor' of ↵Tom Grimshaw2010-06-251-6/+7
|\ \ | | | | | | | | | ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor