From ff08a5ef07471d6258e8e41fc751e6cd6f7de24e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lynn=20B=C3=BCttgenbach?= <62256001+lynn-lumen@users.noreply.github.com> Date: Wed, 9 Jul 2025 18:56:15 +0200 Subject: [PATCH] Add release notes --- .../migration-guides/extendable_gizmos_primitives.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 release-content/migration-guides/extendable_gizmos_primitives.md 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