You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So at the end, the old Capsule from bevy_render::mesh::shape is totally different from Capsule3d. I don't think the deprecation warning is enough. Maybe should we explicit add something like bellow?
bevy_render::mesh::Capsule is deprecated use bevy_math::primitives::dim3::Capsule3d instead;
bevy_render::mesh::Cylinder is deprecated use bevy_math::primitives::dim3::Cylinder instead;
bevy_render::mesh::Icosphere is deprecated use bevy_math::primitives::dim3::Sphere instead;
..etc
The text was updated successfully, but these errors were encountered:
Capsule
Capsule2d
primitive bevy#11585 RenamedCapsule
toCapsule3d
bevy_render::mesh::shape
bevy#11773 Deprecated all shapes inbevy_render::mesh::shape
So at the end, the old
Capsule
frombevy_render::mesh::shape
is totally different fromCapsule3d
. I don't think the deprecation warning is enough. Maybe should we explicit add something like bellow?bevy_render::mesh::Capsule
is deprecated usebevy_math::primitives::dim3::Capsule3d
instead;bevy_render::mesh::Cylinder
is deprecated usebevy_math::primitives::dim3::Cylinder
instead;bevy_render::mesh::Icosphere
is deprecated usebevy_math::primitives::dim3::Sphere
instead;..etc
The text was updated successfully, but these errors were encountered: