| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
15sec before closing the agent. This seems to be working fairly well. The viewer seems to have an 8 sec delay between UseCircuitCode and CompleteMovement.
Also added back the position on UpdateAgent, because it's needed for TPing between neighboring regions.
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| | |
what looks like a very significant reducing in GUN occurrances
|
| |\ |
|
| | |
| | |
| | |
| | | |
than it should have been (though internal use was correct)
|
| | |
| | |
| | |
| | | |
(Note: different from the defunct see_into_neighboring_sim, which used to control the process from the other end). This enables child agents in neighbors for which the root agent doesn't have permission to be in.
|
| |/
|/|
| |
| | |
nerves that it takes so long to let go of old info.
|
| | |
|
| | |
|
| |
| |
| |
| | |
folder. The viewer doesn't like that.
|
| | |
|
|/ |
|
| |
|
|
|
|
|
| |
Reduce object density by factor of 100 to bring physical mass computations
into a range better suited for Bullet.
|
|
|
|
|
|
|
|
| |
properties for""
Found that the vehicle movement problem was not caused by these physics changes.
This reverts commit 84d0699761b8da546f9faef084240d7b15f16321.
|
|
|
|
|
|
|
|
| |
BSPrimLinkable""
Found that the vehicle movement problem was not caused by these physics changes.
This reverts commit 7b187deb19517aa7c880458894643a5448566a94.
|
|
|
|
|
|
|
|
| |
enabled.""
Found that the vehicle movement problem was not caused by these physics changes.
This reverts commit 5f7b2ea81b95a60e882bc65b663a2c9fe134f92a.
|
|
|
|
|
|
|
|
| |
BSPrimLinkable""
Found that the vehicle movement problem was not caused by these physics changes.
This reverts commit c45659863d8821a48a32e5b687c7b2a6d90b0300.
|
|
|
|
|
|
|
|
| |
on both""
Found that the vehicle movement problem was not caused by these physics changes.
This reverts commit 89857378ce79f93a265bc1eb151e17742032abfa.
|
|
|
|
|
|
| |
Found that the vehicle movement problem was not caused by these physics changes.
This reverts commit 44543ebe638f391fc1c7ff532fe4470006dec55a.
|
|
|
|
|
|
| |
well as the average.
This is somewhat cryptic at the moment, need to improve documentation.
|
| |
|
|
|
|
|
|
| |
waiting to be processed at the second stage (after initial UDP processing)
If this consistently increases then this is a problem since it means the simulator is receiving more requests than it can distribute to other parts of the code.
|
|
|
|
| |
packets sent by a region per second
|
| |
|
|
|
|
|
|
|
|
| |
taking on the initial processing of a UDP packet.
If we're not receiving packets with multiple threads (m_asyncPacketHandling) then this is critical since it will limit the number of incoming UDP requests that the region can handle and affects packet loss.
If m_asyncPacketHandling then this is less critical though a long process will increase the scope for threads to race.
This is an experimental stat which may be changed.
|
|
|
|
|
|
| |
AgentUpdate packet. This fixes the problem with vehicles not moving forward
after the first up-arrow.
Code to fix a potential exception when using different IClientAPIs.
|
|
|
|
|
|
| |
The changes don't seem to be ready for prime time.
This reverts commit 803632f8f32d91bb4aec678d8b45a8430c2703e1.
|
|
|
|
|
|
| |
The changes don't seem to be ready for prime time.
This reverts commit 13a4a80b3893af13ab748c177b731fed813974ca.
|
|
|
|
|
|
| |
The changes don't seem to be ready for prime time.
This reverts commit b4c3a791aa55390bff071b3fe4bbe70c1d252703.
|
|
|
|
|
|
| |
The changes don't seem to be ready for prime time.
This reverts commit acb7b4a09ad564d1dfae3ad12adbb593ca3942c9.
|
|
|
|
|
|
| |
The changes don't seem to be ready for prime time.
This reverts commit d0d654e2186c8b81c1150da89a549e4f7162a2b4.
|
|
|
|
|
|
| |
The changes don't seem to be ready for prime time.
This reverts commit b44f0e1a00eba7f76401692322e48a3b23a81164.
|
|
|
|
|
|
| |
whole linkset.
Override physical property setting for BSLinksetCompound as there are
not children to the compound spape.
|
|
|
|
|
| |
and start changing the logic to handle the base prim as a complex
object (ie, a linkset).
|
| |
|
|
|
|
|
|
|
|
|
|
| |
into the linkset implementation classes.
Add HasSomeCollision attribute that remembers of any component of
a linkset has a collision.
Update vehicle code (BSDynamic) to use the HasSomeCollision in place of
IsColliding to make constraint based linksets properly notice the ground.
Add linkset functions to change physical attributes of all the members
of a linkset.
|
|
|
|
| |
PhysicsScene and PhysicsActor.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
the equation. (head rotation was the problematic one)
|
|
|
|
| |
lkalif for telling me how to route the information. The viewer effect is under the distance filter, so only avatars with cameras < 10m away see the beams.
|
|
|
|
| |
is generating the effect and the cameras of the observers. In particular, this applies to LookAt (which is really verbose and occurs every time users move the mouse) and Beam (which doesn't occur that often, but that can be extremely noisy (10.sec) when it happens)
|
| |
|
|
|
|
|
|
| |
- The existing event to scene has been split into 2: OnAgentUpdate and OnAgentCameraUpdate, to better reflect the two types of updates that the viewer sends. We can run one without the other, which is what happens when the avie is still but the user is camming around
- Added thresholds (as opposed to equality) to determine whether the update is significant or not. I thin these thresholds are ok, but we can play with them later
- Ignore updates of HeadRotation, which were problematic and aren't being used up stream
|