-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Clarify immediate mode in Gizmos
documentation
#9183
Clarify immediate mode in Gizmos
documentation
#9183
Conversation
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.
This should be called every frame when the […] need to be rendered.
The 'when' suggests that these should be called specifically when rendering happens. So I'd remove the 'when' and add to the Gizmos
doc that it needs to happen before Last
.
@SpecificProtagonist Maybe "This should be called for each frame the […] need to be rendered."? Before the end of Last, or before a specific system in Last? |
Sure, that's fine too.
Before |
Co-authored-by: SpecificProtagonist <vincentjunge@posteo.net>
…", clarify linestrip, fix arc
Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
# Objective - Repeat in `Gizmos` that they are drawned in immediate mode, which is said at the module level but not here, and detail what it means. - Clarify for every method of `Gizmos` that they should be called for every frame. - Clarify which methods belong to 3D or 2D space (kinda obvious for 2D but still) The first time I used gizmos I didn't understand how they work and was confused as to why nothing showed up. --------- Co-authored-by: François <mockersf@gmail.com> Co-authored-by: SpecificProtagonist <vincentjunge@posteo.net> Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
Objective
Gizmos
that they are drawned in immediate mode, which is said at the module level but not here, and detail what it means.Gizmos
that they should be called for every frame.The first time I used gizmos I didn't understand how they work and was confused as to why nothing showed up.