The physx tag has no wiki summary.
1
vote
0answers
16 views
PhysX - Revolute joint around unit vector
I'm using a right-handed coordinate system with (0,0,-1) = forward, (1,0,0) = right and (0,1,0) = up. PhysX version is 3.3.0.
I have a unit vector which represents the axis around which my actor is ...
0
votes
0answers
13 views
NxDestructibleChunkEvent gives a chunk index which is not valid
// Try to acquire event buffer
const physx::NxDestructibleChunkEvent* EventBuffer = NULL;
physx::PxU32 EventBufferSize = 0;
bool acquired = mDestructibleActor->acquireChunkEventBuffer(EventBuffer, ...
1
vote
0answers
20 views
What are the parameters of APEX destructible asset / actor, and what are the effect of them?
There are parameters of the NxDestructibleAsset such as:
defaultBehaviorGroup.damageToRadius
destructibleParameters.fractureImpulseScale
p3BodyDescTemplate.density
structureSettings.useStressSolver
...
1
vote
1answer
95 views
How to make rigid bodies collide with Apex Clothing in PhysX for Maya
According to the [Apex] Clothing Overview section of the documentation:
Colliding with Rigid Bodies
Rigid bodies present in your scene will push clothing around roughly as you might expect.
...
0
votes
1answer
188 views
Using PhysX, how can I predict where I will need to generate procedural terrain collision shapes?
In this situation, I have terrain height values I generate procedurally. For rendering, I use the camera's position to generate an appropriate sized height map. For collision, however, I need to have ...
1
vote
1answer
85 views
Physx gravity not working as expected
We have been facing a strange issue with physx vehicles. The game behaves correctly in almost every situation: jumps, impacts, etc.
Gravity is applied correctly downward.
But when the vehicle is put ...
4
votes
1answer
136 views
What is the integrator used in PhysX?
What type of integrator is used in the PhysX engine? Euler? Runge-Kutta?
I tried to look through the comments in the SDK header and source files. But, could not find any information about this.
1
vote
1answer
185 views
How to set density for each shape in PhysX 3.1
I'm using PhysX 3.1 as my game's physics engine. One requirement is that I need set different density for each shape(there are server shapes for my single rigid actor). I know that the shape's ...
3
votes
1answer
203 views
Simulate 'Shock absorbtion' with tire rubber in PhysX (2.8.x)
This is a kinda tricky question and I fear there is no easy enough solution, but I figured I'd hit SE up before giving up on it and just doing what I can.
A machine I am working on has no suspension ...
1
vote
1answer
123 views
NxWheelShape Tilt with Vision(Havok) Engine and PhysX 2.8.x
A vehicle I am working on has front wheels that can tilt(lean) left and right as well as turn left and right. The turning was pretty easy, but there seems to be nothing on how to set a WheelShapes ...
2
votes
1answer
859 views
PhysX Capsule Character Controller floating above ground
I am using PhysX Version 3.0.2 in the simulation package I'm working on, and I've encountered some bizarre behavior with the capsule character controller.
When I set the controller's height and ...