diff --git a/release-content/migration-guides/extendable_gizmos_primitives.md b/release-content/migration-guides/extendable_gizmos_primitives.md new file mode 100644 index 0000000000..d318f7fa63 --- /dev/null +++ b/release-content/migration-guides/extendable_gizmos_primitives.md @@ -0,0 +1,10 @@ +--- +title: Extendable Gizmo-Primitives +authors: ["@lynn-lumen"] +pull_requests: [20049] +--- + +The `GizmoPrimitive3d` trait, which is used to draw primitives using gizmos can now be implemented for custom primitives. +If you did not declare any such primitives, you may need to remove this trait as it will now be unused. + +If you did implement `GizmoPrimitive3d` for a custom `GizmoBuffer`-like struct, you will need to move your implementation for custom primitives to the primitive itself and use that implementation in a seperate method on the previously mentioned struct. \ No newline at end of file