-
Notifications
You must be signed in to change notification settings - Fork 203
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-287 - Setup preference section #3343
Conversation
* New MEL file "mayaUsd_preferenceTab.mel" containing the USD preference dialog code. Added when mayaUsdPlugin is loaded. * Removed "saving usd files" options from LayerEditor and move them to USD preferences. * New optionVar for Image relative. * For LE bulk saveas, set the initial state of relative checkboxes from optionVars. * In LE fixed initial dialog size.
register("kdotusdFileFormat", ".usd File Format:"); | ||
register("kAscii", "ASCII"); | ||
register("kBinary", "Binary"); | ||
register("kSaveLayerUsdFileFormatAnn", "Select whether the .usd file is written out in binary or ASCII. You can save a file in .usdc (binary) or .usda (ASCII) format. Manually entering a file name with an extension overrides the selection in this preference."); |
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.
I suppose this comes Anisha, but to me it reads better if "You can save" is replaced with "You can also save", otherwise I feel there is a missing continuity between the two sentences.
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.
I assume that it did initially come from Anisha. These particular strings were just moved here from the LayerEditor string resources. So they are not new strings.
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 to me
EMSUSD-287 - USD preference section