-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Insert Gizmos config instead of Init #11580
Conversation
Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
Having both the group and config in the same method does have the downside that if a plugin wanted to configure just one of them (like my PhysicsDebugPlugin
that sets the default GizmoConfig
), it'd overwrite the other one too, but this is probably acceptable and circumventable.
Having two separate methods with similar names like my original proposal would perhaps be more confusing, so I like keeping the API minimal like this.
# Objective - Fixes bevyengine#11569 ## Solution - Add new methods to the Ext Trait --- ## Changelog ### Added - Added new methods to the trait `AppGizmoBuilder` --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
Objective
Solution
Changelog
Added
AppGizmoBuilder