Releases: EmbarkStudios/physx-rs
Releases Β· EmbarkStudios/physx-rs
Release physx-sys-0.11.1
Fixed
- PR#193 fixed an issue where
physx-sys
would be needlessly recompiled due to an incorrect filepath.
physx-v0.18.0
Changed
- PR#191 replaced
PxCooking
with regular functions asPxCooking
is deprecated in the C++ code.PxCooking::create_bvh
->physx::cooking::create_bvh
PxCooking::create_convex_mesh
->physx::cooking::create_convex_mesh
PxCooking::validate_convex_mesh
->physx::cooking::validate_convex_mesh
PxCooking::create_height_field
->physx::cooking::create_height_field
PxCooking::create_triangle_mesh
->physx::cooking::create_triangle_mesh
PxCooking::validate_triangle_mesh
->physx::cooking::validate_triangle_mesh
physx-v0.17.0
physx-sys-v0.11.0
Changed
- PR#191 resolved #187 by replacing the deprecated
PxCooking
class with the non-deprecated free functions that implement the same functionality.phys_PxCreateCooking
-> removedPxCooking_cookBVH
->phys_PxCookBVH
PxCooking_createBVH
->phys_PxCreateBVH
PxCooking_cookConvexMesh
->phys_PxCookConvexMesh
PxCooking_createConvexMesh
->phys_PxCreateConvexMesh
PxCooking_validateConvexMesh
->phys_PxValidateConvexMesh
PxCooking_cookHeightField
->phys_PxCookHeightField
PxCooking_cookTriangleMesh
->phys_PxCookTriangleMesh
PxCooking_createTriangleMesh
->phys_PxCreateTriangleMesh
PxCooking_validateTriangleMesh
->phys_PxValidateTriangleMesh
PxCooking*
-> removed