Skip to content
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-956: Resource Identifier warning on first launch of MayaUSD #3561

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion plugin/adsk/scripts/mayaUSDRegisterStrings.mel
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ global proc mayaUSDRegisterStrings()
register("kTimeAnn", "Edits the current time value of a stage, which corresponds to the animation frame drawn in the viewport. By default, this value connects to Maya's global time node.");
register("kTipYouCanChooseMultipleFiles", "<b>Tip:</b> You can choose multiple files.");
register("kUniversalSceneDescription", "Universal Scene Description");
register("kUsdStage", "Stage");
register("kUsdOptionsFrameLabel", "Universal Scene Description (USD) Options");
register("kSaveOption2GBWarning", "<b>Important</b>: per layer, any data exceeding the limit of 2GB will not be saved.");

Expand Down
2 changes: 1 addition & 1 deletion plugin/adsk/scripts/mayaUsd_createStageFromFile.mel
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ global proc string stageFromFile_UISetup(string $parent)

// Then add the stage from file specific section.
setParent $layout;
$title = `getMayaUsdString("kUsdStage")`;
$title = `getMayaUsdString("kLabelStage")`;
$frame = `frameLayout -label $title -collapsable false`;
checkBoxGrp -l `getMayaUsdString("kLoadPayloads")`
-ann `getMayaUsdString("kLoadPayloadsAnn")`
Expand Down