aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/BulletSPlugin/BSActorAvatarMove.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Major renaming of Physics dlls / folders. No functional changes, just renames.Diva Canto2015-08-301-457/+0
|
* BulletSim: update the motion actors so they completely clean themselvesRobert Adams2015-08-091-2/+1
| | | | | | | when Dispose() is called. This reduces chance of object leakage when destroying objects. Rearrange initialization and shut down of BSActorLockAxis so it is consistant with other actors.
* BulletSim: fix line ending problems.Robert Adams2015-01-071-1/+1
|
* BulletSim: tweek step parameters and logic to make walking up stepsRobert Adams2015-01-071-8/+18
| | | | | | | closer to SL. This change should address small floor edges acting like walls, approaching a step at any angle (other than walking backwards) will allow walking up, and reducing the avatar pop-up when going up stairs.
* Somewhat improve avatar region crossings by properly preserving velocity ↵Justin Clark-Casey (justincc)2014-11-291-0/+5
| | | | | | | | | when avatar enters the new region. This commit addresses the following issues were causing velocity to be set to 0 on the new region, disrupting flight in particular * Full avatar updates contained no velocity information, which does appear to have some effect in testing. * BulletSim was always setting the velocity to 0 for the new BSCharacter. Now, physics engines take a velocity parameter when setting up characters so we can avoid this. This patch applies to both Bullet and ODE.
* Bulletsim: Create AvatarTerminalVelocity to BulletSim like what ODE and SL ↵Vegaslon2014-06-271-2/+22
| | | | has. Before this falling from really high caused the avatar to fall faster then the veiwer can handle and cause camera issues.
* BulletSim: more tweeks to AliciaRaven's flying mods. Added parametersRobert Adams2014-06-181-11/+12
| | | | | | | AvatarFlyingGroundMargin and AvatarFlyingGroundUpForce set to 5.0 and 2.0 respectively which seems to give about the same action as in SL. Also moved force addition to before the velocity to force computation so the upward velocity is properly applied to the avatar mass.
* Fix previous commit to ignore water height and allow flying underwater ↵AliciaRaven2014-06-171-16/+1
| | | | | | (swimming) Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* Add upward force to flight when close to the ground. Prevents current belly ↵AliciaRaven2014-06-171-0/+26
| | | | | | flop to the floor when flying with bullet physics and acts more like ODE and SL flight. Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
* BulletSim: adjust avatar step up parameters to better walk up smallRobert Adams2014-05-171-2/+2
| | | | | staircases. This change is required because of the change in the avatar default shape from the capsule to the rectangle.
* BulletSim: reduce avatar walking stopped threshold.Robert Adams2013-09-201-0/+1
| | | | | | Add parameter for setting the walking stopped threshold. This fixes the slight jump when an avatar stops walking.
* BulletSim: zero velocity when avatar not moving.Robert Adams2013-09-201-0/+1
| | | | | This fixes a movement jitter that happens when an avatar is standing on a tilted surface.
* BulletSim: add ID parameter to TaintedObject calls so logging will include ↵Robert Adams2013-09-111-1/+1
| | | | LocalID of object which created the taint.
* BulletSim: include check for volume detect in check for zeroing avatar motion.Robert Adams2013-08-141-1/+1
| | | | | | | Normally, avatar motion is zeroed if colliding with a stationary object so they don't slide down hills and such. Without volume detect check this also allowed avatars to stand on volume detect objects and to have some jiggling when they were in the volume detect object. This commit fixes both.
* BulletSim: add physical object initialized flag so updates and collisionsRobert Adams2013-08-141-1/+3
| | | | | | | | | don't happen until the object is completely initialized. This fixes the problem of doing a teleport while the simulator is running. The destruction of the physical object while the engine is running means that the physics parameter update would overwrite the new position of the newly created avatar.
* BulletSim: add check in avatar stair step code to verify the collisionRobert Adams2013-08-121-13/+20
| | | | | | | | is not with a volume detect object. This fixes a problem of avatars trying to step over a volume detect object that they collide with. This appeared as the avatar popping up as it started to step up but then continuing on since the object wasn't physically interacting.
* BulletSim: add position resetting for stationary avatars so they don'tRobert Adams2013-07-181-1/+16
| | | | | | move around when standing on a stationary object. Create proper linkage between BSCharacter and its actor by generating a UpdatedProperties event the same way BSPrim does.
* BulletSim: rework velocity updating when not colliding and not flyingRobert Adams2013-06-201-5/+39
| | | | | | | to prevent infinite jumps. Now jumps last only AvatarJumpFrames long (default 4) which is about as high as in SL. TODO: jumping should only depend on standing (collision with feet) rather than collision anywhere on the avatar.
* BulletSim: remove friction calcuation from BSMotor and move linear andRobert Adams2013-05-061-1/+0
| | | | | | | angular friction computation into linear and angular movement code. The friction wasn't being applied properly. This will make it so vehicles don't drift as much and the drift is tunable by changing the friction timescales.
* BulletSim: remove trailing white space to make git happier. No functional ↵Robert Adams2013-04-291-1/+1
| | | | changes.
* BulletSim: massive refactor of shape classes. Removed shape specific code ↵Robert Adams2013-04-291-2/+2
| | | | from BSShapeCollection. Using BSShape* classes to hold references to shape. Simplified shape dependency callbacks. Remove 'PreferredShape' methods and have each class specify shape type. Disable compound shape linkset for a later commit that will simplify linkset implementation.
* BulletSim: improve avatar stair walking up. Add more parameters to control forceRobert Adams2013-04-231-18/+85
| | | | | of both position change and up force that move avatars over barrier. Default parameters are for steps up to 0.5m in height.
* BulletSim: clean up actor code so routines use the same coding pattern.Robert Adams2013-04-081-12/+10
| | | | Fix a few enabling problems.
* BulletSim: complete movement of physical object action code out of theRobert Adams2013-04-081-0/+287
physical object and into actors for setForce, setTorque, hover, lock axis and avatar move.