| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
|
|
| |
current form
|
| |
|
|
|
|
| |
making it catch a little too much, in principle
|
| |
|
|
|
|
|
|
|
| |
* Send prim flags as booleans from LLClientView rather than in the native LL array
* Thanks idb
|
|
|
|
|
|
|
| |
* Was caused by the lack of a local id. Local ids are now given from the same sequence as prims, rather than a separate one
* I don't believe this will cause any problems, but please revert to a separate sequence if it does
|
| |
|
|
|
|
| |
the verb at the front
|
|
|
|
|
|
| |
* This was only reference by ScenePresence and not used anyway - Scene itself had it's own copy
|
| |
|
|
|
|
|
|
| |
* These are assigned when the object is attached to the scene
|
|
|
|
|
|
| |
* this is now done in AttachToScene()
|
|
|
|
| |
AttachToScene())
|
| |
|
|
|
|
|
|
|
| |
* Fix llSetStatus() and llSetPrimitiveParams()
* Thanks idb
|
|
|
|
|
|
| |
* remove a debug line I accidentally left in there
|
|
|
|
| |
scene
|
| |
|
| |
|
|
|
|
|
|
| |
Too many fixes to list.
|
|
|
|
| |
be done by other means
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Included patch fixes error: Z and W terms in the quaternion were
swapped (ZERO_ROTATION is <0,0,0,1>, it was checking for <0,0,1,0>).
There is an issue with older prims: it seems their default sit
target was not always set to ZERO_ROTATION;
|
|
|
|
|
|
| |
Improves ScenePresence.cs for attachments when crossing boundaries
between regions.
|
|
|
|
|
|
| |
base point for the sort is 128,128,128, causing funny visuals
|
|
|
|
|
|
|
|
|
|
| |
- fixes IRCBridgeModule's XmlRpc method really paying attention to
region parameter
- cleans up indentation in IRCBridge code
- fixes ConciergeModule exception on client logout
|
|
|
|
|
|
|
|
|
| |
fix issue 2512
- correct attachment offset; fix issue 2513
- thanks Thomas for the patches
|
|
|
|
|
|
|
| |
* Inserts proper animation state names into data/avataranimations.xml file so that llGetAnimation() works as one would expect.
* Thanks StrawberryFride!
|
|
|
|
|
|
| |
* Now I've had time to analyze this, the Second Life grid doesn't appear to send this to the client (which in principle should know what wearables it has already)
|
| |
|
|
|
|
|
|
|
|
|
| |
the setting of the name of the animation to be used when a avatar sits on that object. At some point in the future this should be persisted.
So basically simplifies what a lsl script that detects a avatar sitting on a prim, then stopping the sit animation and playing a custom animation, does.
Also added another ScenePresence.HandleAgentRequestSit() method , that accepts the name of the sit animation. So that modules can override the animation used, when they are doing a server controlled sit.
Started some work on making the stand pose be played as soon as a user logs into a region. Rather than them starting with their arms stretched. This still needs more work
|
|
|
|
|
|
| |
was cleared before using it to find the children.
|
|
|
|
|
|
| |
avatar is remote or offline.
|
|
|
|
|
| |
* Added additional error message when a Object/SOG DB save fails so we can trace why.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
on-/offline updates, calling cards for friends.
This adds methods in the DB layer and changes the MessagingServer, so a full
update (incl. UGAIM) is necessary to get it working. Older regions shouldn't
break, nor should older UGAIM break newer regions, but friends/presence will
only work with all concerned parts (UGAIM, source region and destination
region) at this revision (or later).
I added the DB code for MSSQL, too, but couldn't test that.
BEWARE: May contain bugs.
|
|
|
|
| |
SOP.IsAttachment
|
|
|
|
|
|
|
|
|
| |
false if the group is already deleted)
* This is to avoid repetitive null checks - I'm beginning to think that blasting away the root part on object deletion is actually a bad move. Perhaps we should leave it around
and let the client ignore any superfluous packets (which it may well do anyway), since we're constantly exposing a race condition
|
|
|
|
|
|
| |
* Don't save attachments on saving oar, which stops them coming back as ghost prims
|
|
|
|
|
|
|
|
|
|
| |
with the old Grid Instant Message over OGS1. Refactor the EventManager
to be independent of the rigid module structure design imposed by
the current implementation. Message routing is now done in the destination
module rather than in the event manager. This way, more or less granular
solutions are possible without core changes.
|
| |
|
|
|
|
|
|
|
|
|
| |
print this out to the log once
* This may help us detect if mysterious UDP disconnects are happening because of this.
* Shouldn't be any functional change but I would appreciate a buddy check from Teravus if he has time (as for all client stack changes)
|
|
|
|
|
|
|
| |
* Since the client sets the appearance in the first place (in response to receiving wearables information originally) this seems a little redundant
* But I've realized I didn't actually test this assumption, so I'm going to reinstate it for now
|
|
|
|
|
|
| |
* set debug scene name on scene registration, rather than within the Scene constructor
|
|
|
|
| |
get through after the malformed ones have been sent
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* And hopefully rebaking all the time should no longer be necessary now
* It turns out that when the client baked the texture, the uploaded asset had the Temporary flag to true (Temporary is actually deprecated).
* It also had the StoreLocal flag set to true, which signifies that the asset should be stored locally. If it disappears we should reply to the asset request with
ImageNotInDatabasePacket
* However, last time this was enabled some clients started crashing. This may well no longer be the case and needs to be tested, but in the mean time we will store
the asset instead.
* This needs to be resolved in a better way, possibly by starting to send the ImageNotInDatabase packet again instead
|