aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'careminster-presence-refactor' of ↵sacha2010-08-071-0/+1
|\ | | | | | | ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
| * Add a CHANGED_POSITION event so scripts don't have to run expensive loops to ↵Tom2010-08-071-0/+1
| | | | | | | | check for position changes
* | and another endless debug cleaningsacha2010-08-071-3/+3
|/
* Merge branch 'master' into careminster-presence-refactorMelanie2010-08-061-0/+2
|\
| * add userExposed parameter to part copy eventJustin Clark-Casey (justincc)2010-07-281-0/+1
| |
| * Add EventManager.OnSceneObjectPreSave() for future use. This is triggered ↵Justin Clark-Casey (justincc)2010-07-261-0/+1
| | | | | | | | immediately before a copy of the group is persisted to storage
* | Make sure the avatar position gets moved along with a prim it is sitting on. ↵Tom2010-08-061-2/+11
| | | | | | | | This fixes mantis #208 and (maybe) issues with chat and sound coming from the wrong place when sat on a vehicle.
* | Eat a lockign exception that kills scripts. May bear more investigationMelanie Thielker2010-07-251-2/+11
| | | | | | | | in the long run.
* | Merge branch 'careminster-presence-refactor' of ↵Melanie Thielker2010-07-211-1/+1
|\ \ | | | | | | | | | ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
| * \ Merge branch 'master' into careminster-presence-refactorMelanie2010-07-211-1/+1
| |\ \ | | |/
| | * Allow Megaregions to start properly after an unclean shutdownMelanie2010-07-201-1/+1
| | |
| | * Remove AgentID and GroupOD from the signature of SOG.Copy(). They were neverMelanie Thielker2010-06-281-3/+3
| | | | | | | | | | | | 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-16/+2
| | | | | | | | | | | | | | | | | | | | | 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.
* | | Refine autoreturn a bitMelanie Thielker2010-07-211-1/+4
|/ /
* | Bail out in AttachToBackup if the group is an attachmentTom Grimshaw2010-07-131-0/+1
| |
* | Undo fix is now complete. This commit repairs the special case of the root ↵Tom Grimshaw2010-07-051-11/+38
| | | | | | | | prim moving or rotating independently of the rest of the group.
* | Fix single prim rotation undo. All UNDO functions are now working correctly ↵Tom Grimshaw2010-07-041-1/+1
| | | | | | | | except for when the root prim is moved or rotated as a single prim (coming soon).
* | The majority of the Undo fix. There is still an issue with Rotation which ↵Tom Grimshaw2010-07-041-19/+19
| | | | | | | | i'll address next; however position undo and scale undo should be working just fine now. Also removed some residual debug logging.
* | Fix Undo! Made a lot of changes to Undo state saving; it now considers that ↵Tom Grimshaw2010-07-031-11/+28
| | | | | | | | groups of objects can be moved and not just individual prims..
* | Remove AgentID and GroupOD from the signature of SOG.Copy(). They were neverMelanie Thielker2010-06-281-3/+3
| | | | | | | | 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-16/+2
| | | | | | | | | | | | | | 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.
* | Add new event: OnChangedBackupTom Grimshaw2010-06-251-0/+4
| |
* | Add two events: OnAttachToBackup and OnDetachFromBackup.Tom Grimshaw2010-06-251-0/+4
| |
* | Allow moving an avatar as part of a linkset using llSetLinkPrimitiveParams. ↵Tom Grimshaw2010-06-191-2/+54
| | | | | | | | This unlocks an awful lot of poseball-free content, and is a step towards resolving mantis #59.
* | Revert "Introduce SOP.UpdateSitters() to update sitting avatars' chat ↵Melanie Thielker2010-06-141-9/+0
| | | | | | | | | | | | position if" This reverts commit f59e272643a92b20e7f7eb97f54a30c8b045725d.
* | Introduce SOP.UpdateSitters() to update sitting avatars' chat position ifMelanie Thielker2010-06-131-0/+9
| | | | | | | | needed
* | Get rid of spamming SOG debug messageTom Grimshaw2010-06-121-2/+2
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-06-091-0/+1
|\ \ | |/
| * Bug fix on attachments: attach->drop->attach works now.Diva Canto2010-06-091-0/+1
| |
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-06-081-1/+2
|\ \ | |/
| * Reduce number of full updates sent on region crossing for attachments/huds ↵Justin Clark-Casey (justincc)2010-06-081-1/+2
| | | | | | | | | | | | | | | | | | to 1 from 3 This is one step towards reducing hud glitches on region crossing, since the viewer fails to display prims if it receives child full updates before the root prim full update This commit also introduces a mechanism in LLClientView to stop child attachment updates ever going out before the root one This is a very temporary mechanism and will be commented out when the next step of the fix (to give root prims higher udpate priority) is committed This code is a foreport from the equivalent changes in 0.6.9-post-fixes
| * Fix prim returns I broke earlierMelanie Thielker2010-06-011-1/+1
| |
| * Split GetAxisAlignedBoundingBox into two methods to allow calculation ofMelanie Thielker2010-06-011-3/+20
| | | | | | | | combined bounding boxes and offsets
| * Fix create selection getting overwritten by multiple updates for the same prim.Melanie Thielker2010-05-311-1/+1
| |
* | Fix prim returns I broke earlierMelanie Thielker2010-06-011-1/+1
| |
* | Split GetAxisAlignedBoundingBox into two methods to allow calculation ofMelanie Thielker2010-06-011-2/+19
| | | | | | | | combined bounding boxes and offsets
* | Fix create selection getting overwritten by multiple updates for the same prim.Melanie Thielker2010-05-311-1/+1
| |
* | Implement suspended updates - When an operation is occurring on lots of ↵Tom Grimshaw2010-05-291-0/+17
| | | | | | | | prims in a single group, don't schedule any updates until the operation has completed. This makes things like llSetAlpha(LINK_SET,0.0,ALL_SIDES); a *lot* faster, more efficient and less buggy, and also makes unlinking a lot better. Linking is still treacherous.. this needs to be analysed.
* | Merge branch 'master' into careminster-presence-refactorMelanie2010-05-211-101/+2
|\ \ | |/
| * * Moving all of the prioritization/reprioritization code into a new file ↵John Hurliman2010-05-211-100/+1
| | | | | | | | | | | | | | Prioritizer.cs * Simplified the interest management code to make it easier to add new policies. Prioritization and reprioritization share code paths now * Improved the distance and front back policies to always give your avatar the highest priority
* | Kill some locks that have crept into SOGTom Grimshaw2010-05-121-2/+12
| |
* | Fix overlooked readLock which was left openTom Grimshaw2010-05-101-1/+2
| |
* | Adapt CM to the new CHANGED_OWNER handlingMelanie Thielker2010-05-031-0/+8
| |
* | Make scripted attachment states work. Finally. Also replace two monitor locksMelanie Thielker2010-04-251-1/+6
| | | | | | | | with RWLocks, hunting the 10^3 bug. Not successful, but needed to be done anyway
* | Remove debug output, the culprit has been identifiedMelanie Thielker2010-04-231-1/+0
| |
* | Fix a nullref in attachment handling. Add some debug to find the attachmentMelanie Thielker2010-04-231-0/+1
| | | | | | | | state issue
* | Merge branch 'careminster' into careminster-presence-refactorMelanie2010-04-131-4/+46
|\ \
| * | Fix up my own shoddy code! Fixes prim rez break. Whups!Thomas Grimshaw2010-04-051-22/+26
| | |
| * | Merge branch 'master' of ssh://TOR/var/git/careminsterThomas Grimshaw2010-04-051-7/+25
| |\ \
| | * | Fix some overlooked merge conflicts that got committedMelanie2010-04-051-10/+0
| | | |