Physx Rs Versions Save

🎳 Rust binding for NVIDIA PhysX 🦀

physx-sys-v0.11.1

1 year ago

Fixed

  • PR#193 fixed an issue where physx-sys would be needlessly recompiled due to an incorrect filepath.

physx-v0.18.0

1 year ago

Changed

  • PR#191 replaced PxCooking with regular functions as PxCooking 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-sys-v0.11.0

1 year ago

Changed

  • PR#191 resolved #187 by replacing the deprecated PxCooking class with the non-deprecated free functions that implement the same functionality.
    • phys_PxCreateCooking -> removed
    • PxCooking_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

physx-v0.17.0

1 year ago

Changed

  • PR#183 resolved #175 by upgrading from PhysX 4.1 to PhysX 5.1.3. See the physx migration guide for more information for updating your code to work with this big breaking change.

physx-sys-v0.10.0

1 year ago

Changed

  • PR#183 resolved #175 by upgrading from PhysX 4.1 to PhysX 5.1.3. See the physx-sys migration guide for more information for updating your code to work with this big breaking change.