-
Notifications
You must be signed in to change notification settings - Fork 202
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
EMSUSD-968 shorter nice names #4029
Conversation
2af7691
to
7ddc905
Compare
- Ui Nodegraph Node -> Ui Example: Ui Nodegraph Node Pos -> Pos Justification: the section is already titled Node Graph Node - Translate Rotate Pivot -> Rotate Pivot Translate Scale Pivot -> Scale Pivot Example: Translate Scale Pivot -> Scale Pivot Justification: pivot are always translations, no need to say it, it is implicit in being a pivot. - Translate Rotate Pivot Translate -> Pivot Rotate Translate Translate Scale Pivot Translate -> Pivot Scale Translate Example: Translate Scale Pivot Translate -> Scale Pivot Translate Justification: follow what is done for the pivot.
7ddc905
to
a4069c8
Compare
@@ -216,6 +216,9 @@ std::string prettifyName(const std::string& name) | |||
{ "usd", "USD" }, | |||
{ "mtlx", "MaterialX" }, | |||
{ "lookdevx", "LookdevX" }, | |||
{ "Ui Nodegraph Node", "Ui" }, | |||
{ "Translate Scale Pivot", "Scale Pivot" }, | |||
{ "Translate Rotate Pivot", "Rotate Pivot" }, |
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.
Wouldn't the compensation ones still have a very long name and get trimmed?
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.
No, it gets fixed by the same replacement as the pivot one. I tested it manually to be sure :)
Example: Ui Nodegraph Node Pos -> Ui Pos
Justification: the section is already titled Node Graph Node
Example: Translate Scale Pivot -> Scale Pivot
Justification: pivot are always translations, no need to say it, it is implicit in being a pivot.
Example: Translate Scale Pivot Translate -> Scale Pivot Translate