-
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
MAYA-111407 - See mayaUsdProxyShape icon in the Node Editor #1425
MAYA-111407 - See mayaUsdProxyShape icon in the Node Editor #1425
Conversation
* Installed svg icon for use by NodeEditor.
install(FILES "mayaUsdProxyShape.svg" | ||
DESTINATION "${INSTALL_DIR_SUFFIX}/icons" | ||
) |
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 file (and the same one renamed to xxxBase below are used by the Node Editor for the swatch.
set(MAYAUSDPROXYSHAPE "mayaUsdProxyShape") | ||
install(FILES "out_${MAYAUSDPROXYSHAPE}_100.png" | ||
DESTINATION "${INSTALL_DIR_SUFFIX}/icons" | ||
RENAME "out_${MAYAUSDPROXYSHAPE}Base.png" | ||
) | ||
install(FILES "out_${MAYAUSDPROXYSHAPE}_150.png" | ||
DESTINATION "${INSTALL_DIR_SUFFIX}/icons" | ||
RENAME "out_${MAYAUSDPROXYSHAPE}Base_150.png" | ||
) | ||
install(FILES "out_${MAYAUSDPROXYSHAPE}_200.png" | ||
DESTINATION "${INSTALL_DIR_SUFFIX}/icons" | ||
RENAME "out_${MAYAUSDPROXYSHAPE}Base_200.png" | ||
) |
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.
Install the same file (for the base) used in the Outliner.
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.
MAYA-111407 - See mayaUsdProxyShape icon in the Node Editor