#include <ModuleDestructible.h>
Public Attributes | |
const PxVec3 * | positions |
uint32_t | positionCount |
const PxVec3 * | velocities |
uint32_t | velocityCount |
Particle buffer data returned with UserChunkParticleReport
The array length of the positions buffer.
const PxVec3* nvidia::apex::ChunkParticleReportData::positions |
Position buffer. The length of this buffer is given by positionCount.
const PxVec3* nvidia::apex::ChunkParticleReportData::velocities |
Velocity buffer. The length of this buffer is given by velocityCount. N.B.: The velocity buffer might not have the same length as the positions buffer. It will be one of three lengths: velocityCount = 0: There is no velocity data with these particles. velocityCount = 1: All of the particle velocities are the same, given by *velocities. velocityCount = positionCount: Each particle velocity is given.
The array length of the velocities buffer. (See the description above.)