├── .clang-format ├── .clang-format-ignore ├── .clang-format-include ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build-issue-report.md │ └── feature_request.md ├── run-clang-format.py └── workflows │ ├── maya-usd-new-issues.yml │ └── maya-usd-preflight-launcher.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── README.md ├── README_DOC.md ├── SECURITY.md ├── cmake ├── compiler_config.cmake ├── googletest.cmake ├── googletest_download.txt.in ├── googletest_src.txt.in ├── gulrak.cmake ├── jinja.cmake ├── mayausd_version.info ├── mayausdapi_version.info ├── modules │ ├── FindAR.cmake │ ├── FindAdskUsdComponentCreator.cmake │ ├── FindLookdevXUfe.cmake │ ├── FindMaya.cmake │ ├── FindMaya_Qt.cmake │ ├── FindUFE.cmake │ └── FindUSD.cmake ├── python.cmake ├── test.cmake ├── usd.cmake └── utils.cmake ├── cxx17_legacy_support.h ├── doc ├── AL_CONTRIBUTORS.md ├── CHANGELOG.md ├── CLA │ ├── AutodeskFormCorpContribAgmtForOpenSource.pdf │ └── AutodeskFormIndContribAgmtForOpenSource.pdf ├── CONTRIBUTING.md ├── EditRouting.md ├── LICENSE.md ├── LayerLocking.md ├── MaterialX.md ├── MayaStandardSurfaceSampler.JPG ├── MayaToHydra.md ├── USDMaterialXStandardSurfaceSampler.JPG ├── UsdTransformsStack.md ├── UsdTransformsStack.pdf ├── build.md ├── codingGuidelines.md └── images │ ├── al.png │ ├── header.jpg │ ├── header.png │ ├── layerlocking │ ├── LayerEditor_LockLayerActionButton.png │ ├── LayerEditor_LockLayerActionButton_Locked.png │ ├── LayerEditor_LockLayerActionButton_SystemLocked.png │ ├── LayerEditor_LockLayerActionButton_SystemLocked_modified.png │ ├── LayerEditor_LockLayerMenuItems.png │ └── LayerEditor_LockLayerMenuItems_SystemLock_Disabled.png │ ├── linux.png │ ├── mac.png │ ├── maya-usd.png │ ├── plugin_manager.png │ ├── pxr.png │ ├── ufe_commands.png │ └── windows.png ├── lib ├── CMakeLists.txt ├── lookdevXUsd │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Export.h │ ├── LookdevXUsd.cpp │ ├── LookdevXUsd.h │ ├── ProxyShapeLookdevHandler.cpp │ ├── ProxyShapeLookdevHandler.h │ ├── UsdCapabilityHandler.cpp │ ├── UsdCapabilityHandler.h │ ├── UsdClipboardHandler.cpp │ ├── UsdClipboardHandler.h │ ├── UsdComponentConnections.cpp │ ├── UsdComponentConnections.h │ ├── UsdConnectionCommands.cpp │ ├── UsdConnectionCommands.h │ ├── UsdDebugHandler.cpp │ ├── UsdDebugHandler.h │ ├── UsdDeleteCommand.cpp │ ├── UsdDeleteCommand.h │ ├── UsdExtendedAttributeHandler.cpp │ ├── UsdExtendedAttributeHandler.h │ ├── UsdExtendedConnectionHandler.cpp │ ├── UsdExtendedConnectionHandler.h │ ├── UsdFileHandler.cpp │ ├── UsdFileHandler.h │ ├── UsdHierarchy.cpp │ ├── UsdHierarchy.h │ ├── UsdHierarchyHandler.cpp │ ├── UsdHierarchyHandler.h │ ├── UsdLookdevHandler.cpp │ ├── UsdLookdevHandler.h │ ├── UsdMaterial.cpp │ ├── UsdMaterial.h │ ├── UsdMaterialCommands.cpp │ ├── UsdMaterialCommands.h │ ├── UsdMaterialHandler.cpp │ ├── UsdMaterialHandler.h │ ├── UsdMaterialValidator.cpp │ ├── UsdMaterialValidator.h │ ├── UsdSceneItemOps.cpp │ ├── UsdSceneItemOps.h │ ├── UsdSceneItemOpsHandler.cpp │ ├── UsdSceneItemOpsHandler.h │ ├── UsdSceneItemUI.cpp │ ├── UsdSceneItemUI.h │ ├── UsdSceneItemUIHandler.cpp │ ├── UsdSceneItemUIHandler.h │ ├── UsdSoloingHandler.cpp │ ├── UsdSoloingHandler.h │ ├── UsdUINodeGraphNode.cpp │ ├── UsdUINodeGraphNode.h │ ├── UsdUINodeGraphNodeHandler.cpp │ ├── UsdUINodeGraphNodeHandler.h │ ├── Utils.cpp │ └── Utils.h ├── mayaUsd │ ├── CMakeLists.txt │ ├── README.md │ ├── base │ │ ├── CMakeLists.txt │ │ ├── api.h │ │ ├── buildInfo.cpp │ │ ├── buildInfo.h.src │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── id.h │ │ ├── mayaUsd.h.src │ │ ├── syncId.h │ │ ├── tokens.cpp │ │ └── tokens.h │ ├── commands │ │ ├── CMakeLists.txt │ │ ├── PullPushCommands.cpp │ │ ├── PullPushCommands.h │ │ ├── Readme.md │ │ ├── abstractLayerEditorWindow.h │ │ ├── baseExportCommand.cpp │ │ ├── baseExportCommand.h │ │ ├── baseImportCommand.cpp │ │ ├── baseImportCommand.h │ │ ├── baseListJobContextsCommand.cpp │ │ ├── baseListJobContextsCommand.h │ │ ├── baseListShadingModesCommand.cpp │ │ ├── baseListShadingModesCommand.h │ │ ├── editTargetCommand.cpp │ │ ├── editTargetCommand.h │ │ ├── layerEditorCommand.cpp │ │ ├── layerEditorCommand.h │ │ ├── layerEditorWindowCommand.cpp │ │ ├── layerEditorWindowCommand.h │ │ ├── schemaCommand.cpp │ │ └── schemaCommand.h │ ├── fileio │ │ ├── CMakeLists.txt │ │ ├── chaser │ │ │ ├── CMakeLists.txt │ │ │ ├── exportChaser.cpp │ │ │ ├── exportChaser.h │ │ │ ├── exportChaserRegistry.cpp │ │ │ ├── exportChaserRegistry.h │ │ │ ├── importChaser.cpp │ │ │ ├── importChaser.h │ │ │ ├── importChaserRegistry.cpp │ │ │ └── importChaserRegistry.h │ │ ├── doc │ │ │ ├── How-to-add-new-option.md │ │ │ ├── Managing_export_options_via_JobContext_in_Python.md │ │ │ └── SchemaAPI_Import_Export_in_Python.md │ │ ├── fallbackPrimReader.cpp │ │ ├── fallbackPrimReader.h │ │ ├── fallbackPrimUpdater.cpp │ │ ├── fallbackPrimUpdater.h │ │ ├── flexibleSparseValueWriter.cpp │ │ ├── flexibleSparseValueWriter.h │ │ ├── functorPrimReader.cpp │ │ ├── functorPrimReader.h │ │ ├── functorPrimWriter.cpp │ │ ├── functorPrimWriter.h │ │ ├── importData.cpp │ │ ├── importData.h │ │ ├── instancedNodeWriter.cpp │ │ ├── instancedNodeWriter.h │ │ ├── jobContextRegistry.cpp │ │ ├── jobContextRegistry.h │ │ ├── jobs │ │ │ ├── CMakeLists.txt │ │ │ ├── jobArgs.cpp │ │ │ ├── jobArgs.h │ │ │ ├── meshDataReadJob.cpp │ │ │ ├── meshDataReadJob.h │ │ │ ├── modelKindProcessor.cpp │ │ │ ├── modelKindProcessor.h │ │ │ ├── readJob.cpp │ │ │ ├── readJob.h │ │ │ ├── writeJob.cpp │ │ │ └── writeJob.h │ │ ├── orphanedNodesManager.cpp │ │ ├── orphanedNodesManager.h │ │ ├── orphanedNodesManagerIO.cpp │ │ ├── primReader.cpp │ │ ├── primReader.h │ │ ├── primReaderArgs.cpp │ │ ├── primReaderArgs.h │ │ ├── primReaderContext.cpp │ │ ├── primReaderContext.h │ │ ├── primReaderRegistry.cpp │ │ ├── primReaderRegistry.h │ │ ├── primUpdater.cpp │ │ ├── primUpdater.h │ │ ├── primUpdaterArgs.cpp │ │ ├── primUpdaterArgs.h │ │ ├── primUpdaterContext.cpp │ │ ├── primUpdaterContext.h │ │ ├── primUpdaterManager.cpp │ │ ├── primUpdaterManager.h │ │ ├── primUpdaterRegistry.cpp │ │ ├── primUpdaterRegistry.h │ │ ├── primWriter.cpp │ │ ├── primWriter.h │ │ ├── primWriterArgs.cpp │ │ ├── primWriterArgs.h │ │ ├── primWriterContext.cpp │ │ ├── primWriterContext.h │ │ ├── primWriterRegistry.cpp │ │ ├── primWriterRegistry.h │ │ ├── pullInformation.cpp │ │ ├── pullInformation.h │ │ ├── registryHelper.cpp │ │ ├── registryHelper.h │ │ ├── schemaApiAdaptor.cpp │ │ ├── schemaApiAdaptor.h │ │ ├── schemaApiAdaptorRegistry.cpp │ │ ├── schemaApiAdaptorRegistry.h │ │ ├── shaderReader.cpp │ │ ├── shaderReader.h │ │ ├── shaderReaderRegistry.cpp │ │ ├── shaderReaderRegistry.h │ │ ├── shaderWriter.cpp │ │ ├── shaderWriter.h │ │ ├── shaderWriterRegistry.cpp │ │ ├── shaderWriterRegistry.h │ │ ├── shading │ │ │ ├── CMakeLists.txt │ │ │ ├── rfmShaderMap.h │ │ │ ├── shadingModeDisplayColor.cpp │ │ │ ├── shadingModeExporter.cpp │ │ │ ├── shadingModeExporter.h │ │ │ ├── shadingModeExporterContext.cpp │ │ │ ├── shadingModeExporterContext.h │ │ │ ├── shadingModeImporter.cpp │ │ │ ├── shadingModeImporter.h │ │ │ ├── shadingModePxrRis.cpp │ │ │ ├── shadingModeRegistry.cpp │ │ │ ├── shadingModeRegistry.h │ │ │ ├── shadingModeUseRegistry.cpp │ │ │ ├── symmetricShaderReader.cpp │ │ │ ├── symmetricShaderReader.h │ │ │ ├── symmetricShaderWriter.cpp │ │ │ └── symmetricShaderWriter.h │ │ ├── transformWriter.cpp │ │ ├── transformWriter.h │ │ ├── translators │ │ │ ├── CMakeLists.txt │ │ │ ├── skelBindingsProcessor.cpp │ │ │ ├── skelBindingsProcessor.h │ │ │ ├── translatorBlendShape.cpp │ │ │ ├── translatorBlendShape.h │ │ │ ├── translatorCamera.cpp │ │ │ ├── translatorCamera.h │ │ │ ├── translatorCurves.cpp │ │ │ ├── translatorCurves.h │ │ │ ├── translatorGprim.cpp │ │ │ ├── translatorGprim.h │ │ │ ├── translatorLight.cpp │ │ │ ├── translatorLight.h │ │ │ ├── translatorMaterial.cpp │ │ │ ├── translatorMaterial.h │ │ │ ├── translatorMayaReference.cpp │ │ │ ├── translatorMayaReference.h │ │ │ ├── translatorMesh.cpp │ │ │ ├── translatorMesh.h │ │ │ ├── translatorNurbsPatch.cpp │ │ │ ├── translatorNurbsPatch.h │ │ │ ├── translatorPrim.cpp │ │ │ ├── translatorPrim.h │ │ │ ├── translatorRfMLight.cpp │ │ │ ├── translatorRfMLight.h │ │ │ ├── translatorRfMLightDeprecated.cpp │ │ │ ├── translatorSkel.cpp │ │ │ ├── translatorSkel.h │ │ │ ├── translatorUtil.cpp │ │ │ ├── translatorUtil.h │ │ │ ├── translatorXformable.cpp │ │ │ ├── translatorXformable.h │ │ │ └── translatorXformableDecompose.cpp │ │ ├── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── adaptor.cpp │ │ │ ├── adaptor.h │ │ │ ├── jointWriteUtils.cpp │ │ │ ├── jointWriteUtils.h │ │ │ ├── meshReadUtils.cpp │ │ │ ├── meshReadUtils.h │ │ │ ├── meshWriteUtils.cpp │ │ │ ├── meshWriteUtils.h │ │ │ ├── orphanedNodesManagerUtil.cpp │ │ │ ├── orphanedNodesManagerUtil.h │ │ │ ├── proxyAccessorUtil.cpp │ │ │ ├── proxyAccessorUtil.h │ │ │ ├── readUtil.cpp │ │ │ ├── readUtil.h │ │ │ ├── roundTripUtil.cpp │ │ │ ├── roundTripUtil.h │ │ │ ├── shadingUtil.cpp │ │ │ ├── shadingUtil.h │ │ │ ├── splineUtils.h │ │ │ ├── userTaggedAttribute.cpp │ │ │ ├── userTaggedAttribute.h │ │ │ ├── writeUtil.cpp │ │ │ ├── writeUtil.h │ │ │ ├── xformStack.cpp │ │ │ └── xformStack.h │ │ ├── writeJobContext.cpp │ │ └── writeJobContext.h │ ├── listeners │ │ ├── CMakeLists.txt │ │ ├── notice.cpp │ │ ├── notice.h │ │ ├── proxyShapeNotice.cpp │ │ ├── proxyShapeNotice.h │ │ ├── stageNoticeListener.cpp │ │ └── stageNoticeListener.h │ ├── nodes │ │ ├── CMakeLists.txt │ │ ├── Layer_Saving_Docs.md │ │ ├── hdImagingShape.cpp │ │ ├── hdImagingShape.h │ │ ├── layerManager.cpp │ │ ├── layerManager.h │ │ ├── pointBasedDeformerNode.cpp │ │ ├── pointBasedDeformerNode.h │ │ ├── proxyAccessor.cpp │ │ ├── proxyAccessor.h │ │ ├── proxyAccessor.py │ │ ├── proxyShapeBase.cpp │ │ ├── proxyShapeBase.h │ │ ├── proxyShapeListenerBase.cpp │ │ ├── proxyShapeListenerBase.h │ │ ├── proxyShapePlugin.cpp │ │ ├── proxyShapePlugin.h │ │ ├── proxyShapeStageExtraData.cpp │ │ ├── proxyShapeStageExtraData.h │ │ ├── proxyStageProvider.h │ │ ├── stageData.cpp │ │ ├── stageData.h │ │ ├── stageNode.cpp │ │ ├── stageNode.h │ │ ├── usdPrimProvider.cpp │ │ └── usdPrimProvider.h │ ├── python │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── pythonObjectRegistry.cpp │ │ ├── pythonObjectRegistry.h │ │ ├── wrapAdaptor.cpp │ │ ├── wrapBlockSceneModificationContext.cpp │ │ ├── wrapColorSpace.cpp │ │ ├── wrapConverter.cpp │ │ ├── wrapCopyLayerPrims.cpp │ │ ├── wrapDiagnosticDelegate.cpp │ │ ├── wrapExportChaser.cpp │ │ ├── wrapImportChaser.cpp │ │ ├── wrapJobContextRegistry.cpp │ │ ├── wrapLayerLocking.cpp │ │ ├── wrapLoadRules.cpp │ │ ├── wrapMeshWriteUtils.cpp │ │ ├── wrapOpUndoItem.cpp │ │ ├── wrapOpenMaya.cpp │ │ ├── wrapPrimReader.cpp │ │ ├── wrapPrimUpdater.cpp │ │ ├── wrapPrimUpdaterManager.cpp │ │ ├── wrapPrimWriter.cpp │ │ ├── wrapQuery.cpp │ │ ├── wrapReadUtil.cpp │ │ ├── wrapRoundTripUtil.cpp │ │ ├── wrapSchemaApiAdaptor.cpp │ │ ├── wrapShadingMode.cpp │ │ ├── wrapShadingUtil.cpp │ │ ├── wrapSparseValueWriter.cpp │ │ ├── wrapSparseValueWriter.h │ │ ├── wrapStageCache.cpp │ │ ├── wrapTokens.cpp │ │ ├── wrapTranslatorUtil.cpp │ │ ├── wrapUsdUndoManager.cpp │ │ ├── wrapUserTaggedAttribute.cpp │ │ ├── wrapUtil.cpp │ │ ├── wrapWriteUtil.cpp │ │ └── wrapXformStack.cpp │ ├── render │ │ ├── CMakeLists.txt │ │ ├── MaterialXGenOgsXml │ │ │ ├── CMakeLists.txt │ │ │ ├── CombinedMaterialXVersion.h │ │ │ ├── GlslFragmentGenerator.cpp │ │ │ ├── GlslFragmentGenerator.h │ │ │ ├── GlslOcioNodeImpl.cpp │ │ │ ├── GlslOcioNodeImpl.h │ │ │ ├── LobePruner.cpp │ │ │ ├── LobePruner.h │ │ │ ├── Nodes │ │ │ │ ├── MayaClosureSourceCodeNode.cpp │ │ │ │ ├── MayaClosureSourceCodeNode.h │ │ │ │ ├── MayaCompoundNode.cpp │ │ │ │ ├── MayaCompoundNode.h │ │ │ │ ├── MayaDarkClosureNode.cpp │ │ │ │ ├── MayaDarkClosureNode.h │ │ │ │ ├── MayaHwImageNode.cpp │ │ │ │ ├── MayaHwImageNode.h │ │ │ │ ├── MayaShaderGraph.cpp │ │ │ │ ├── MayaShaderGraph.h │ │ │ │ ├── MayaSourceCodeNode.cpp │ │ │ │ ├── MayaSourceCodeNode.h │ │ │ │ ├── MayaTransformNormalNodeGlsl.cpp │ │ │ │ ├── MayaTransformNormalNodeGlsl.h │ │ │ │ ├── MayaTransformPointNodeGlsl.cpp │ │ │ │ ├── MayaTransformPointNodeGlsl.h │ │ │ │ ├── MayaTransformVectorNodeGlsl.cpp │ │ │ │ ├── MayaTransformVectorNodeGlsl.h │ │ │ │ ├── SurfaceNodeMaya.cpp │ │ │ │ ├── SurfaceNodeMaya.h │ │ │ │ ├── TexcoordNodeMaya.cpp │ │ │ │ └── TexcoordNodeMaya.h │ │ │ ├── OgsFragment.cpp │ │ │ ├── OgsFragment.h │ │ │ ├── OgsXmlGenerator.cpp │ │ │ ├── OgsXmlGenerator.h │ │ │ ├── PugiXML │ │ │ │ ├── LICENSE.md │ │ │ │ ├── pugiconfig.hpp │ │ │ │ ├── pugixml.cpp │ │ │ │ ├── pugixml.hpp │ │ │ │ └── readme.txt │ │ │ ├── README.md │ │ │ ├── ShaderGenUtil.cpp │ │ │ ├── ShaderGenUtil.h │ │ │ └── libraries │ │ │ │ ├── 1.38.3 │ │ │ │ ├── mx_lighting_maya_none.glsl │ │ │ │ ├── mx_lighting_maya_v1.glsl │ │ │ │ ├── mx_lighting_maya_v2.glsl │ │ │ │ ├── mx_lighting_maya_v3.glsl │ │ │ │ ├── mx_srgb_texture_to_aces_2065_1_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_aces_2065_1_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_acescg_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_acescg_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_dci_p3_d65_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_dci_p3_d65_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_linrec2020_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_linrec2020_color4.glsl │ │ │ │ └── usd_utilities_genglsl_impl.mtlx │ │ │ │ ├── 1.38.7 │ │ │ │ ├── mx_lighting_maya_none.glsl │ │ │ │ ├── mx_lighting_maya_v1.glsl │ │ │ │ ├── mx_lighting_maya_v2.glsl │ │ │ │ ├── mx_lighting_maya_v3.glsl │ │ │ │ ├── mx_srgb_texture_to_aces_2065_1_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_aces_2065_1_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_acescg_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_acescg_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_dci_p3_d65_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_dci_p3_d65_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_linrec2020_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_linrec2020_color4.glsl │ │ │ │ └── usd_utilities_genglsl_impl.mtlx │ │ │ │ ├── lookdevKit.mtlx │ │ │ │ ├── lookdevKit_ng.mtlx │ │ │ │ ├── maya_surfaces.mtlx │ │ │ │ ├── maya_utilities.mtlx │ │ │ │ ├── maya_utilities_ng.mtlx │ │ │ │ ├── mx39_lighting_maya_all.glsl │ │ │ │ ├── mx_arbitrarytangents_vector3.glsl │ │ │ │ ├── mx_lighting_maya_none.glsl │ │ │ │ ├── mx_lighting_maya_v1.glsl │ │ │ │ ├── mx_lighting_maya_v2.glsl │ │ │ │ ├── mx_lighting_maya_v3.glsl │ │ │ │ ├── mx_srgb_texture_to_aces_2065_1_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_aces_2065_1_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_acescg_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_acescg_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_dci_p3_d65_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_dci_p3_d65_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_rec709_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_lin_rec709_color4.glsl │ │ │ │ ├── mx_srgb_texture_to_linrec2020_color3.glsl │ │ │ │ ├── mx_srgb_texture_to_linrec2020_color4.glsl │ │ │ │ ├── mx_texcoordtangents_vector3.glsl │ │ │ │ ├── usd_transform_color.glsl │ │ │ │ ├── usd_utilities.mtlx │ │ │ │ └── usd_utilities_genglsl_impl.mtlx │ │ ├── mayaToHydra │ │ │ ├── CMakeLists.txt │ │ │ ├── defaultLightDelegate.cpp │ │ │ ├── defaultLightDelegate.h │ │ │ ├── plugin.cpp │ │ │ ├── pluginDebugCodes.cpp │ │ │ ├── pluginDebugCodes.h │ │ │ ├── renderGlobals.cpp │ │ │ ├── renderGlobals.h │ │ │ ├── renderOverride.cpp │ │ │ ├── renderOverride.h │ │ │ ├── renderOverrideUtils.h │ │ │ ├── shadingModeExporter.cpp │ │ │ ├── tokens.cpp │ │ │ ├── tokens.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── viewCommand.cpp │ │ │ └── viewCommand.h │ │ ├── px_vp20 │ │ │ ├── CMakeLists.txt │ │ │ ├── glslProgram.cpp │ │ │ ├── glslProgram.h │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── utilsLegacy.cpp │ │ │ └── utilsLegacy.h │ │ ├── pxrUsdMayaGL │ │ │ ├── CMakeLists.txt │ │ │ ├── batchRenderer.cpp │ │ │ ├── batchRenderer.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── hdImagingShapeDrawOverride.cpp │ │ │ ├── hdImagingShapeDrawOverride.h │ │ │ ├── hdImagingShapeUI.cpp │ │ │ ├── hdImagingShapeUI.h │ │ │ ├── instancerImager.cpp │ │ │ ├── instancerImager.h │ │ │ ├── instancerShapeAdapter.cpp │ │ │ ├── instancerShapeAdapter.h │ │ │ ├── proxyDrawOverride.cpp │ │ │ ├── proxyDrawOverride.h │ │ │ ├── proxyShapeDelegate.cpp │ │ │ ├── proxyShapeUI.cpp │ │ │ ├── proxyShapeUI.h │ │ │ ├── renderParams.h │ │ │ ├── sceneDelegate.cpp │ │ │ ├── sceneDelegate.h │ │ │ ├── shapeAdapter.cpp │ │ │ ├── shapeAdapter.h │ │ │ ├── softSelectHelper.cpp │ │ │ ├── softSelectHelper.h │ │ │ ├── usdProxyShapeAdapter.cpp │ │ │ ├── usdProxyShapeAdapter.h │ │ │ ├── userData.cpp │ │ │ └── userData.h │ │ ├── vp2ComputeShaders │ │ │ ├── CMakeLists.txt │ │ │ ├── computeNormals.cl │ │ │ ├── computeNormals.glsl │ │ │ └── plugInfo.json │ │ ├── vp2RenderDelegate │ │ │ ├── CMakeLists.txt │ │ │ ├── analyticMayaUsdPerformance.py │ │ │ ├── basisCurves.cpp │ │ │ ├── basisCurves.h │ │ │ ├── bboxGeom.cpp │ │ │ ├── bboxGeom.h │ │ │ ├── colorManagementPreferences.cpp │ │ │ ├── colorManagementPreferences.h │ │ │ ├── debugCodes.cpp │ │ │ ├── debugCodes.h │ │ │ ├── drawItem.cpp │ │ │ ├── drawItem.h │ │ │ ├── extComputation.cpp │ │ │ ├── extComputation.h │ │ │ ├── instancer.cpp │ │ │ ├── instancer.h │ │ │ ├── material.cpp │ │ │ ├── material.h │ │ │ ├── mayaPrimCommon.cpp │ │ │ ├── mayaPrimCommon.h │ │ │ ├── mesh.cpp │ │ │ ├── mesh.h │ │ │ ├── meshViewportCompute.cpp │ │ │ ├── meshViewportCompute.h │ │ │ ├── points.cpp │ │ │ ├── points.h │ │ │ ├── primvarInfo.h │ │ │ ├── proxyRenderDelegate.cpp │ │ │ ├── proxyRenderDelegate.h │ │ │ ├── renderDelegate.cpp │ │ │ ├── renderDelegate.h │ │ │ ├── renderParam.cpp │ │ │ ├── renderParam.h │ │ │ ├── renderPass.h │ │ │ ├── resourceRegistry.h │ │ │ ├── sampler.cpp │ │ │ ├── sampler.h │ │ │ ├── shader.cpp │ │ │ ├── shader.h │ │ │ ├── taskCommit.h │ │ │ ├── tokens.cpp │ │ │ └── tokens.h │ │ └── vp2ShaderFragments │ │ │ ├── BasisCurvesCubicCPVHull.xml │ │ │ ├── BasisCurvesCubicCPVPassing.xml │ │ │ ├── BasisCurvesCubicCPVShader.xml │ │ │ ├── BasisCurvesCubicColorDomain.xml │ │ │ ├── BasisCurvesCubicDomain_Cg.xml │ │ │ ├── BasisCurvesCubicDomain_GLSL.xml │ │ │ ├── BasisCurvesCubicDomain_HLSL.xml │ │ │ ├── BasisCurvesCubicFallbackShader.xml │ │ │ ├── BasisCurvesCubicHull.xml │ │ │ ├── BasisCurvesLinearCPVHull.xml │ │ │ ├── BasisCurvesLinearCPVPassing.xml │ │ │ ├── BasisCurvesLinearCPVShader.xml │ │ │ ├── BasisCurvesLinearColorDomain.xml │ │ │ ├── BasisCurvesLinearDomain_Cg.xml │ │ │ ├── BasisCurvesLinearDomain_GLSL.xml │ │ │ ├── BasisCurvesLinearDomain_HLSL.xml │ │ │ ├── BasisCurvesLinearFallbackShader.xml │ │ │ ├── BasisCurvesLinearHull.xml │ │ │ ├── CMakeLists.txt │ │ │ ├── FallbackCPVShader.xml │ │ │ ├── FallbackCPVShaderStandardSurface.xml │ │ │ ├── FallbackShader.xml │ │ │ ├── FallbackShaderStandardSurface.xml │ │ │ ├── Float3ToFloatX.xml │ │ │ ├── Float3ToFloatY.xml │ │ │ ├── Float3ToFloatZ.xml │ │ │ ├── Float4ToFloat3.xml │ │ │ ├── Float4ToFloat4.xml │ │ │ ├── Float4ToFloatW.xml │ │ │ ├── Float4ToFloatX.xml │ │ │ ├── Float4ToFloatY.xml │ │ │ ├── Float4ToFloatZ.xml │ │ │ ├── FloatToFloat3.xml │ │ │ ├── NwFaceCameraIfNAN.xml │ │ │ ├── PointsFallbackCPVShader.xml │ │ │ ├── PointsFallbackShader.xml │ │ │ ├── PointsGeometry.xml │ │ │ ├── UsdDrawModeCards.xml │ │ │ ├── UsdPreviewSurfaceLightAPI1.xml │ │ │ ├── UsdPreviewSurfaceLightAPI2.xml │ │ │ ├── UsdPreviewSurfaceLightAPI3.xml │ │ │ ├── UsdPrimvarColor.xml │ │ │ ├── UsdPrimvarReader_color.xml │ │ │ ├── UsdPrimvarReader_float.xml │ │ │ ├── UsdPrimvarReader_float2.xml │ │ │ ├── UsdPrimvarReader_float3.xml │ │ │ ├── UsdPrimvarReader_float4.xml │ │ │ ├── UsdPrimvarReader_vector.xml │ │ │ ├── UsdTransform2d.xml │ │ │ ├── UsdUVTexture.xml │ │ │ ├── UsdUVTexture_noCM.xml │ │ │ ├── lightingContributions.xml │ │ │ ├── opacityToTransparency.xml │ │ │ ├── plugInfo.json │ │ │ ├── scaledDiffusePassThrough.xml │ │ │ ├── scaledSpecularPassThrough.xml │ │ │ ├── shaderFragments.cpp │ │ │ ├── shaderFragments.h │ │ │ ├── usdPreviewSurfaceCombiner.xml │ │ │ ├── usdPreviewSurfaceLightingAPI1.xml │ │ │ ├── usdPreviewSurfaceLightingAPI2.xml │ │ │ └── usdPreviewSurfaceLightingAPI3.xml │ ├── resources │ │ ├── CMakeLists.txt │ │ ├── ae │ │ │ ├── CMakeLists.txt │ │ │ ├── __init__.py │ │ │ ├── ae_utils.py │ │ │ ├── usd-shared-components │ │ │ │ └── src │ │ │ │ │ └── python │ │ │ │ │ └── usdSharedComponents │ │ │ │ │ ├── collection │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── expressionRulesMenu.py │ │ │ │ │ ├── expressionWidget.py │ │ │ │ │ ├── includeExcludeWidget.py │ │ │ │ │ ├── warningWidget.py │ │ │ │ │ └── widget.py │ │ │ │ │ ├── common │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── filteredStringListModel.py │ │ │ │ │ ├── filteredStringListView.py │ │ │ │ │ ├── host.py │ │ │ │ │ ├── menuButton.py │ │ │ │ │ ├── persistentStorage.py │ │ │ │ │ ├── resizable.py │ │ │ │ │ ├── stringListPanel.py │ │ │ │ │ └── theme.py │ │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── collectionData.py │ │ │ │ │ └── stringListData.py │ │ │ │ │ ├── icons │ │ │ │ │ ├── dark │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ ├── menu.svg │ │ │ │ │ │ ├── selector.svg │ │ │ │ │ │ └── warning.svg │ │ │ │ │ └── light │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ ├── menu.svg │ │ │ │ │ │ ├── selector.svg │ │ │ │ │ │ └── warning.svg │ │ │ │ │ └── usdData │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── usdCollectionData.py │ │ │ │ │ ├── usdCollectionStringListData.py │ │ │ │ │ └── validator.py │ │ │ └── usdschemabase │ │ │ │ ├── Attribute-Editor-Template-Doc.md │ │ │ │ ├── __init__.py │ │ │ │ ├── aeUITemplate.py │ │ │ │ ├── ae_template.py │ │ │ │ ├── arrayCustomControl.py │ │ │ │ ├── assetInfoCustomControl.py │ │ │ │ ├── attributeCustomControl.py │ │ │ │ ├── collectionCustomControl.py │ │ │ │ ├── collectionMayaHost.py │ │ │ │ ├── connectionsCustomControl.py │ │ │ │ ├── displayCustomControl.py │ │ │ │ ├── enumCustomControl.py │ │ │ │ ├── imageCustomControl.py │ │ │ │ ├── materialCustomControl.py │ │ │ │ ├── metadataCustomControl.py │ │ │ │ └── observers.py │ │ ├── helpTable │ │ │ ├── CMakeLists.txt │ │ │ └── helpTableMayaUSD │ │ ├── icons │ │ │ ├── CMakeLists.txt │ │ │ ├── cache_to_USD_100.png │ │ │ ├── cache_to_USD_150.png │ │ │ ├── cache_to_USD_200.png │ │ │ ├── discard_edits_100.png │ │ │ ├── discard_edits_150.png │ │ │ ├── discard_edits_200.png │ │ │ ├── edit_as_Maya_100.png │ │ │ ├── edit_as_Maya_150.png │ │ │ ├── edit_as_Maya_200.png │ │ │ ├── merge_to_USD_100.png │ │ │ ├── merge_to_USD_150.png │ │ │ ├── merge_to_USD_200.png │ │ │ ├── orphaned_node_badge_100.png │ │ │ ├── orphaned_node_badge_150.png │ │ │ ├── orphaned_node_badge_200.png │ │ │ ├── out_USD_MayaReference_100.png │ │ │ ├── out_USD_MayaReference_150.png │ │ │ ├── out_USD_MayaReference_200.png │ │ │ ├── saveOption1_100.png │ │ │ ├── saveOption1_150.png │ │ │ ├── saveOption1_200.png │ │ │ ├── saveOption2_100.png │ │ │ ├── saveOption2_150.png │ │ │ ├── saveOption2_200.png │ │ │ ├── saveOption3_100.png │ │ │ ├── saveOption3_150.png │ │ │ └── saveOption3_200.png │ │ └── scripts │ │ │ ├── CMakeLists.txt │ │ │ ├── cacheToUsd.py │ │ │ ├── mayaUsdAddMayaReference.mel │ │ │ ├── mayaUsdAddMayaReference.py │ │ │ ├── mayaUsdAddUSDReference.mel │ │ │ ├── mayaUsdCacheMayaReference.mel │ │ │ ├── mayaUsdCacheMayaReference.py │ │ │ ├── mayaUsdClearRefsOrPayloadsOptions.mel │ │ │ ├── mayaUsdClearRefsOrPayloadsOptions.py │ │ │ ├── mayaUsdDuplicateAsUsdDataOptions.mel │ │ │ ├── mayaUsdDuplicateAsUsdDataOptions.py │ │ │ ├── mayaUsdLibRegisterStrings.mel │ │ │ ├── mayaUsdLibRegisterStrings.py │ │ │ ├── mayaUsdMayaReferenceUtils.py │ │ │ ├── mayaUsdMergeToUSDOptions.mel │ │ │ ├── mayaUsdMergeToUSDOptions.py │ │ │ ├── mayaUsdMergeToUsd.py │ │ │ ├── mayaUsdOptions.py │ │ │ ├── mayaUsdStageConversion.py │ │ │ └── mayaUsdUtils.py │ ├── sceneIndex │ │ ├── CMakeLists.txt │ │ ├── plugInfo.json │ │ ├── proxyShapeSceneIndexPlugin.cpp │ │ └── proxyShapeSceneIndexPlugin.h │ ├── ufe │ │ ├── CMakeLists.txt │ │ ├── EditAsMayaCommand.cpp │ │ ├── EditAsMayaCommand.h │ │ ├── Global.cpp │ │ ├── Global.h │ │ ├── MayaStagesSubject.cpp │ │ ├── MayaStagesSubject.h │ │ ├── MayaUIInfoHandler.cpp │ │ ├── MayaUIInfoHandler.h │ │ ├── MayaUsdContextOps.cpp │ │ ├── MayaUsdContextOps.h │ │ ├── MayaUsdContextOpsHandler.cpp │ │ ├── MayaUsdContextOpsHandler.h │ │ ├── MayaUsdHierarchy.cpp │ │ ├── MayaUsdHierarchy.h │ │ ├── MayaUsdHierarchyHandler.cpp │ │ ├── MayaUsdHierarchyHandler.h │ │ ├── MayaUsdObject3d.cpp │ │ ├── MayaUsdObject3d.h │ │ ├── MayaUsdObject3dHandler.cpp │ │ ├── MayaUsdObject3dHandler.h │ │ ├── MayaUsdRootChildHierarchy.cpp │ │ ├── MayaUsdRootChildHierarchy.h │ │ ├── MayaUsdSceneItemOps.cpp │ │ ├── MayaUsdSceneItemOps.h │ │ ├── MayaUsdSceneItemOpsHandler.cpp │ │ ├── MayaUsdSceneItemOpsHandler.h │ │ ├── MayaUsdUIInfoHandler.cpp │ │ ├── MayaUsdUIInfoHandler.h │ │ ├── MayaUsdUndoRenameCommand.cpp │ │ ├── MayaUsdUndoRenameCommand.h │ │ ├── ProxyShapeCameraHandler.cpp │ │ ├── ProxyShapeCameraHandler.h │ │ ├── ProxyShapeContextOpsHandler.cpp │ │ ├── ProxyShapeContextOpsHandler.h │ │ ├── ProxyShapeHandler.cpp │ │ ├── ProxyShapeHandler.h │ │ ├── ProxyShapeHierarchy.cpp │ │ ├── ProxyShapeHierarchy.h │ │ ├── ProxyShapeHierarchyHandler.cpp │ │ ├── ProxyShapeHierarchyHandler.h │ │ ├── ProxyShapeSceneSegmentHandler.cpp │ │ ├── ProxyShapeSceneSegmentHandler.h │ │ ├── PulledObjectHierarchy.cpp │ │ ├── PulledObjectHierarchy.h │ │ ├── PulledObjectHierarchyHandler.cpp │ │ ├── PulledObjectHierarchyHandler.h │ │ ├── UsdBatchOpsHandler.cpp │ │ ├── UsdBatchOpsHandler.h │ │ ├── UsdCodeWrapperHandler.cpp │ │ ├── UsdCodeWrapperHandler.h │ │ ├── UsdConnectionHandler.cpp │ │ ├── UsdConnectionHandler.h │ │ ├── UsdConnections.cpp │ │ ├── UsdConnections.h │ │ ├── UsdLight.cpp │ │ ├── UsdLight.h │ │ ├── UsdLight2.cpp │ │ ├── UsdLight2.h │ │ ├── UsdLight2Handler.cpp │ │ ├── UsdLight2Handler.h │ │ ├── UsdLightHandler.cpp │ │ ├── UsdLightHandler.h │ │ ├── UsdMaterial.cpp │ │ ├── UsdMaterial.h │ │ ├── UsdMaterialHandler.cpp │ │ ├── UsdMaterialHandler.h │ │ ├── UsdPathMappingHandler.cpp │ │ ├── UsdPathMappingHandler.h │ │ ├── UsdShaderNodeDef.cpp │ │ ├── UsdShaderNodeDef.h │ │ ├── UsdShaderNodeDefHandler.cpp │ │ ├── UsdShaderNodeDefHandler.h │ │ ├── UsdStageMap.cpp │ │ ├── UsdStageMap.h │ │ ├── UsdUINodeGraphNode.cpp │ │ ├── UsdUINodeGraphNode.h │ │ ├── UsdUINodeGraphNodeHandler.cpp │ │ ├── UsdUINodeGraphNodeHandler.h │ │ ├── UsdUIUfeObserver.cpp │ │ ├── UsdUIUfeObserver.h │ │ ├── UsdUndoConnectionCommands.cpp │ │ ├── UsdUndoConnectionCommands.h │ │ ├── UsdUndoCreateFromNodeDefCommand.cpp │ │ ├── UsdUndoCreateFromNodeDefCommand.h │ │ ├── UsdUndoCreateStageWithNewLayerCommand.cpp │ │ ├── UsdUndoCreateStageWithNewLayerCommand.h │ │ ├── UsdUndoDuplicateCommand.cpp │ │ ├── UsdUndoDuplicateCommand.h │ │ ├── UsdUndoDuplicateSelectionCommand.cpp │ │ ├── UsdUndoDuplicateSelectionCommand.h │ │ ├── UsdUndoMaterialCommands.cpp │ │ ├── UsdUndoMaterialCommands.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── __init__.py │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── trf │ │ │ ├── CMakeLists.txt │ │ │ ├── RotationUtils.cpp │ │ │ ├── RotationUtils.h │ │ │ ├── UsdTransform3dFallbackMayaXformStack.cpp │ │ │ ├── UsdTransform3dFallbackMayaXformStack.h │ │ │ ├── UsdTransform3dMayaXformStack.cpp │ │ │ ├── UsdTransform3dMayaXformStack.h │ │ │ ├── XformOpUtils.cpp │ │ │ └── XformOpUtils.h │ │ ├── wrapGlobal.cpp │ │ ├── wrapNotice.cpp │ │ └── wrapUtils.cpp │ ├── undo │ │ ├── CMakeLists.txt │ │ ├── MayaUsdUndoBlock.cpp │ │ ├── MayaUsdUndoBlock.h │ │ ├── OpUndoItemList.cpp │ │ ├── OpUndoItemList.h │ │ ├── OpUndoItemMuting.cpp │ │ ├── OpUndoItemMuting.h │ │ ├── OpUndoItemRecorder.cpp │ │ ├── OpUndoItemRecorder.h │ │ ├── OpUndoItemValidator.cpp │ │ ├── OpUndoItemValidator.h │ │ ├── OpUndoItems.cpp │ │ ├── OpUndoItems.h │ │ ├── README-Nice-Undo.md │ │ ├── README-Op-Undo.md │ │ ├── README-USD-Undo.md │ │ └── README.md │ └── utils │ │ ├── CMakeLists.txt │ │ ├── autoUndoCommands.cpp │ │ ├── autoUndoCommands.h │ │ ├── blockSceneModificationContext.cpp │ │ ├── blockSceneModificationContext.h │ │ ├── colorSpace.cpp │ │ ├── colorSpace.h │ │ ├── converter.cpp │ │ ├── converter.h │ │ ├── copyLayerPrims.cpp │ │ ├── copyLayerPrims.h │ │ ├── customLayerData.cpp │ │ ├── customLayerData.h │ │ ├── diagnosticDelegate.cpp │ │ ├── diagnosticDelegate.h │ │ ├── dynamicAttribute.cpp │ │ ├── dynamicAttribute.h │ │ ├── hash.h │ │ ├── json.cpp │ │ ├── json.h │ │ ├── jsonConverter.h │ │ ├── layerLocking.cpp │ │ ├── layerLocking.h │ │ ├── layerMuting.cpp │ │ ├── layerMuting.h │ │ ├── layers.cpp │ │ ├── layers.h │ │ ├── loadRules.h │ │ ├── loadRulesAttribute.cpp │ │ ├── mayaEditRouter.cpp │ │ ├── mayaEditRouter.h │ │ ├── mayaNodeObserver.cpp │ │ ├── mayaNodeObserver.h │ │ ├── mayaNodeTypeObserver.cpp │ │ ├── mayaNodeTypeObserver.h │ │ ├── plugInfo.json │ │ ├── plugRegistryHelper.cpp │ │ ├── plugRegistryHelper.h │ │ ├── primActivation.cpp │ │ ├── primActivation.h │ │ ├── progressBarScope.cpp │ │ ├── progressBarScope.h │ │ ├── query.cpp │ │ ├── query.h │ │ ├── selectability.cpp │ │ ├── selectability.h │ │ ├── stageCache.cpp │ │ ├── stageCache.h │ │ ├── targetLayer.cpp │ │ ├── targetLayer.h │ │ ├── traverseLayer.cpp │ │ ├── traverseLayer.h │ │ ├── trieVisitor.h │ │ ├── undoHelperCommand.cpp │ │ ├── undoHelperCommand.h │ │ ├── util.cpp │ │ ├── util.h │ │ ├── utilComponentCreator.cpp │ │ ├── utilComponentCreator.h │ │ ├── utilDictionary.cpp │ │ ├── utilDictionary.h │ │ ├── utilFileSystem.cpp │ │ ├── utilFileSystem.h │ │ ├── utilSerialization.cpp │ │ ├── utilSerialization.h │ │ ├── variantFallbacks.cpp │ │ ├── variantFallbacks.h │ │ ├── variants.cpp │ │ └── variants.h ├── mayaUsdAPI │ ├── CMakeLists.txt │ ├── README.md │ ├── __init__.py │ ├── api.h │ ├── clipboard.cpp │ ├── clipboard.h │ ├── contextOps.cpp │ ├── contextOps.h │ ├── global.cpp │ ├── global.h │ ├── mayaUsdAPI.h.src │ ├── proxyShapeNotice.cpp │ ├── proxyShapeNotice.h │ ├── proxyStage.cpp │ ├── proxyStage.h │ ├── python │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── module.cpp │ │ ├── moduleDeps.cpp │ │ ├── wrapProxyShapeNotice.cpp │ │ └── wrapProxyStage.cpp │ ├── render.cpp │ ├── render.h │ ├── ufeHandlers.cpp │ ├── ufeHandlers.h │ ├── undo.cpp │ ├── undo.h │ ├── utils.cpp │ └── utils.h ├── usd │ ├── CMakeLists.txt │ ├── hdMaya │ │ ├── CMakeLists.txt │ │ ├── adapters │ │ │ ├── CMakeLists.txt │ │ │ ├── adapter.cpp │ │ │ ├── adapter.h │ │ │ ├── adapterDebugCodes.cpp │ │ │ ├── adapterDebugCodes.h │ │ │ ├── adapterRegistry.cpp │ │ │ ├── adapterRegistry.h │ │ │ ├── aiSkydomeLightAdapter.cpp │ │ │ ├── areaLightAdapter.cpp │ │ │ ├── cameraAdapter.cpp │ │ │ ├── cameraAdapter.h │ │ │ ├── constantShadowMatrix.h │ │ │ ├── dagAdapter.cpp │ │ │ ├── dagAdapter.h │ │ │ ├── directionalLightAdapter.cpp │ │ │ ├── lightAdapter.cpp │ │ │ ├── lightAdapter.h │ │ │ ├── materialAdapter.cpp │ │ │ ├── materialAdapter.h │ │ │ ├── materialNetworkConverter.cpp │ │ │ ├── materialNetworkConverter.h │ │ │ ├── mayaAttrs.cpp │ │ │ ├── mayaAttrs.h │ │ │ ├── meshAdapter.cpp │ │ │ ├── nurbsCurveAdapter.cpp │ │ │ ├── pointLightAdapter.cpp │ │ │ ├── proxyAdapter.cpp │ │ │ ├── proxyAdapter.h │ │ │ ├── shapeAdapter.cpp │ │ │ ├── shapeAdapter.h │ │ │ ├── spotLightAdapter.cpp │ │ │ ├── tokens.cpp │ │ │ └── tokens.h │ │ ├── api.h │ │ ├── debugCodes.cpp │ │ ├── debugCodes.h │ │ ├── delegates │ │ │ ├── CMakeLists.txt │ │ │ ├── delegate.cpp │ │ │ ├── delegate.h │ │ │ ├── delegateCtx.cpp │ │ │ ├── delegateCtx.h │ │ │ ├── delegateDebugCodes.cpp │ │ │ ├── delegateDebugCodes.h │ │ │ ├── delegateRegistry.cpp │ │ │ ├── delegateRegistry.h │ │ │ ├── params.h │ │ │ ├── proxyDelegate.cpp │ │ │ ├── proxyDelegate.h │ │ │ ├── proxyUsdImagingDelegate.cpp │ │ │ ├── proxyUsdImagingDelegate.h │ │ │ ├── sceneDelegate.cpp │ │ │ ├── sceneDelegate.h │ │ │ ├── testDelegate.cpp │ │ │ └── testDelegate.h │ │ ├── plugInfo.json │ │ ├── utils.cpp │ │ └── utils.h │ ├── pxrUsdPreviewSurface │ │ ├── AEusdPreviewSurfaceTemplate.mel │ │ ├── CMakeLists.txt │ │ ├── api.h │ │ ├── cpvColor.cpp │ │ ├── cpvColor.h │ │ ├── overview.dox │ │ ├── usdPreviewSurface.cpp │ │ ├── usdPreviewSurface.h │ │ ├── usdPreviewSurfacePlugin.cpp │ │ ├── usdPreviewSurfacePlugin.h │ │ ├── usdPreviewSurfaceReader.cpp │ │ ├── usdPreviewSurfaceReader.h │ │ ├── usdPreviewSurfaceShadingNodeOverride.cpp │ │ ├── usdPreviewSurfaceShadingNodeOverride.h │ │ ├── usdPreviewSurfaceWriter.cpp │ │ └── usdPreviewSurfaceWriter.h │ ├── schemas │ │ ├── ALMayaReference.cpp │ │ ├── ALMayaReference.h │ │ ├── CMakeLists.txt │ │ ├── MayaReference.cpp │ │ ├── MayaReference.h │ │ ├── ModuleDeps.cpp │ │ ├── __init__.py │ │ ├── api.h │ │ ├── generatedSchema.usda │ │ ├── module.cpp │ │ ├── plugInfo.json.in │ │ ├── schema.usda.in │ │ ├── tokens.cpp │ │ ├── tokens.h │ │ ├── wrapALMayaReference.cpp │ │ ├── wrapMayaReference.cpp │ │ └── wrapTokens.cpp │ ├── translators │ │ ├── CMakeLists.txt │ │ ├── api.h │ │ ├── cameraReader.cpp │ │ ├── cameraWriter.cpp │ │ ├── cameraWriter.h │ │ ├── instancerWriter.cpp │ │ ├── instancerWriter.h │ │ ├── jointWriter.cpp │ │ ├── jointWriter.h │ │ ├── lightReader.cpp │ │ ├── lightRfMWriter.cpp │ │ ├── lightRfMWriterPxrMeshLight.cpp │ │ ├── lightWriter.cpp │ │ ├── lightWriter.h │ │ ├── locatorWriter.cpp │ │ ├── locatorWriter.h │ │ ├── materialReader.cpp │ │ ├── mayaReferenceEditRouter.md │ │ ├── mayaReferenceReader.cpp │ │ ├── mayaReferenceUpdater.cpp │ │ ├── mayaReferenceUpdater.h │ │ ├── meshReader.cpp │ │ ├── meshWriter.cpp │ │ ├── meshWriter.h │ │ ├── meshWriterBlendShapes.cpp │ │ ├── nurbsCurveWriter.cpp │ │ ├── nurbsCurveWriter.h │ │ ├── nurbsCurvesReader.cpp │ │ ├── nurbsPatchReader.cpp │ │ ├── nurbsSurfaceWriter.cpp │ │ ├── nurbsSurfaceWriter.h │ │ ├── particleWriter.cpp │ │ ├── particleWriter.h │ │ ├── plugInfo.json │ │ ├── plugin.cpp │ │ ├── scopeReader.cpp │ │ ├── shading │ │ │ ├── CMakeLists.txt │ │ │ ├── materialUpdater.cpp │ │ │ ├── materialUpdater.h │ │ │ ├── mtlxBaseReader.cpp │ │ │ ├── mtlxBaseReader.h │ │ │ ├── mtlxBaseWriter.cpp │ │ │ ├── mtlxBaseWriter.h │ │ │ ├── mtlxConstructorReader.cpp │ │ │ ├── mtlxConverterReader.cpp │ │ │ ├── mtlxFileTextureReader.cpp │ │ │ ├── mtlxFileTextureWriter.cpp │ │ │ ├── mtlxImageReader.cpp │ │ │ ├── mtlxMaterialXSurfaceShaderWriter.cpp │ │ │ ├── mtlxOpenPBRSurfaceReader.cpp │ │ │ ├── mtlxOpenPBRSurfaceWriter.cpp │ │ │ ├── mtlxPlace2dTextureWriter.cpp │ │ │ ├── mtlxPreviewSurfaceReader.cpp │ │ │ ├── mtlxPreviewSurfaceWriter.cpp │ │ │ ├── mtlxStandardSurfaceReader.cpp │ │ │ ├── mtlxStandardSurfaceWriter.cpp │ │ │ ├── mtlxSymmetricShaderReader.cpp │ │ │ ├── mtlxSymmetricShaderWriter.cpp │ │ │ ├── mtlxTranslationTableReader.cpp │ │ │ ├── mtlxTranslationTableReader.h │ │ │ ├── mtlxTranslationTableWriter.cpp │ │ │ ├── mtlxTranslationTableWriter.h │ │ │ ├── rfmShaderTranslation.cpp │ │ │ ├── shadingAsset.cpp │ │ │ ├── shadingAsset.h │ │ │ ├── shadingTokens.cpp │ │ │ ├── shadingTokens.h │ │ │ ├── usdBlinnReader.cpp │ │ │ ├── usdBlinnWriter.cpp │ │ │ ├── usdDisplacementShaderWriter.cpp │ │ │ ├── usdFileTextureWriter.cpp │ │ │ ├── usdLambertReader.cpp │ │ │ ├── usdLambertReader.h │ │ │ ├── usdLambertWriter.cpp │ │ │ ├── usdLambertWriter.h │ │ │ ├── usdMaterialReader.cpp │ │ │ ├── usdMaterialReader.h │ │ │ ├── usdMaterialWriter.cpp │ │ │ ├── usdMaterialWriter.h │ │ │ ├── usdOpenPBRSurfaceReader.cpp │ │ │ ├── usdOpenPBRSurfaceWriter.cpp │ │ │ ├── usdPhongEWriter.cpp │ │ │ ├── usdPhongReader.cpp │ │ │ ├── usdPhongWriter.cpp │ │ │ ├── usdPrimvarReaderFloat3Reader.cpp │ │ │ ├── usdReflectWriter.cpp │ │ │ ├── usdReflectWriter.h │ │ │ ├── usdStandardSurfaceReader.cpp │ │ │ ├── usdStandardSurfaceWriter.cpp │ │ │ └── usdUVTextureReader.cpp │ │ ├── skelReader.cpp │ │ ├── stageWriter.cpp │ │ ├── stageWriter.h │ │ ├── strokeWriter.cpp │ │ ├── strokeWriter.h │ │ └── xformReader.cpp │ └── ui │ │ ├── CMakeLists.txt │ │ ├── api.h │ │ ├── assetResolver │ │ ├── ApplicationHost.cpp │ │ ├── ApplicationHost.h │ │ ├── AssetResolverDialogCmd.cpp │ │ ├── AssetResolverDialogCmd.h │ │ ├── CMakeLists.txt │ │ ├── HeaderWidget.cpp │ │ ├── HeaderWidget.h │ │ ├── USDAssetResolverDialog.cpp │ │ ├── USDAssetResolverDialog.h │ │ ├── USDAssetResolverSettingsWidget.cpp │ │ ├── USDAssetResolverSettingsWidget.h │ │ ├── USDAssetResolverSettingsWidget.ui │ │ └── images │ │ │ ├── move_down_100.png │ │ │ ├── move_down_150.png │ │ │ ├── move_down_200.png │ │ │ ├── move_up_100.png │ │ │ ├── move_up_150.png │ │ │ ├── move_up_200.png │ │ │ └── ui.qrc │ │ ├── importDialog │ │ ├── CMakeLists.txt │ │ ├── IMayaMQtUtil.h │ │ ├── IUSDImportView.h │ │ ├── ItemDelegate.cpp │ │ ├── ItemDelegate.h │ │ ├── TreeItem.cpp │ │ ├── TreeItem.h │ │ ├── TreeModel.cpp │ │ ├── TreeModel.h │ │ ├── TreeModelFactory.cpp │ │ ├── TreeModelFactory.h │ │ ├── USDImportDialog.cpp │ │ ├── USDImportDialog.h │ │ ├── USDImportDialog.ui │ │ ├── USDImportDialogCmd.cpp │ │ ├── USDImportDialogCmd.h │ │ ├── USDQtUtil.cpp │ │ ├── USDQtUtil.h │ │ └── images │ │ │ ├── checkboxOffDisabled_100.png │ │ │ ├── checkboxOffDisabled_150.png │ │ │ ├── checkboxOffDisabled_200.png │ │ │ ├── checkboxOff_100.png │ │ │ ├── checkboxOff_150.png │ │ │ ├── checkboxOff_200.png │ │ │ ├── checkboxOnDisabled_100.png │ │ │ ├── checkboxOnDisabled_150.png │ │ │ ├── checkboxOnDisabled_200.png │ │ │ ├── checkboxOn_100.png │ │ │ ├── checkboxOn_150.png │ │ │ ├── checkboxOn_200.png │ │ │ ├── defaultPrim_100.png │ │ │ ├── defaultPrim_150.png │ │ │ ├── defaultPrim_200.png │ │ │ └── ui.qrc │ │ ├── importDialogDemo │ │ ├── CMakeLists.txt │ │ └── testMayaUsdUI.cpp │ │ ├── initStringResources.cpp │ │ ├── initStringResources.h │ │ └── layerEditor │ │ ├── CMakeLists.txt │ │ ├── abstractCommandHook.h │ │ ├── batchSaveLayersUIDelegate.cpp │ │ ├── batchSaveLayersUIDelegate.h │ │ ├── componentSaveDialog.cpp │ │ ├── componentSaveDialog.h │ │ ├── dirtyLayersCountBadge.cpp │ │ ├── dirtyLayersCountBadge.h │ │ ├── generatedIconButton.cpp │ │ ├── generatedIconButton.h │ │ ├── layerContentsWidget.cpp │ │ ├── layerContentsWidget.h │ │ ├── layerEditorWidget.cpp │ │ ├── layerEditorWidget.h │ │ ├── layerTreeItem.cpp │ │ ├── layerTreeItem.h │ │ ├── layerTreeItemDelegate.cpp │ │ ├── layerTreeItemDelegate.h │ │ ├── layerTreeModel.cpp │ │ ├── layerTreeModel.h │ │ ├── layerTreeView.cpp │ │ ├── layerTreeView.h │ │ ├── layerTreeViewStyle.h │ │ ├── loadLayersDialog.cpp │ │ ├── loadLayersDialog.h │ │ ├── mayaCommandHook.cpp │ │ ├── mayaCommandHook.h │ │ ├── mayaLayerEditorWindow.cpp │ │ ├── mayaLayerEditorWindow.h │ │ ├── mayaQtUtils.cpp │ │ ├── mayaQtUtils.h │ │ ├── mayaSessionState.cpp │ │ ├── mayaSessionState.h │ │ ├── pathChecker.cpp │ │ ├── pathChecker.h │ │ ├── qtUtils.cpp │ │ ├── qtUtils.h │ │ ├── resources.qrc │ │ ├── resources │ │ ├── addCreateGeneric_100.png │ │ ├── addCreateGeneric_150.png │ │ ├── addCreateGeneric_200.png │ │ ├── add_layer_100.png │ │ ├── add_layer_150.png │ │ ├── add_layer_200.png │ │ ├── add_layer_hover_100.png │ │ ├── add_layer_hover_150.png │ │ ├── add_layer_hover_200.png │ │ ├── add_layer_pressed_100.png │ │ ├── add_layer_pressed_150.png │ │ ├── add_layer_pressed_200.png │ │ ├── contents_off_100.png │ │ ├── contents_off_150.png │ │ ├── contents_off_200.png │ │ ├── contents_off_hover_100.png │ │ ├── contents_off_hover_150.png │ │ ├── contents_off_hover_200.png │ │ ├── contents_on_100.png │ │ ├── contents_on_150.png │ │ ├── contents_on_200.png │ │ ├── contents_on_hover_100.png │ │ ├── contents_on_hover_150.png │ │ ├── contents_on_hover_200.png │ │ ├── import_layer_100.png │ │ ├── import_layer_150.png │ │ ├── import_layer_200.png │ │ ├── import_layer_hover_100.png │ │ ├── import_layer_hover_150.png │ │ ├── import_layer_hover_200.png │ │ ├── import_layer_pressed_100.png │ │ ├── import_layer_pressed_150.png │ │ ├── import_layer_pressed_200.png │ │ ├── lock_off_100.png │ │ ├── lock_off_150.png │ │ ├── lock_off_200.png │ │ ├── lock_off_hover_100.png │ │ ├── lock_off_hover_150.png │ │ ├── lock_off_hover_200.png │ │ ├── lock_on_100.png │ │ ├── lock_on_150.png │ │ ├── lock_on_200.png │ │ ├── lock_on_hover_100.png │ │ ├── lock_on_hover_150.png │ │ ├── lock_on_hover_200.png │ │ ├── mute_off_100.png │ │ ├── mute_off_150.png │ │ ├── mute_off_200.png │ │ ├── mute_off_hover_100.png │ │ ├── mute_off_hover_150.png │ │ ├── mute_off_hover_200.png │ │ ├── mute_on_100.png │ │ ├── mute_on_150.png │ │ ├── mute_on_200.png │ │ ├── mute_on_hover_100.png │ │ ├── mute_on_hover_150.png │ │ ├── mute_on_hover_200.png │ │ ├── pin_off_100.png │ │ ├── pin_off_150.png │ │ ├── pin_off_200.png │ │ ├── pin_off_hover_100.png │ │ ├── pin_off_hover_150.png │ │ ├── pin_off_hover_200.png │ │ ├── pin_on_100.png │ │ ├── pin_on_150.png │ │ ├── pin_on_200.png │ │ ├── pin_on_hover_100.png │ │ ├── pin_on_hover_150.png │ │ ├── pin_on_hover_200.png │ │ ├── save_all_100.png │ │ ├── save_all_150.png │ │ ├── save_all_200.png │ │ ├── save_all_hover_100.png │ │ ├── save_all_hover_150.png │ │ ├── save_all_hover_200.png │ │ ├── save_all_pressed_100.png │ │ ├── save_all_pressed_150.png │ │ ├── save_all_pressed_200.png │ │ ├── striped_100.png │ │ ├── striped_150.png │ │ ├── striped_200.png │ │ ├── striped_selected_100.png │ │ ├── striped_selected_150.png │ │ ├── striped_selected_200.png │ │ ├── target_100.png │ │ ├── target_150.png │ │ ├── target_200.png │ │ ├── target_hover_100.png │ │ ├── target_hover_150.png │ │ ├── target_hover_200.png │ │ ├── target_on_100.png │ │ ├── target_on_150.png │ │ ├── target_on_200.png │ │ ├── target_on_hover_100.png │ │ ├── target_on_hover_150.png │ │ ├── target_on_hover_200.png │ │ ├── target_on_pressed_100.png │ │ ├── target_on_pressed_150.png │ │ ├── target_on_pressed_200.png │ │ ├── target_pressed_100.png │ │ ├── target_pressed_150.png │ │ ├── target_pressed_200.png │ │ ├── target_regular_100.png │ │ ├── target_regular_150.png │ │ └── target_regular_200.png │ │ ├── saveLayersDialog.cpp │ │ ├── saveLayersDialog.h │ │ ├── sessionState.cpp │ │ ├── sessionState.h │ │ ├── stageSelectorWidget.cpp │ │ ├── stageSelectorWidget.h │ │ ├── stringResources.cpp │ │ ├── stringResources.h │ │ ├── usdSyntaxConfig.json │ │ ├── usdSyntaxHighlighter.cpp │ │ ├── usdSyntaxHighlighter.h │ │ ├── warningDialogs.cpp │ │ └── warningDialogs.h └── usdUfe │ ├── CMakeLists.txt │ ├── base │ ├── CMakeLists.txt │ ├── api.h │ ├── debugCodes.h │ ├── forwardDeclares.h │ ├── tokens.cpp │ ├── tokens.h │ └── usdUfe.h.src │ ├── doc │ └── EditRouting.md │ ├── python │ ├── CMakeLists.txt │ ├── __init__.py │ ├── module.cpp │ ├── wrapClipboard.cpp │ ├── wrapCommands.cpp │ ├── wrapEditRouter.cpp │ ├── wrapGlobal.cpp │ ├── wrapTokens.cpp │ ├── wrapUICallback.cpp │ └── wrapUtils.cpp │ ├── resources │ ├── CMakeLists.txt │ └── icons │ │ ├── CMakeLists.txt │ │ ├── out_USD_BlendShape_100.png │ │ ├── out_USD_BlendShape_150.png │ │ ├── out_USD_BlendShape_200.png │ │ ├── out_USD_Camera_100.png │ │ ├── out_USD_Camera_150.png │ │ ├── out_USD_Camera_200.png │ │ ├── out_USD_Capsule_100.png │ │ ├── out_USD_Capsule_150.png │ │ ├── out_USD_Capsule_200.png │ │ ├── out_USD_Class_100.png │ │ ├── out_USD_Class_150.png │ │ ├── out_USD_Class_200.png │ │ ├── out_USD_CompArcBadgeV_100.png │ │ ├── out_USD_CompArcBadgeV_150.png │ │ ├── out_USD_CompArcBadgeV_200.png │ │ ├── out_USD_CompArcBadge_100.png │ │ ├── out_USD_CompArcBadge_150.png │ │ ├── out_USD_CompArcBadge_200.png │ │ ├── out_USD_Cone_100.png │ │ ├── out_USD_Cone_150.png │ │ ├── out_USD_Cone_200.png │ │ ├── out_USD_Cube_100.png │ │ ├── out_USD_Cube_150.png │ │ ├── out_USD_Cube_200.png │ │ ├── out_USD_Cylinder_100.png │ │ ├── out_USD_Cylinder_150.png │ │ ├── out_USD_Cylinder_200.png │ │ ├── out_USD_Def_100.png │ │ ├── out_USD_Def_150.png │ │ ├── out_USD_Def_200.png │ │ ├── out_USD_GeomSubset_100.png │ │ ├── out_USD_GeomSubset_150.png │ │ ├── out_USD_GeomSubset_200.png │ │ ├── out_USD_LightFilter_100.png │ │ ├── out_USD_LightFilter_150.png │ │ ├── out_USD_LightFilter_200.png │ │ ├── out_USD_LightPortal_100.png │ │ ├── out_USD_LightPortal_150.png │ │ ├── out_USD_LightPortal_200.png │ │ ├── out_USD_Material_100.png │ │ ├── out_USD_Material_150.png │ │ ├── out_USD_Material_200.png │ │ ├── out_USD_Mesh_100.png │ │ ├── out_USD_Mesh_150.png │ │ ├── out_USD_Mesh_200.png │ │ ├── out_USD_NodeGraph_100.png │ │ ├── out_USD_NodeGraph_150.png │ │ ├── out_USD_NodeGraph_200.png │ │ ├── out_USD_NurbsPatch_100.png │ │ ├── out_USD_NurbsPatch_150.png │ │ ├── out_USD_NurbsPatch_200.png │ │ ├── out_USD_PhysicsJoint_100.png │ │ ├── out_USD_PhysicsJoint_150.png │ │ ├── out_USD_PhysicsJoint_200.png │ │ ├── out_USD_Plane_100.png │ │ ├── out_USD_Plane_150.png │ │ ├── out_USD_Plane_200.png │ │ ├── out_USD_PluginLight_100.png │ │ ├── out_USD_PluginLight_150.png │ │ ├── out_USD_PluginLight_200.png │ │ ├── out_USD_PointInstancer_100.png │ │ ├── out_USD_PointInstancer_150.png │ │ ├── out_USD_PointInstancer_200.png │ │ ├── out_USD_Points_100.png │ │ ├── out_USD_Points_150.png │ │ ├── out_USD_Points_200.png │ │ ├── out_USD_Procedural_100.png │ │ ├── out_USD_Procedural_150.png │ │ ├── out_USD_Procedural_200.png │ │ ├── out_USD_Render_100.png │ │ ├── out_USD_Render_150.png │ │ ├── out_USD_Render_200.png │ │ ├── out_USD_Scope_100.png │ │ ├── out_USD_Scope_150.png │ │ ├── out_USD_Scope_200.png │ │ ├── out_USD_Shader_100.png │ │ ├── out_USD_Shader_150.png │ │ ├── out_USD_Shader_200.png │ │ ├── out_USD_SkelAnimation_100.png │ │ ├── out_USD_SkelAnimation_150.png │ │ ├── out_USD_SkelAnimation_200.png │ │ ├── out_USD_SkelRoot_100.png │ │ ├── out_USD_SkelRoot_150.png │ │ ├── out_USD_SkelRoot_200.png │ │ ├── out_USD_Skeleton_100.png │ │ ├── out_USD_Skeleton_150.png │ │ ├── out_USD_Skeleton_200.png │ │ ├── out_USD_Sphere_100.png │ │ ├── out_USD_Sphere_150.png │ │ ├── out_USD_Sphere_200.png │ │ ├── out_USD_UI_100.png │ │ ├── out_USD_UI_150.png │ │ ├── out_USD_UI_200.png │ │ ├── out_USD_UsdGeomCurves_100.png │ │ ├── out_USD_UsdGeomCurves_150.png │ │ ├── out_USD_UsdGeomCurves_200.png │ │ ├── out_USD_UsdGeomXformable_100.png │ │ ├── out_USD_UsdGeomXformable_150.png │ │ ├── out_USD_UsdGeomXformable_200.png │ │ ├── out_USD_UsdLuxBoundableLightBase_100.png │ │ ├── out_USD_UsdLuxBoundableLightBase_150.png │ │ ├── out_USD_UsdLuxBoundableLightBase_200.png │ │ ├── out_USD_UsdLuxNonboundableLightBase_100.png │ │ ├── out_USD_UsdLuxNonboundableLightBase_150.png │ │ ├── out_USD_UsdLuxNonboundableLightBase_200.png │ │ ├── out_USD_UsdTyped_100.png │ │ ├── out_USD_UsdTyped_150.png │ │ ├── out_USD_UsdTyped_200.png │ │ ├── out_USD_Volume_100.png │ │ ├── out_USD_Volume_150.png │ │ └── out_USD_Volume_200.png │ ├── ufe │ ├── CMakeLists.txt │ ├── Global.cpp │ ├── Global.h │ ├── SetVariantSelectionCommand.cpp │ ├── SetVariantSelectionCommand.h │ ├── StagesSubject.cpp │ ├── StagesSubject.h │ ├── UfeNotifGuard.cpp │ ├── UfeNotifGuard.h │ ├── UfeVersionCompat.h │ ├── UsdAttribute.cpp │ ├── UsdAttribute.h │ ├── UsdAttributeHolder.cpp │ ├── UsdAttributeHolder.h │ ├── UsdAttributes.cpp │ ├── UsdAttributes.h │ ├── UsdAttributesHandler.cpp │ ├── UsdAttributesHandler.h │ ├── UsdCamera.cpp │ ├── UsdCamera.h │ ├── UsdCameraHandler.cpp │ ├── UsdCameraHandler.h │ ├── UsdClipboard.cpp │ ├── UsdClipboard.h │ ├── UsdClipboardCommands.cpp │ ├── UsdClipboardCommands.h │ ├── UsdClipboardHandler.cpp │ ├── UsdClipboardHandler.h │ ├── UsdContextOps.cpp │ ├── UsdContextOps.h │ ├── UsdContextOpsHandler.cpp │ ├── UsdContextOpsHandler.h │ ├── UsdHierarchy.cpp │ ├── UsdHierarchy.h │ ├── UsdHierarchyHandler.cpp │ ├── UsdHierarchyHandler.h │ ├── UsdObject3d.cpp │ ├── UsdObject3d.h │ ├── UsdObject3dHandler.cpp │ ├── UsdObject3dHandler.h │ ├── UsdRootChildHierarchy.cpp │ ├── UsdRootChildHierarchy.h │ ├── UsdSceneItem.cpp │ ├── UsdSceneItem.h │ ├── UsdSceneItemOps.cpp │ ├── UsdSceneItemOps.h │ ├── UsdSceneItemOpsHandler.cpp │ ├── UsdSceneItemOpsHandler.h │ ├── UsdShaderAttributeDef.cpp │ ├── UsdShaderAttributeDef.h │ ├── UsdShaderAttributeHolder.cpp │ ├── UsdShaderAttributeHolder.h │ ├── UsdUIInfoHandler.cpp │ ├── UsdUIInfoHandler.h │ ├── UsdUndoAddNewPrimCommand.cpp │ ├── UsdUndoAddNewPrimCommand.h │ ├── UsdUndoAddPayloadCommand.cpp │ ├── UsdUndoAddPayloadCommand.h │ ├── UsdUndoAddRefOrPayloadCommand.cpp │ ├── UsdUndoAddRefOrPayloadCommand.h │ ├── UsdUndoAddReferenceCommand.cpp │ ├── UsdUndoAddReferenceCommand.h │ ├── UsdUndoAttributesCommands.cpp │ ├── UsdUndoAttributesCommands.h │ ├── UsdUndoClearDefaultPrimCommand.cpp │ ├── UsdUndoClearDefaultPrimCommand.h │ ├── UsdUndoClearPayloadsCommand.cpp │ ├── UsdUndoClearPayloadsCommand.h │ ├── UsdUndoClearReferencesCommand.cpp │ ├── UsdUndoClearReferencesCommand.h │ ├── UsdUndoClearSceneItemMetadataCommand.cpp │ ├── UsdUndoClearSceneItemMetadataCommand.h │ ├── UsdUndoCreateGroupCommand.cpp │ ├── UsdUndoCreateGroupCommand.h │ ├── UsdUndoDeleteCommand.cpp │ ├── UsdUndoDeleteCommand.h │ ├── UsdUndoDuplicateCommand.cpp │ ├── UsdUndoDuplicateCommand.h │ ├── UsdUndoDuplicateSelectionCommand.cpp │ ├── UsdUndoDuplicateSelectionCommand.h │ ├── UsdUndoInsertChildCommand.cpp │ ├── UsdUndoInsertChildCommand.h │ ├── UsdUndoLongDurationCommand.cpp │ ├── UsdUndoLongDurationCommand.h │ ├── UsdUndoPayloadCommand.cpp │ ├── UsdUndoPayloadCommand.h │ ├── UsdUndoReloadRefCommand.cpp │ ├── UsdUndoReloadRefCommand.h │ ├── UsdUndoRenameCommand.cpp │ ├── UsdUndoRenameCommand.h │ ├── UsdUndoReorderCommand.cpp │ ├── UsdUndoReorderCommand.h │ ├── UsdUndoSelectAfterCommand.cpp │ ├── UsdUndoSelectAfterCommand.h │ ├── UsdUndoSetDefaultPrimCommand.cpp │ ├── UsdUndoSetDefaultPrimCommand.h │ ├── UsdUndoSetKindCommand.cpp │ ├── UsdUndoSetKindCommand.h │ ├── UsdUndoSetSceneItemMetadataCommand.cpp │ ├── UsdUndoSetSceneItemMetadataCommand.h │ ├── UsdUndoToggleActiveCommand.cpp │ ├── UsdUndoToggleActiveCommand.h │ ├── UsdUndoToggleInstanceableCommand.cpp │ ├── UsdUndoToggleInstanceableCommand.h │ ├── UsdUndoUngroupCommand.cpp │ ├── UsdUndoUngroupCommand.h │ ├── UsdUndoVisibleCommand.cpp │ ├── UsdUndoVisibleCommand.h │ ├── UsdUndoableCommand.cpp │ ├── UsdUndoableCommand.h │ ├── Utils.cpp │ ├── Utils.h │ └── trf │ │ ├── CMakeLists.txt │ │ ├── UsdPointInstanceModifierBase.h │ │ ├── UsdPointInstanceOrientationModifier.cpp │ │ ├── UsdPointInstanceOrientationModifier.h │ │ ├── UsdPointInstancePositionModifier.cpp │ │ ├── UsdPointInstancePositionModifier.h │ │ ├── UsdPointInstanceScaleModifier.cpp │ │ ├── UsdPointInstanceScaleModifier.h │ │ ├── UsdPointInstanceUndoableCommands.h │ │ ├── UsdRotateUndoableCommand.cpp │ │ ├── UsdRotateUndoableCommand.h │ │ ├── UsdScaleUndoableCommand.cpp │ │ ├── UsdScaleUndoableCommand.h │ │ ├── UsdSetXformOpUndoableCommandBase.cpp │ │ ├── UsdSetXformOpUndoableCommandBase.h │ │ ├── UsdTRSUndoableCommandBase.cpp │ │ ├── UsdTRSUndoableCommandBase.h │ │ ├── UsdTransform3d.md │ │ ├── UsdTransform3dBase.cpp │ │ ├── UsdTransform3dBase.h │ │ ├── UsdTransform3dCommonAPI.cpp │ │ ├── UsdTransform3dCommonAPI.h │ │ ├── UsdTransform3dMatrixOp.cpp │ │ ├── UsdTransform3dMatrixOp.h │ │ ├── UsdTransform3dPointInstance.cpp │ │ ├── UsdTransform3dPointInstance.h │ │ ├── UsdTransform3dRead.cpp │ │ ├── UsdTransform3dRead.h │ │ ├── UsdTransform3dReadImpl.cpp │ │ ├── UsdTransform3dReadImpl.h │ │ ├── UsdTransform3dSetObjectMatrix.cpp │ │ ├── UsdTransform3dSetObjectMatrix.h │ │ ├── UsdTransform3dUndoableCommands.cpp │ │ ├── UsdTransform3dUndoableCommands.h │ │ ├── UsdTranslateUndoableCommand.cpp │ │ ├── UsdTranslateUndoableCommand.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── XformOpUtils.cpp │ │ └── XformOpUtils.h │ ├── undo │ ├── CMakeLists.txt │ ├── UsdUndoBlock.cpp │ ├── UsdUndoBlock.h │ ├── UsdUndoManager.cpp │ ├── UsdUndoManager.h │ ├── UsdUndoStateDelegate.cpp │ ├── UsdUndoStateDelegate.h │ ├── UsdUndoableItem.cpp │ └── UsdUndoableItem.h │ ├── usdUfe_version.info │ └── utils │ ├── ALHalf.h │ ├── CMakeLists.txt │ ├── SIMD.h │ ├── Utils.cpp │ ├── Utils.h │ ├── diffAttributes.cpp │ ├── diffCore.cpp │ ├── diffCore.h │ ├── diffDictionaries.cpp │ ├── diffLists.cpp │ ├── diffMetadatas.cpp │ ├── diffPrims.cpp │ ├── diffPrims.h │ ├── diffRelationships.cpp │ ├── diffValues.cpp │ ├── editRouter.cpp │ ├── editRouter.h │ ├── editRouterContext.cpp │ ├── editRouterContext.h │ ├── editability.cpp │ ├── editability.h │ ├── layers.cpp │ ├── layers.h │ ├── loadRules.cpp │ ├── loadRules.h │ ├── loadRulesText.cpp │ ├── mergePrims.cpp │ ├── mergePrims.h │ ├── mergePrimsOptions.cpp │ ├── mergePrimsOptions.h │ ├── schemas.cpp │ ├── schemas.h │ ├── uiCallback.cpp │ ├── uiCallback.h │ ├── usdUtils.cpp │ └── usdUtils.h ├── modules ├── alUSD.mod.template ├── alUSD_Win.mod.template ├── mayaUSD.mod.template ├── mayaUSD_Win.mod.template ├── mtoh.mod.template ├── pxrUSD.mod.template └── pxrUSD_Win.mod.template ├── plugin ├── adsk │ ├── CMakeLists.txt │ ├── icons │ │ ├── CMakeLists.txt │ │ ├── USD_generic_100.png │ │ ├── USD_generic_150.png │ │ ├── USD_generic_200.png │ │ ├── USD_stage_100.png │ │ ├── USD_stage_150.png │ │ ├── USD_stage_200.png │ │ ├── mayaUsdProxyShape.svg │ │ ├── menu_options_100.png │ │ ├── menu_options_150.png │ │ ├── menu_options_200.png │ │ ├── out_mayaUsdProxyShape_100.png │ │ ├── out_mayaUsdProxyShape_150.png │ │ ├── out_mayaUsdProxyShape_200.png │ │ ├── toggle_off_100.png │ │ ├── toggle_off_150.png │ │ ├── toggle_off_200.png │ │ ├── toggle_on_100.png │ │ ├── toggle_on_150.png │ │ └── toggle_on_200.png │ ├── plugin │ │ ├── CMakeLists.txt │ │ ├── ProxyShape.cpp │ │ ├── ProxyShape.h │ │ ├── ProxyShapeListener.cpp │ │ ├── ProxyShapeListener.h │ │ ├── adskExportCommand.cpp │ │ ├── adskExportCommand.h │ │ ├── adskImportCommand.cpp │ │ ├── adskImportCommand.h │ │ ├── adskListJobContextsCommand.cpp │ │ ├── adskListJobContextsCommand.h │ │ ├── adskListShadingModesCommand.cpp │ │ ├── adskListShadingModesCommand.h │ │ ├── adskMaterialCommands.cpp │ │ ├── adskMaterialCommands.h │ │ ├── adskStageLoadUnloadCommands.cpp │ │ ├── adskStageLoadUnloadCommands.h │ │ ├── base │ │ │ └── api.h │ │ ├── drawUtils.cpp │ │ ├── drawUtils.h │ │ ├── exportTranslator.cpp │ │ ├── exportTranslator.h │ │ ├── geomNode.cpp │ │ ├── geomNode.h │ │ ├── gizmoGeometryOverride.cpp │ │ ├── gizmoGeometryOverride.h │ │ ├── gizmoShape.cpp │ │ ├── gizmoShape.h │ │ ├── importTranslator.cpp │ │ ├── importTranslator.h │ │ ├── mayaUsdInfoCommand.cpp │ │ ├── mayaUsdInfoCommand.h │ │ └── plugin.cpp │ └── scripts │ │ ├── AETemplateHelpers.py │ │ ├── AEmayaUsdProxyShapeBaseTemplate.mel │ │ ├── AEmayaUsdProxyShapeTemplate.mel │ │ ├── CMakeLists.txt │ │ ├── USDMenuProc.mel │ │ ├── mayaUSDRegisterStrings.mel │ │ ├── mayaUSDRegisterStrings.py │ │ ├── mayaUsdMenu.mel │ │ ├── mayaUsdMenu.py │ │ ├── mayaUsdTranslatorExport.mel │ │ ├── mayaUsdTranslatorImport.mel │ │ ├── mayaUsd_AdskAssetResolver.py │ │ ├── mayaUsd_USDRootFileRelative.py │ │ ├── mayaUsd_createStageFromAsset.mel │ │ ├── mayaUsd_createStageFromFile.mel │ │ ├── mayaUsd_createStageWithNewLayer.py │ │ ├── mayaUsd_exportHelpers.py │ │ ├── mayaUsd_fileOptions.mel │ │ ├── mayaUsd_imageFileDialogs.mel │ │ ├── mayaUsd_layerEditorFileDialogs.mel │ │ ├── mayaUsd_pluginBatchLoad.mel │ │ ├── mayaUsd_pluginBatchUnload.mel │ │ ├── mayaUsd_pluginUICreation.mel │ │ ├── mayaUsd_pluginUIDeletion.mel │ │ ├── mayaUsd_preferenceTab.mel │ │ ├── mayaUsd_selectionUtils.py │ │ └── usdFileSaveOptions.mel ├── al │ ├── ALUsdMayaConfig.cmake.in │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── MIGRATION_GUIDE.md │ ├── README.md │ ├── docs │ │ ├── animation.md │ │ ├── assetresolution.md │ │ ├── basicUsage.md │ │ ├── build.md │ │ ├── cameraProxy.md │ │ ├── contributing.md │ │ ├── developer.md │ │ ├── events.md │ │ ├── extraDataTranslatorPlugins.md │ │ ├── faq.md │ │ ├── geometry.md │ │ ├── importExport.md │ │ ├── layers.md │ │ ├── lock.md │ │ ├── proxyShape.md │ │ ├── pxrcomparison.md │ │ ├── python.md │ │ ├── schemaTranslatorPlugins.md │ │ ├── testing.md │ │ ├── translation.md │ │ └── workflows.md │ ├── doxygen │ │ ├── Doxyfile │ │ └── mainpage.dox │ ├── lib │ │ ├── AL_USDMaya │ │ │ ├── AL │ │ │ │ ├── docpages │ │ │ │ │ ├── docs_codegroups.h │ │ │ │ │ ├── docs_events.h │ │ │ │ │ ├── docs_mayaevents.h │ │ │ │ │ ├── docs_mayahelpers.h │ │ │ │ │ └── docs_translator_plugins.h │ │ │ │ └── usdmaya │ │ │ │ │ ├── Api.h │ │ │ │ │ ├── DebugCodes.cpp │ │ │ │ │ ├── DebugCodes.h │ │ │ │ │ ├── ForwardDeclares.h │ │ │ │ │ ├── Global.cpp │ │ │ │ │ ├── Global.h │ │ │ │ │ ├── Metadata.cpp │ │ │ │ │ ├── Metadata.h │ │ │ │ │ ├── PluginRegister.h │ │ │ │ │ ├── StageCache.cpp │ │ │ │ │ ├── StageCache.h │ │ │ │ │ ├── TransformOperation.cpp │ │ │ │ │ ├── TransformOperation.h │ │ │ │ │ ├── TypeIDs.h │ │ │ │ │ ├── Version.h │ │ │ │ │ ├── cmds │ │ │ │ │ ├── CreateUsdPrim.cpp │ │ │ │ │ ├── CreateUsdPrim.h │ │ │ │ │ ├── DebugCommands.cpp │ │ │ │ │ ├── DebugCommands.h │ │ │ │ │ ├── EventCommand.cpp │ │ │ │ │ ├── EventCommand.h │ │ │ │ │ ├── LayerCommands.cpp │ │ │ │ │ ├── LayerCommands.h │ │ │ │ │ ├── ListTranslators.cpp │ │ │ │ │ ├── ListTranslators.h │ │ │ │ │ ├── ProxyShapeCommands.cpp │ │ │ │ │ ├── ProxyShapeCommands.h │ │ │ │ │ ├── ProxyShapePostLoadProcess.cpp │ │ │ │ │ ├── ProxyShapePostLoadProcess.h │ │ │ │ │ ├── RendererCommands.cpp │ │ │ │ │ ├── RendererCommands.h │ │ │ │ │ ├── SyncFileIOGui.cpp │ │ │ │ │ ├── SyncFileIOGui.h │ │ │ │ │ ├── UnloadPrim.cpp │ │ │ │ │ └── UnloadPrim.h │ │ │ │ │ ├── fileio │ │ │ │ │ ├── AnimationTranslator.cpp │ │ │ │ │ ├── AnimationTranslator.h │ │ │ │ │ ├── Export.cpp │ │ │ │ │ ├── Export.h │ │ │ │ │ ├── ExportParams.h │ │ │ │ │ ├── ExportTranslator.cpp │ │ │ │ │ ├── ExportTranslator.h │ │ │ │ │ ├── Import.cpp │ │ │ │ │ ├── Import.h │ │ │ │ │ ├── ImportParams.h │ │ │ │ │ ├── ImportTranslator.cpp │ │ │ │ │ ├── ImportTranslator.h │ │ │ │ │ ├── NodeFactory.cpp │ │ │ │ │ ├── NodeFactory.h │ │ │ │ │ ├── SchemaPrims.cpp │ │ │ │ │ ├── SchemaPrims.h │ │ │ │ │ ├── TransformIterator.cpp │ │ │ │ │ ├── TransformIterator.h │ │ │ │ │ └── translators │ │ │ │ │ │ ├── DagNodeTranslator.cpp │ │ │ │ │ │ ├── DagNodeTranslator.h │ │ │ │ │ │ ├── DgNodeTranslator.cpp │ │ │ │ │ │ ├── DgNodeTranslator.h │ │ │ │ │ │ ├── ExtraDataPlugin.cpp │ │ │ │ │ │ ├── ExtraDataPlugin.h │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── TestExtraDataPlugin.cpp │ │ │ │ │ │ ├── TestExtraDataPlugin.h │ │ │ │ │ │ ├── TransformTranslator.cpp │ │ │ │ │ │ ├── TransformTranslator.h │ │ │ │ │ │ ├── TranslatorBase.cpp │ │ │ │ │ │ ├── TranslatorBase.h │ │ │ │ │ │ ├── TranslatorContext.cpp │ │ │ │ │ │ ├── TranslatorContext.h │ │ │ │ │ │ ├── TranslatorTestPlugin.cpp │ │ │ │ │ │ ├── TranslatorTestPlugin.h │ │ │ │ │ │ ├── TranslatorTestType.cpp │ │ │ │ │ │ ├── TranslatorTestType.h │ │ │ │ │ │ ├── wrapTranslatorBase.cpp │ │ │ │ │ │ └── wrapTranslatorContext.cpp │ │ │ │ │ ├── module.cpp │ │ │ │ │ ├── moduleDeps.cpp │ │ │ │ │ ├── nodes │ │ │ │ │ ├── BasicTransformationMatrix.cpp │ │ │ │ │ ├── BasicTransformationMatrix.h │ │ │ │ │ ├── Engine.cpp │ │ │ │ │ ├── Engine.h │ │ │ │ │ ├── Layer.cpp │ │ │ │ │ ├── Layer.h │ │ │ │ │ ├── LayerManager.cpp │ │ │ │ │ ├── LayerManager.h │ │ │ │ │ ├── MeshAnimCreator.cpp │ │ │ │ │ ├── MeshAnimCreator.h │ │ │ │ │ ├── MeshAnimDeformer.cpp │ │ │ │ │ ├── MeshAnimDeformer.h │ │ │ │ │ ├── ProxyShape.cpp │ │ │ │ │ ├── ProxyShape.h │ │ │ │ │ ├── ProxyShapeSelection.cpp │ │ │ │ │ ├── ProxyUsdGeomCamera.cpp │ │ │ │ │ ├── ProxyUsdGeomCamera.h │ │ │ │ │ ├── RendererManager.cpp │ │ │ │ │ ├── RendererManager.h │ │ │ │ │ ├── Scope.cpp │ │ │ │ │ ├── Scope.h │ │ │ │ │ ├── Transform.cpp │ │ │ │ │ ├── Transform.h │ │ │ │ │ ├── TransformationMatrix.cpp │ │ │ │ │ ├── TransformationMatrix.h │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── PrimFilter.cpp │ │ │ │ │ │ ├── PrimFilter.h │ │ │ │ │ │ ├── ProxyShapeMetaData.cpp │ │ │ │ │ │ └── ProxyShapeVariantFallbacks.cpp │ │ │ │ │ ├── wrapLayerManager.cpp │ │ │ │ │ └── wrapProxyShape.cpp │ │ │ │ │ └── wrapStageCache.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile │ │ │ ├── __init__.py │ │ │ └── plugInfo.json │ │ └── CMakeLists.txt │ ├── mayatest │ │ ├── AL │ │ │ └── maya │ │ │ │ └── test │ │ │ │ ├── Api.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── testHarness.cpp │ │ │ │ ├── testHarness.h │ │ │ │ ├── testHelpers.cpp │ │ │ │ └── testHelpers.h │ │ └── CMakeLists.txt │ ├── mayautils │ │ ├── AL │ │ │ └── maya │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── event │ │ │ │ ├── Api.h │ │ │ │ ├── MayaEventManager.cpp │ │ │ │ └── MayaEventManager.h │ │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mayaplugintest │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ ├── test_maya_MenuBuilder.cpp │ │ │ │ │ ├── test_maya_NodeHelper.cpp │ │ │ │ │ ├── test_mobjectmap.cpp │ │ │ │ │ └── utils │ │ │ │ │ ├── CommandGuiHelperTest.cpp │ │ │ │ │ ├── CommandGuiHelperTest.h │ │ │ │ │ ├── NodeHelperUnitTest.cpp │ │ │ │ │ ├── NodeHelperUnitTest.h │ │ │ │ │ └── PluginTranslatorOptionsTest.cpp │ │ │ │ └── utils │ │ │ │ ├── Api.h │ │ │ │ ├── CommandGuiHelper.cpp │ │ │ │ ├── CommandGuiHelper.h │ │ │ │ ├── DebugCodes.h │ │ │ │ ├── FileTranslatorBase.h │ │ │ │ ├── FileTranslatorOptions.cpp │ │ │ │ ├── FileTranslatorOptions.h │ │ │ │ ├── ForwardDeclares.h │ │ │ │ ├── MObjectMap.h │ │ │ │ ├── MayaHelperMacros.h │ │ │ │ ├── MenuBuilder.cpp │ │ │ │ ├── MenuBuilder.h │ │ │ │ ├── NodeHelper.cpp │ │ │ │ ├── NodeHelper.h │ │ │ │ ├── PluginTranslatorOptions.cpp │ │ │ │ ├── PluginTranslatorOptions.h │ │ │ │ ├── Utils.cpp │ │ │ │ └── Utils.h │ │ └── CMakeLists.txt │ ├── plugin │ │ ├── AL_USDMayaPlugin │ │ │ ├── Api.h │ │ │ ├── CMakeLists.txt │ │ │ └── plugin.cpp │ │ ├── AL_USDMayaTestPlugin │ │ │ ├── AL │ │ │ │ ├── maya │ │ │ │ │ ├── test_EventHandler.cpp │ │ │ │ │ ├── test_MatrixToSRT.cpp │ │ │ │ │ └── test_MayaEventManager.cpp │ │ │ │ └── usdmaya │ │ │ │ │ ├── commands │ │ │ │ │ ├── test_ExportCommands.cpp │ │ │ │ │ ├── test_LayerCommands.cpp │ │ │ │ │ ├── test_LayerManagerCommands.cpp │ │ │ │ │ ├── test_ProxyShapeImport.cpp │ │ │ │ │ └── test_TranslateCommand.cpp │ │ │ │ │ ├── fileio │ │ │ │ │ ├── export_blendshape.cpp │ │ │ │ │ ├── export_constraints.cpp │ │ │ │ │ ├── export_ik.cpp │ │ │ │ │ ├── export_import_instancing.cpp │ │ │ │ │ ├── export_lattice.cpp │ │ │ │ │ ├── export_misc.cpp │ │ │ │ │ ├── export_multiple_shapes.cpp │ │ │ │ │ ├── export_nonlinear.cpp │ │ │ │ │ ├── export_unmerged.cpp │ │ │ │ │ ├── import_instances.cpp │ │ │ │ │ ├── import_playback_range.cpp │ │ │ │ │ └── test_activeInActiveTranslators.cpp │ │ │ │ │ ├── nodes │ │ │ │ │ ├── proxy │ │ │ │ │ │ └── test_PrimFilter.cpp │ │ │ │ │ ├── test_ActiveInactive.cpp │ │ │ │ │ ├── test_ExtraDataPlugin.cpp │ │ │ │ │ ├── test_LayerManager.cpp │ │ │ │ │ ├── test_ProxyShape.cpp │ │ │ │ │ ├── test_ProxyShapeSelectabilityDB.cpp │ │ │ │ │ ├── test_ProxyUsdGeomCamera.cpp │ │ │ │ │ ├── test_ScopeMatrix.cpp │ │ │ │ │ ├── test_Transform.cpp │ │ │ │ │ ├── test_TransformMatrix.cpp │ │ │ │ │ ├── test_TranslatorContext.cpp │ │ │ │ │ ├── test_VariantFallbacks.cpp │ │ │ │ │ └── test_lockPrims.cpp │ │ │ │ │ ├── test_DiffGeom.cpp │ │ │ │ │ └── test_DiffPrimVar.cpp │ │ │ ├── Api.h │ │ │ ├── CMakeLists.txt │ │ │ ├── plugin.cpp │ │ │ ├── py │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── testCommands.py │ │ │ │ ├── testLayerManager.py │ │ │ │ ├── testProxyAccessor.py │ │ │ │ ├── testProxyShape.py │ │ │ │ ├── testTranslators.py │ │ │ │ └── testUSDMayaPythonModuleOnly.py │ │ │ ├── test_data │ │ │ │ ├── animated_camera.usda │ │ │ │ ├── cube.usda │ │ │ │ ├── cube_displayColor.usda │ │ │ │ ├── cube_moving_zaxis.usda │ │ │ │ ├── examplecubetranslator.py │ │ │ │ ├── exclude_prim_variants.usda │ │ │ │ ├── inactivetest.usda │ │ │ │ ├── layer1.usda │ │ │ │ ├── layer2.usda │ │ │ │ ├── lock_prim_variants.usda │ │ │ │ ├── lock_prim_variants2.usda │ │ │ │ ├── lock_prim_variants3.usda │ │ │ │ ├── multiple_layers.usda │ │ │ │ ├── referencedLayer.usda │ │ │ │ ├── resync_root.usda │ │ │ │ ├── resync_sublayer.usda │ │ │ │ ├── rig_bindings.usda │ │ │ │ ├── root.usda │ │ │ │ ├── selectable_prim_variants.usda │ │ │ │ ├── sphere.usda │ │ │ │ ├── sphere2.usda │ │ │ │ ├── subLayer.usda │ │ │ │ ├── translator_update_postimport.usda │ │ │ │ ├── unknowntypetranslator.py │ │ │ │ └── variant_fallbacks.usda │ │ │ ├── test_translators_AnimationTranslator.cpp │ │ │ ├── test_translators_CameraTranslator.cpp │ │ │ ├── test_translators_DgTranslator.cpp │ │ │ ├── test_translators_MeshTranslator.cpp │ │ │ ├── test_translators_NurbsCurveTranslator.cpp │ │ │ ├── test_translators_PythonBindings.cpp │ │ │ ├── test_translators_TransformTranslator.cpp │ │ │ ├── test_translators_Translator.cpp │ │ │ ├── test_usdmaya.cpp │ │ │ ├── test_usdmaya.h │ │ │ └── test_usdmaya_AttributeType.cpp │ │ └── CMakeLists.txt │ ├── samples │ │ ├── animatedCamera1.usda │ │ ├── colours │ │ │ ├── faceColours.ma │ │ │ ├── meshColours.usda │ │ │ └── meshExcludeFromProxy.usda │ │ ├── simpleAnimatedCamera1.ma │ │ └── testchar_animallogo01_surfgeo_highres.usd │ ├── schemas │ │ ├── AL │ │ │ └── usd │ │ │ │ └── schemas │ │ │ │ ├── maya │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FrameRange.cpp │ │ │ │ ├── FrameRange.h │ │ │ │ ├── ModelAPI.cpp │ │ │ │ ├── ModelAPI.h │ │ │ │ ├── ModuleDeps.cpp │ │ │ │ ├── __init__.py │ │ │ │ ├── api.h │ │ │ │ ├── generatedSchema.usda │ │ │ │ ├── module.cpp │ │ │ │ ├── plugInfo.json.in │ │ │ │ ├── schema.usda.in │ │ │ │ ├── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── testMayaSchemas.cpp │ │ │ │ │ └── testModelAPI.cpp │ │ │ │ ├── tokens.cpp │ │ │ │ ├── tokens.h │ │ │ │ ├── wrapFrameRange.cpp │ │ │ │ ├── wrapModelAPI.cpp │ │ │ │ └── wrapTokens.cpp │ │ │ │ └── mayatest │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ExamplePolyCubeNode.h │ │ │ │ ├── ModuleDeps.cpp │ │ │ │ ├── __init__.py │ │ │ │ ├── api.h │ │ │ │ ├── module.cpp │ │ │ │ ├── plugInfo.json.in │ │ │ │ ├── schema.usda.in │ │ │ │ └── tokens.h │ │ ├── CMakeLists.txt │ │ └── usd │ │ │ └── schema.usda │ ├── translators │ │ ├── CMakeLists.txt │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── CommonTranslatorOptions.cpp │ │ ├── CommonTranslatorOptions.h │ │ ├── DirectionalLight.cpp │ │ ├── DirectionalLight.h │ │ ├── FrameRange.cpp │ │ ├── FrameRange.h │ │ ├── MayaReference.cpp │ │ ├── MayaReference.h │ │ ├── Mesh.cpp │ │ ├── Mesh.h │ │ ├── NurbsCurve.cpp │ │ ├── NurbsCurve.h │ │ ├── README.md │ │ ├── plugInfo.json.in │ │ ├── pxrUsdTranslators │ │ │ ├── CMakeLists.txt │ │ │ ├── ProxyShapeTranslator.cpp │ │ │ ├── ProxyShapeTranslator.h │ │ │ ├── plugInfo.json.in │ │ │ ├── plugin.cpp │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sphere2.usda │ │ │ │ └── testPxrTranslators.py │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── cube.ma │ │ │ ├── sphere.usda │ │ │ ├── testDirectionalLight.usda │ │ │ ├── testFrameRange.usda │ │ │ ├── testFrameRangeCurrentFrame.usda │ │ │ ├── testFrameRangeFallback.usda │ │ │ ├── testFrameRangeNoImpact.usda │ │ │ ├── testMayaRef.usda │ │ │ ├── testMayaRefLoading.usda │ │ │ ├── testMayaRefStageA.usda │ │ │ ├── testMayaRefStageB.usda │ │ │ ├── testMayaRefUnloadable.usda │ │ │ ├── testMeshVariants.usda │ │ │ ├── testTranslatedPrimDisableClearIssue.usda │ │ │ ├── testTranslatedPrimDisableCrashIssue.usda │ │ │ ├── testTranslators.py │ │ │ └── translatortestutils.py │ ├── tutorials │ │ ├── endToEndMaya │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── USDMayaAnim.png │ │ │ ├── USDMayaScreenshotManip.png │ │ │ ├── assets │ │ │ │ ├── Ball │ │ │ │ │ ├── Ball.ma │ │ │ │ │ ├── Ball.maya.usd │ │ │ │ │ ├── Ball.shadingVariants.usda │ │ │ │ │ ├── Ball.usd │ │ │ │ │ ├── Ball_rig.ma │ │ │ │ │ └── tex │ │ │ │ │ │ ├── ball1.jpg │ │ │ │ │ │ ├── ball1.tex │ │ │ │ │ │ ├── ball4.jpg │ │ │ │ │ │ ├── ball4.tex │ │ │ │ │ │ ├── ball8.jpg │ │ │ │ │ │ ├── ball8.tex │ │ │ │ │ │ ├── ball9.jpg │ │ │ │ │ │ ├── ball9.tex │ │ │ │ │ │ ├── ballCue.jpg │ │ │ │ │ │ ├── ballCue.tex │ │ │ │ │ │ └── makeTex │ │ │ │ ├── Table │ │ │ │ │ ├── Table.ma │ │ │ │ │ ├── Table.maya.usd │ │ │ │ │ └── Table.usd │ │ │ │ ├── main_cam.usd │ │ │ │ ├── render.exr │ │ │ │ ├── shot.usd │ │ │ │ └── simple.katana │ │ │ ├── scripts │ │ │ │ ├── create_asset.py │ │ │ │ └── create_shot.py │ │ │ └── tutorial_scripts │ │ │ │ ├── add_set_to_s00.py │ │ │ │ ├── add_shadingVariants.py │ │ │ │ ├── create_Room_set.py │ │ │ │ └── prep_anim_shot_s00_01.py │ │ ├── frameRanges │ │ │ ├── README.md │ │ │ └── assets │ │ │ │ ├── frame_range_prim.usda │ │ │ │ └── frame_range_stage.usda │ │ ├── lock │ │ │ ├── LockPrims.png │ │ │ ├── README.md │ │ │ └── assets │ │ │ │ └── lock_hierarchy.usda │ │ ├── meshTranslation │ │ │ ├── README.md │ │ │ ├── ScaledSphere.png │ │ │ ├── Start.png │ │ │ ├── TranslatedPrim.png │ │ │ └── primitive_world.usda │ │ ├── selectability │ │ │ ├── AllSelectable.png │ │ │ ├── README.md │ │ │ ├── SelectablePrims.png │ │ │ └── assets │ │ │ │ ├── cone.abc │ │ │ │ ├── cube.abc │ │ │ │ ├── cylinder.abc │ │ │ │ ├── selectable_world.usda │ │ │ │ └── sphere.abc │ │ └── tutorialAssets │ │ │ ├── cone.usda │ │ │ ├── cube.usda │ │ │ ├── cylinder.usda │ │ │ └── sphere.usda │ ├── usdmayautils │ │ ├── AL │ │ │ └── usdmaya │ │ │ │ └── utils │ │ │ │ ├── AnimationTranslator.cpp │ │ │ │ ├── AnimationTranslator.h │ │ │ │ ├── Api.h │ │ │ │ ├── AttributeType.cpp │ │ │ │ ├── AttributeType.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DebugCodes.cpp │ │ │ │ ├── DebugCodes.h │ │ │ │ ├── DgNodeHelper.cpp │ │ │ │ ├── DgNodeHelper.h │ │ │ │ ├── DiffPrimVar.cpp │ │ │ │ ├── DiffPrimVar.h │ │ │ │ ├── ForwardDeclares.h │ │ │ │ ├── MeshUtils.cpp │ │ │ │ ├── MeshUtils.h │ │ │ │ ├── NurbsCurveUtils.cpp │ │ │ │ ├── NurbsCurveUtils.h │ │ │ │ ├── Utils.cpp │ │ │ │ └── Utils.h │ │ └── CMakeLists.txt │ ├── usdtransaction │ │ ├── AL │ │ │ ├── __init__.py │ │ │ └── usd │ │ │ │ ├── __init__.py │ │ │ │ └── transaction │ │ │ │ ├── Api.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Notice.cpp │ │ │ │ ├── Notice.h │ │ │ │ ├── README.md │ │ │ │ ├── Transaction.cpp │ │ │ │ ├── Transaction.h │ │ │ │ ├── TransactionManager.cpp │ │ │ │ ├── TransactionManager.h │ │ │ │ ├── __init__.py │ │ │ │ ├── module.cpp │ │ │ │ ├── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── testMain.cpp │ │ │ │ ├── testTransaction.cpp │ │ │ │ ├── testTransaction.py │ │ │ │ ├── testTransactionManager.cpp │ │ │ │ └── testTransactionManager.py │ │ │ │ ├── wrapNotice.cpp │ │ │ │ ├── wrapTransaction.cpp │ │ │ │ └── wrapTransactionManager.cpp │ │ ├── CMakeLists.txt │ │ └── plugInfo.json │ └── utils │ │ ├── AL │ │ ├── CMakeLists.txt │ │ └── event │ │ │ ├── Api.h │ │ │ ├── CMakeLists.txt │ │ │ ├── EventHandler.cpp │ │ │ └── EventHandler.h │ │ └── CMakeLists.txt └── pxr │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── cmake │ └── macros │ │ ├── Private.cmake │ │ ├── Public.cmake │ │ ├── compilePython.py │ │ ├── copyHeaderForBuild.cmake │ │ └── testWrapper.py │ ├── doc │ └── README.md │ └── maya │ ├── CMakeLists.txt │ ├── README.md │ ├── lib │ ├── CMakeLists.txt │ ├── pxrUsdMayaGL │ │ ├── CMakeLists.txt │ │ └── testenv │ │ │ ├── BatchRendererIsolateSelectionTest │ │ │ ├── CubeModel.usda │ │ │ └── IsolateSelectionTest.ma │ │ │ ├── InstancerDrawTest │ │ │ ├── CubeModel.png │ │ │ ├── CubeModel.usda │ │ │ ├── InstancerDrawTest.ma │ │ │ ├── baseline │ │ │ │ ├── InstancerTest_cards.png │ │ │ │ ├── InstancerTest_cards_legacyUsd.png │ │ │ │ ├── InstancerTest_cards_v1.png │ │ │ │ ├── InstancerTest_cards_v1_legacyUsd.png │ │ │ │ ├── InstancerTest_empty.png │ │ │ │ ├── InstancerTest_frame50.png │ │ │ │ ├── InstancerTest_frame50_legacyUsd.png │ │ │ │ ├── InstancerTest_frame50_v1.png │ │ │ │ ├── InstancerTest_frame50_v1_legacyUsd.png │ │ │ │ ├── InstancerTest_initial.png │ │ │ │ ├── InstancerTest_instance2.png │ │ │ │ ├── InstancerTest_instance2_legacyUsd.png │ │ │ │ ├── InstancerTest_instance2_v1.png │ │ │ │ └── InstancerTest_instance2_v1_legacyUsd.png │ │ │ └── nCache │ │ │ │ ├── nParticles.mcx │ │ │ │ └── nParticles.xml │ │ │ ├── RefAssemblyDrawRepresentationsTest │ │ │ ├── CubeModel.png │ │ │ ├── CubeModel.usda │ │ │ ├── RefAssemblyDrawRepresentationsTest.ma │ │ │ └── baseline │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Cards.png │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Cards_legacyUsd.png │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Cards_v1.png │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Cards_v1_legacyUsd.png │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Collapsed.png │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Expanded.png │ │ │ │ ├── RefAssemblyDrawRepresentationsTest_Full.png │ │ │ │ └── RefAssemblyDrawRepresentationsTest_Playback.png │ │ │ ├── testBatchRendererIsolateSelection.py │ │ │ ├── testPxrUsdMayaGLInstancerDraw.py │ │ │ └── testRefAssemblyDrawRepresentations.py │ └── usdMaya │ │ ├── AEpxrUsdProxyShapeTemplate.mel │ │ ├── AEpxrUsdReferenceAssemblyTemplate.py │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── api.h │ │ ├── editUtil.cpp │ │ ├── editUtil.h │ │ ├── exportCommand.cpp │ │ ├── exportCommand.h │ │ ├── exportTranslator.cpp │ │ ├── exportTranslator.h │ │ ├── importCommand.cpp │ │ ├── importCommand.h │ │ ├── importTranslator.cpp │ │ ├── importTranslator.h │ │ ├── instancerShapeAdapterWithSceneAssembly.cpp │ │ ├── instancerShapeAdapterWithSceneAssembly.h │ │ ├── listShadingModesCommand.cpp │ │ ├── listShadingModesCommand.h │ │ ├── module.cpp │ │ ├── out_pxrUsdProxyShape.xpm │ │ ├── out_pxrUsdReferenceAssembly.xpm │ │ ├── overview.dox │ │ ├── proxyShape.cpp │ │ ├── proxyShape.h │ │ ├── readJobWithSceneAssembly.cpp │ │ ├── readJobWithSceneAssembly.h │ │ ├── readJob_ImportWithProxies.cpp │ │ ├── referenceAssembly.cpp │ │ ├── referenceAssembly.h │ │ ├── testenv │ │ ├── UsdExportAssemblyEditsTest │ │ │ ├── ShapesModel.usda │ │ │ ├── Shapes_set.usda │ │ │ └── UsdExportAssemblyEditsTest.ma │ │ ├── UsdExportAssemblyTest │ │ │ ├── AssemblyTest.ma │ │ │ ├── DummyModel.usda │ │ │ └── XformOpModel.usda │ │ ├── UsdExportPackage │ │ │ ├── BaseModel.usda │ │ │ ├── PackageTest.ma │ │ │ ├── ReferenceModel.usda │ │ │ └── card.png │ │ ├── UsdExportPointInstancerTest │ │ │ ├── Cone.usda │ │ │ └── InstancerTestMash.ma │ │ ├── UsdImportAsAssemblies │ │ │ ├── CubeModel.usda │ │ │ └── Cubes_set.usda │ │ ├── UsdImportNestedAssemblyAnimationTest │ │ │ ├── AnimatedCubeModel.usda │ │ │ ├── AnimationLayer.usda │ │ │ ├── CubeModel.usda │ │ │ └── Cube_set.usda │ │ ├── UsdMayaGetVariantSetSelectionsTest │ │ │ └── CubeWithVariantsModel.usda │ │ ├── UsdMayaModelKindProcessorTest │ │ │ ├── KindTest.ma │ │ │ ├── KindTest.usd │ │ │ ├── KindTestAssembly.ma │ │ │ ├── KindTestAssemblyAndMesh.ma │ │ │ └── KindTestUsdKindAttr.ma │ │ ├── UsdMayaReferenceAssemblyEdits │ │ │ └── CubeModel.usda │ │ ├── UsdReferenceAssemblyChangeRepresentationsTest │ │ │ ├── ComplexSet.usda │ │ │ ├── CubeModel.usda │ │ │ ├── CubeModel_NoDefaultPrim.usda │ │ │ ├── OneCube_set.usda │ │ │ ├── SetWithModelingVariants_set.usda │ │ │ ├── ThreeCubes_set.usda │ │ │ └── TwoCubes_set.usda │ │ ├── UsdReferenceAssemblySelectionTest │ │ │ ├── CubeModel.usda │ │ │ └── UsdReferenceAssemblySelectionTest.ma │ │ ├── UsdReferenceAssemblyUfeNodes │ │ │ ├── tiny.ma │ │ │ └── tiny.usd │ │ ├── testUsdExportAssembly.py │ │ ├── testUsdExportAssemblyEdits.py │ │ ├── testUsdExportPackage.py │ │ ├── testUsdExportPointInstancer.py │ │ ├── testUsdImportAsAssemblies.py │ │ ├── testUsdImportNestedAssemblyAnimation.py │ │ ├── testUsdMayaGetVariantSetSelections.py │ │ ├── testUsdMayaModelKindProcessor.py │ │ ├── testUsdMayaReferenceAssemblyEdits.py │ │ ├── testUsdReferenceAssemblyChangeRepresentations.py │ │ ├── testUsdReferenceAssemblySelection.py │ │ └── testUsdReferenceAssemblyUfeNodes.py │ │ ├── translatorModelAssembly.cpp │ │ ├── translatorModelAssembly.h │ │ ├── usdMaya.mel │ │ ├── usdTranslatorExport.mel │ │ ├── usdTranslatorImport.mel │ │ ├── userExportedAttributesUI.py │ │ ├── wrapAssembly.cpp │ │ └── wrapEditUtil.cpp │ └── plugin │ ├── CMakeLists.txt │ ├── pxrUsd │ ├── CMakeLists.txt │ ├── alembicChaser.cpp │ ├── api.h │ ├── overview.dox │ ├── plugInfo.json │ ├── plugin.cpp │ ├── testenv │ │ ├── AlembicChaser │ │ │ ├── AlembicChaser.ma │ │ │ └── AlembicChaserPrimvars.ma │ │ └── testPxrUsdAlembicChaser.py │ └── usdTranslator.cpp │ └── pxrUsdPreviewSurface │ ├── CMakeLists.txt │ ├── api.h │ └── plugin.cpp ├── pxr_python.h ├── test ├── CMakeLists.txt ├── lib │ ├── CMakeLists.txt │ ├── LookdevXUfe │ │ ├── CMakeLists.txt │ │ ├── testLdxCapabilityHandler.py │ │ ├── testLdxComponentConnections.py │ │ ├── testLdxConnection.py │ │ ├── testLdxDebugHandler.py │ │ └── testLdxFileHandler.py │ ├── mayaUsd │ │ ├── CMakeLists.txt │ │ ├── fileio │ │ │ ├── CMakeLists.txt │ │ │ ├── NonLocalEditTargetLayerTest │ │ │ │ ├── nested_reference_geo.usda │ │ │ │ ├── outer_sub_layer.usda │ │ │ │ ├── reference_geo.usda │ │ │ │ └── root_layer.usda │ │ │ ├── UsdCustomRigSchema │ │ │ │ ├── generatedSchema.usda │ │ │ │ ├── plugInfo.json │ │ │ │ └── schema.usda │ │ │ ├── UsdExportMaterialScopeTest │ │ │ │ └── one-group.ma │ │ │ ├── UsdImportMaterialX │ │ │ │ ├── UsdImportMaterialX.usda │ │ │ │ ├── standard_surface_gold.mtlx │ │ │ │ └── standard_surface_jade.usda │ │ │ ├── skelCube.usda │ │ │ ├── testAddMayaReference.py │ │ │ ├── testCacheToUsd.py │ │ │ ├── testComponentTags.py │ │ │ ├── testCopyLayerPrims.py │ │ │ ├── testCustomRig.py │ │ │ ├── testDiscardEdits.py │ │ │ ├── testDisplayLayerSaveRestore.py │ │ │ ├── testDuplicateAs.py │ │ │ ├── testEditAsMaya.py │ │ │ ├── testEditAsMayaBBox.py │ │ │ ├── testEditAsMayaDefaultValue.py │ │ │ ├── testExportChaser.py │ │ │ ├── testExportChaserJobContext.py │ │ │ ├── testHideOrphanedNodes.py │ │ │ ├── testImportChaser.py │ │ │ ├── testImportWithNamespace.py │ │ │ ├── testJobContextRegistry.py │ │ │ ├── testMayaUsdOptions.py │ │ │ ├── testMergeToUsd.py │ │ │ ├── testNonLocalEditTargetLayer.py │ │ │ ├── testPrimReader.py │ │ │ ├── testPrimReader.usda │ │ │ ├── testPrimUpdater.py │ │ │ ├── testPrimWriter.py │ │ │ ├── testSaveLockedAnonLayer.py │ │ │ ├── testSaveMutedAnonLayer.py │ │ │ ├── testSaveUpAxisAndUnits.py │ │ │ ├── testSchemaApiAdaptor.py │ │ │ ├── testShaderReader.py │ │ │ ├── testShaderWriter.py │ │ │ ├── testSwitchMayaReference.py │ │ │ └── utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── testReadWriteUtils.py │ │ │ │ └── testXformStack.py │ │ ├── nodes │ │ │ ├── CMakeLists.txt │ │ │ ├── GeomNodeTest │ │ │ │ ├── GeomNodeTestComponentTags.usda │ │ │ │ ├── GeomNodeTestParentTransform.usda │ │ │ │ └── GeomNodeTestRootPrim.usda │ │ │ ├── HdImagingShapeTest │ │ │ │ ├── CubeModel.usda │ │ │ │ └── HdImagingShapeTest.ma │ │ │ ├── LayerManagerSerializationTest │ │ │ │ ├── SerializationTest.ma │ │ │ │ ├── SerializationTest.usda │ │ │ │ ├── SerializationTest_1.usda │ │ │ │ ├── SerializationTest_1_1.usda │ │ │ │ ├── SerializationTest_2.usda │ │ │ │ └── SerializationTest_2_1.usda │ │ │ ├── PointBasedDeformerNodeTest │ │ │ │ └── DeformingCube.usda │ │ │ ├── ProxyShapeBaseTest │ │ │ │ ├── CubeModel.usda │ │ │ │ ├── ProxyShapeBase.ma │ │ │ │ ├── meshProxy.usda │ │ │ │ ├── meshRender.usda │ │ │ │ └── variantFallbacks.usda │ │ │ ├── ProxyShapeConversionTest │ │ │ │ ├── UnitsCentimeters.usda │ │ │ │ ├── UnitsMillimeters.usda │ │ │ │ └── UpAxisY.usda │ │ │ ├── testGeomNode.py │ │ │ ├── testHdImagingShape.py │ │ │ ├── testLayerManagerSerialization.py │ │ │ ├── testPointBasedDeformerNode.py │ │ │ ├── testProxyShapeBase.py │ │ │ └── testProxyShapeConversion.py │ │ ├── render │ │ │ ├── CMakeLists.txt │ │ │ ├── mayaToHydra │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MtohBasicRenderTest │ │ │ │ │ ├── cube_selected.png │ │ │ │ │ ├── cube_unselected.png │ │ │ │ │ ├── flat_orange.png │ │ │ │ │ ├── flat_orange_bad.png │ │ │ │ │ └── lambertDefaultMaterial │ │ │ │ │ │ ├── cube_selected.png │ │ │ │ │ │ ├── cube_selected_legacyUsd.png │ │ │ │ │ │ ├── cube_unselected.png │ │ │ │ │ │ └── cube_unselected_legacyUsd.png │ │ │ │ ├── MtohDagChangesTest │ │ │ │ │ ├── instances_0.png │ │ │ │ │ ├── instances_1.png │ │ │ │ │ ├── instances_12.png │ │ │ │ │ ├── instances_123.png │ │ │ │ │ ├── instances_1234.png │ │ │ │ │ ├── instances_123456.png │ │ │ │ │ ├── instances_1235.png │ │ │ │ │ ├── instances_3.png │ │ │ │ │ ├── instances_35.png │ │ │ │ │ └── lambertDefaultMaterial │ │ │ │ │ │ ├── instances_0.png │ │ │ │ │ │ ├── instances_1.png │ │ │ │ │ │ ├── instances_12.png │ │ │ │ │ │ ├── instances_123.png │ │ │ │ │ │ ├── instances_1234.png │ │ │ │ │ │ ├── instances_123456.png │ │ │ │ │ │ ├── instances_123456_legacyUsd.png │ │ │ │ │ │ ├── instances_1234_legacyUsd.png │ │ │ │ │ │ ├── instances_1235.png │ │ │ │ │ │ ├── instances_1235_legacyUsd.png │ │ │ │ │ │ ├── instances_123_legacyUsd.png │ │ │ │ │ │ ├── instances_12_legacyUsd.png │ │ │ │ │ │ ├── instances_1_legacyUsd.png │ │ │ │ │ │ ├── instances_3.png │ │ │ │ │ │ ├── instances_35.png │ │ │ │ │ │ ├── instances_35_legacyUsd.png │ │ │ │ │ │ └── instances_3_legacyUsd.png │ │ │ │ ├── MtohVisibilityTest │ │ │ │ │ ├── cube_unselected.png │ │ │ │ │ ├── lambertDefaultMaterial │ │ │ │ │ │ ├── cube_unselected.png │ │ │ │ │ │ └── cube_unselected_legacyUsd.png │ │ │ │ │ └── nothing.png │ │ │ │ ├── testMtohBasicRender.py │ │ │ │ ├── testMtohCommand.py │ │ │ │ ├── testMtohDagChanges.py │ │ │ │ └── testMtohVisibility.py │ │ │ ├── pxrUsdMayaGL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ProxyShapeDrawAndTransformTest │ │ │ │ │ ├── CubeModel.usda │ │ │ │ │ ├── ProxyShapeDrawAndTransformTest.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── ProxyShapeDrawAndTransformTest_initial.png │ │ │ │ │ │ ├── ProxyShapeDrawAndTransformTest_tz_10.png │ │ │ │ │ │ └── ProxyShapeDrawAndTransformTest_tz_5.png │ │ │ │ ├── ProxyShapeDrawColorAccuracyTest │ │ │ │ │ ├── CubeModel.usda │ │ │ │ │ ├── CubeModel_Red.usda │ │ │ │ │ ├── ProxyShapeDrawColorAccuracyTest.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── ProxyShapeDrawColorAccuracyTest_all_lights.png │ │ │ │ │ │ └── ProxyShapeDrawColorAccuracyTest_default_lights.png │ │ │ │ ├── ProxyShapeDrawColorsTest │ │ │ │ │ ├── ProxyShapeDrawColorsTest.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── colorMgt.png │ │ │ │ │ │ └── default.png │ │ │ │ ├── ProxyShapeDrawLightingTest │ │ │ │ │ ├── PlaneModel.usda │ │ │ │ │ ├── ProxyShapeDrawLightingTest.ma │ │ │ │ │ ├── TorusModel.usda │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── Directional_1.png │ │ │ │ │ │ ├── Directional_2.png │ │ │ │ │ │ ├── Directional_3.png │ │ │ │ │ │ ├── Directional_4.png │ │ │ │ │ │ ├── HydraShadows_Directional_1.png │ │ │ │ │ │ ├── HydraShadows_Directional_2.png │ │ │ │ │ │ ├── HydraShadows_Directional_3.png │ │ │ │ │ │ ├── HydraShadows_Directional_4.png │ │ │ │ │ │ ├── HydraShadows_Spot_1.png │ │ │ │ │ │ ├── HydraShadows_Spot_2.png │ │ │ │ │ │ ├── HydraShadows_Spot_3.png │ │ │ │ │ │ ├── HydraShadows_Spot_4.png │ │ │ │ │ │ ├── MayaNativeShadows_Directional_1.png │ │ │ │ │ │ ├── MayaNativeShadows_Directional_2.png │ │ │ │ │ │ ├── MayaNativeShadows_Directional_3.png │ │ │ │ │ │ ├── MayaNativeShadows_Directional_4.png │ │ │ │ │ │ ├── MayaNativeShadows_Spot_1.png │ │ │ │ │ │ ├── MayaNativeShadows_Spot_2.png │ │ │ │ │ │ ├── MayaNativeShadows_Spot_3.png │ │ │ │ │ │ ├── MayaNativeShadows_Spot_4.png │ │ │ │ │ │ ├── Spot_1.png │ │ │ │ │ │ ├── Spot_2.png │ │ │ │ │ │ ├── Spot_3.png │ │ │ │ │ │ └── Spot_4.png │ │ │ │ ├── ProxyShapeDrawPerformanceTest │ │ │ │ │ ├── CubeGridCombinedMesh_10.usd │ │ │ │ │ ├── CubeGridModelRefs_10.usd │ │ │ │ │ ├── CubeModel.usda │ │ │ │ │ ├── Grid_5_of_CubeGridCombinedMesh_10.ma │ │ │ │ │ ├── Grid_5_of_CubeGridModelRefs_10.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ └── CubeGrid.png │ │ │ │ ├── ProxyShapeDrawPurposeTest │ │ │ │ │ ├── ProxyShapeDrawPurposeTest.ma │ │ │ │ │ ├── PurposeCubes.usda │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_allTogglesOff.png │ │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_allTogglesOn.png │ │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_guideToggleOn.png │ │ │ │ │ │ ├── ProxyShapeDrawPurposeTest_proxyToggleOn.png │ │ │ │ │ │ └── ProxyShapeDrawPurposeTest_renderToggleOn.png │ │ │ │ ├── ProxyShapeDrawTimeSampledTest │ │ │ │ │ ├── CubeModel_TimeSampledPoints.usda │ │ │ │ │ ├── ProxyShapeDrawTimeSampledTest.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── ProxyShapeDrawTimeSampledTest_1.png │ │ │ │ │ │ ├── ProxyShapeDrawTimeSampledTest_3.png │ │ │ │ │ │ └── ProxyShapeDrawTimeSampledTest_5.png │ │ │ │ ├── ProxyShapeDrawUsdChangeProcessingTest │ │ │ │ │ ├── PrimitiveModel.usda │ │ │ │ │ ├── ProxyShapeDrawUsdChangeProcessingTest.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── Cube.png │ │ │ │ │ │ └── Sphere.png │ │ │ │ ├── ProxyShapeDrawVisibilityTest │ │ │ │ │ ├── CubeModel.usda │ │ │ │ │ ├── CubeModel_Blue.usda │ │ │ │ │ ├── CubeModel_Red.usda │ │ │ │ │ ├── ProxyShapeDrawVisibilityTest.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── ProxyShapeDrawVisibilityTest_initial.png │ │ │ │ │ │ ├── ProxyShapeDrawVisibilityTest_invis_layer_1.png │ │ │ │ │ │ ├── ProxyShapeDrawVisibilityTest_invis_layer_2.png │ │ │ │ │ │ └── ProxyShapeDrawVisibilityTest_invis_layers_1_and_2.png │ │ │ │ ├── ProxyShapeDuplicatePerformanceTest │ │ │ │ │ ├── CubeGridModelRefs_10.usd │ │ │ │ │ ├── CubeModel.usda │ │ │ │ │ ├── Grid_5_of_CubeGridModelRefs_10.ma │ │ │ │ │ └── baseline │ │ │ │ │ │ └── CubeGrid.png │ │ │ │ ├── ProxyShapeLiveSurfaceTest │ │ │ │ │ ├── BlockModel.usda │ │ │ │ │ └── ProxyShapeLiveSurfaceTest.ma │ │ │ │ ├── ProxyShapeRendererSceneMessagesTest │ │ │ │ │ ├── CubeModel.usda │ │ │ │ │ ├── EmptyScene.ma │ │ │ │ │ └── ProxyShapeRendererSceneMessagesTest.ma │ │ │ │ ├── ProxyShapeSelectionPerformanceTest │ │ │ │ │ ├── CubeGridCombinedMesh_10.usd │ │ │ │ │ ├── CubeGridModelRefs_10.usd │ │ │ │ │ ├── CubeModel.usda │ │ │ │ │ ├── Grid_5_of_CubeGridCombinedMesh_10.ma │ │ │ │ │ ├── Grid_5_of_CubeGridModelRefs_10.ma │ │ │ │ │ ├── PlaneModel.usda │ │ │ │ │ └── baseline │ │ │ │ │ │ ├── CubeGrid_select_center.png │ │ │ │ │ │ ├── CubeGrid_selection_append_1.png │ │ │ │ │ │ ├── CubeGrid_selection_append_2.png │ │ │ │ │ │ ├── CubeGrid_selection_append_3.png │ │ │ │ │ │ ├── CubeGrid_selection_append_4.png │ │ │ │ │ │ └── CubeGrid_unselected.png │ │ │ │ ├── PxrUsdMayaGLTest │ │ │ │ │ ├── blank.usda │ │ │ │ │ ├── plane0.usda │ │ │ │ │ └── plane1.usda │ │ │ │ ├── testProxyShapeDrawAndTransform.py │ │ │ │ ├── testProxyShapeDrawColorAccuracy.py │ │ │ │ ├── testProxyShapeDrawColors.py │ │ │ │ ├── testProxyShapeDrawLighting.py │ │ │ │ ├── testProxyShapeDrawPerformance.py │ │ │ │ ├── testProxyShapeDrawPurpose.py │ │ │ │ ├── testProxyShapeDrawTimeSampled.py │ │ │ │ ├── testProxyShapeDrawUsdChangeProcessing.py │ │ │ │ ├── testProxyShapeDrawVisibility.py │ │ │ │ ├── testProxyShapeDuplicatePerformance.py │ │ │ │ ├── testProxyShapeLiveSurface.py │ │ │ │ ├── testProxyShapeRendererSceneMessages.py │ │ │ │ ├── testProxyShapeSelectionPerformance.py │ │ │ │ └── testPxrUsdMayaGL.py │ │ │ └── vp2RenderDelegate │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── VP2RenderDelegateBasisCurvesTest │ │ │ │ └── baseline │ │ │ │ │ ├── basisCurves_selected_complexity0-2022.png │ │ │ │ │ ├── basisCurves_selected_complexity0.png │ │ │ │ │ ├── basisCurves_selected_complexity1-2022.png │ │ │ │ │ ├── basisCurves_selected_complexity1.png │ │ │ │ │ ├── basisCurves_selected_complexity2-2022.png │ │ │ │ │ ├── basisCurves_selected_complexity2.png │ │ │ │ │ ├── basisCurves_selected_complexity3-2022.png │ │ │ │ │ ├── basisCurves_selected_complexity3.png │ │ │ │ │ ├── basisCurves_unselected_complexity0-2022.png │ │ │ │ │ ├── basisCurves_unselected_complexity0.png │ │ │ │ │ ├── basisCurves_unselected_complexity1-2022.png │ │ │ │ │ ├── basisCurves_unselected_complexity1.png │ │ │ │ │ ├── basisCurves_unselected_complexity2-2022.png │ │ │ │ │ ├── basisCurves_unselected_complexity2.png │ │ │ │ │ ├── basisCurves_unselected_complexity3-2022.png │ │ │ │ │ ├── basisCurves_unselected_complexity3.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity0-2022.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity0.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity1-2022.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity1.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity2-2022.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity2.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity3-2022.png │ │ │ │ │ ├── nurbsCircleExport_selected_complexity3.png │ │ │ │ │ ├── nurbsCircleExport_unselected_complexity0-2022.png │ │ │ │ │ ├── nurbsCircleExport_unselected_complexity0.png │ │ │ │ │ ├── nurbsCircleExport_unselected_complexity1-2022.png │ │ │ │ │ ├── nurbsCircleExport_unselected_complexity1.png │ │ │ │ │ ├── nurbsCircleExport_unselected_complexity2-2022.png │ │ │ │ │ ├── nurbsCircleExport_unselected_complexity2.png │ │ │ │ │ ├── nurbsCircleExport_unselected_complexity3-2022.png │ │ │ │ │ └── nurbsCircleExport_unselected_complexity3.png │ │ │ │ ├── VP2RenderDelegateCamerasTest │ │ │ │ └── baseline │ │ │ │ │ ├── RenderCameras_animation.png │ │ │ │ │ ├── RenderCameras_invisibile.png │ │ │ │ │ ├── RenderCameras_moved.png │ │ │ │ │ ├── RenderCameras_selected.png │ │ │ │ │ ├── RenderCameras_stage_moved.png │ │ │ │ │ ├── RenderCameras_stage_selected.png │ │ │ │ │ ├── RenderCameras_unselected.png │ │ │ │ │ ├── RenderCameras_visibile.png │ │ │ │ │ └── RenderCameras_with_new_camera.png │ │ │ │ ├── VP2RenderDelegateConsolidationTest │ │ │ │ └── baseline │ │ │ │ │ ├── capsule_green.png │ │ │ │ │ ├── capsule_unselected.png │ │ │ │ │ ├── colorConsolidation_greenSpheres.png │ │ │ │ │ └── colorConsolidation_unselected.png │ │ │ │ ├── VP2RenderDelegateDisplayColorsTest │ │ │ │ └── baseline │ │ │ │ │ ├── ColorTestStandardSurface_unselected.png │ │ │ │ │ └── ColorTest_unselected.png │ │ │ │ ├── VP2RenderDelegateDisplayLayersTest │ │ │ │ └── baseline │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls012_visible.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_bbox.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_colored.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_hidden.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_hideonplayback.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_reference.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_rgbcolor.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_templated.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_untextured.png │ │ │ │ │ ├── displayLayersOnInstancedMeshes_balls01_wireframe.png │ │ │ │ │ ├── displayLayersOnPointInstancerAsWhole_colored.png │ │ │ │ │ ├── displayLayersOnPointInstancerAsWhole_hidden.png │ │ │ │ │ ├── displayLayersOnPointInstancerAsWhole_hideonplayback.png │ │ │ │ │ ├── displayLayersOnPointInstancerAsWhole_reference.png │ │ │ │ │ ├── displayLayersOnPointInstancerAsWhole_templated.png │ │ │ │ │ ├── displayLayersOnPointInstancerAsWhole_visible.png │ │ │ │ │ ├── displayLayersOnPointInstancerAsWhole_wireframe.png │ │ │ │ │ ├── displayLayers_group1_hidden_.png │ │ │ │ │ ├── displayLayers_groupedSphere2_hidden_.png │ │ │ │ │ ├── displayLayers_proxyShape_hidden_.png │ │ │ │ │ ├── displayLayers_sphere234_bbox.png │ │ │ │ │ ├── displayLayers_sphere234_colored.png │ │ │ │ │ ├── displayLayers_sphere234_hidden.png │ │ │ │ │ ├── displayLayers_sphere234_hideonplayback.png │ │ │ │ │ ├── displayLayers_sphere234_reference.png │ │ │ │ │ ├── displayLayers_sphere234_rgbcolor.png │ │ │ │ │ ├── displayLayers_sphere234_templated.png │ │ │ │ │ ├── displayLayers_sphere234_visible.png │ │ │ │ │ ├── displayLayers_sphere234_wireframe.png │ │ │ │ │ ├── displayLayers_sphere24_hidden.png │ │ │ │ │ ├── displayLayers_textured.png │ │ │ │ │ ├── displayLayers_unselected.png │ │ │ │ │ ├── displayLayers_untextured.png │ │ │ │ │ └── templatedDisplayLayer_active.png │ │ │ │ ├── VP2RenderDelegateDrawModesTest │ │ │ │ └── baseline │ │ │ │ │ ├── DrawModes_box_all_negative.png │ │ │ │ │ ├── DrawModes_box_all_positive.png │ │ │ │ │ ├── DrawModes_cross_all_negative.png │ │ │ │ │ ├── DrawModes_cross_all_positive.png │ │ │ │ │ ├── post-22_11-DrawModes_box_all_negative.png │ │ │ │ │ ├── post-22_11-DrawModes_box_all_positive.png │ │ │ │ │ ├── post-22_11-DrawModes_cross_all_negative.png │ │ │ │ │ └── post-22_11-DrawModes_cross_all_positive.png │ │ │ │ ├── VP2RenderDelegateDuplicateProxyTest │ │ │ │ └── baseline │ │ │ │ │ ├── colorConsolidation_duplicate.png │ │ │ │ │ └── colorConsolidation_duplicate_AfterMove.png │ │ │ │ ├── VP2RenderDelegateGeomSubsetTest │ │ │ │ └── baseline │ │ │ │ │ └── perFaceShaders_unselected.png │ │ │ │ ├── VP2RenderDelegateInteractiveWorkflowsTest │ │ │ │ └── baseline │ │ │ │ │ ├── capsule_redo_set_height.png │ │ │ │ │ ├── capsule_set_height.png │ │ │ │ │ ├── capsule_undo_set_height.png │ │ │ │ │ └── capsule_unselected.png │ │ │ │ ├── VP2RenderDelegateIsolateSelectTest │ │ │ │ └── baseline │ │ │ │ │ ├── autoLoadNewObjects.png │ │ │ │ │ ├── autoLoadSelected_ball01_ball04.png │ │ │ │ │ ├── autoLoadSelected_ball02.png │ │ │ │ │ ├── autoLoadSelected_ball04_ball05.png │ │ │ │ │ ├── autoLoadSelected_coneCapsuleCyliner.png │ │ │ │ │ ├── autoLoadSelected_cube.png │ │ │ │ │ ├── autoLoadSelected_instance_stage.png │ │ │ │ │ ├── autoLoadSelected_stage.png │ │ │ │ │ ├── autoLoadSelected_xformCone.png │ │ │ │ │ ├── ball01.png │ │ │ │ │ ├── ball01_ball02_ball03.png │ │ │ │ │ ├── ball01_ball03.png │ │ │ │ │ ├── ball03.png │ │ │ │ │ ├── capsuleAndCube.png │ │ │ │ │ ├── capsuleAndCubeAndCone.png │ │ │ │ │ ├── cube.png │ │ │ │ │ ├── cylinder.png │ │ │ │ │ ├── cylinderAfterCapsuleRemove.png │ │ │ │ │ ├── cylinderAndCapsule.png │ │ │ │ │ ├── isolateSelectOff.png │ │ │ │ │ ├── redoCapsuleRemove.png │ │ │ │ │ ├── reparentedCube.png │ │ │ │ │ ├── reparentedCubeBack.png │ │ │ │ │ ├── reparentedProxyShape.png │ │ │ │ │ ├── undoCapsuleAdd.png │ │ │ │ │ ├── undoCapsuleRemove.png │ │ │ │ │ └── unselected.png │ │ │ │ ├── VP2RenderDelegateLightsTest │ │ │ │ └── baseline │ │ │ │ │ ├── RenderLights2VP2Shading_animation.png │ │ │ │ │ ├── RenderLights2VP2Shading_moved.png │ │ │ │ │ ├── RenderLights2VP2Shading_selected.png │ │ │ │ │ ├── RenderLights2VP2Shading_stage_moved.png │ │ │ │ │ ├── RenderLights2VP2Shading_stage_selected.png │ │ │ │ │ ├── RenderLights2VP2Shading_unselected.png │ │ │ │ │ ├── RenderLights2VP2Shading_with_new_light.png │ │ │ │ │ ├── RenderLightsCustomGizmoVP2Shading_animation.png │ │ │ │ │ ├── RenderLightsCustomGizmoVP2Shading_moved.png │ │ │ │ │ ├── RenderLightsCustomGizmoVP2Shading_selected.png │ │ │ │ │ ├── RenderLightsCustomGizmoVP2Shading_stage_moved.png │ │ │ │ │ ├── RenderLightsCustomGizmoVP2Shading_stage_selected.png │ │ │ │ │ ├── RenderLightsCustomGizmoVP2Shading_unselected.png │ │ │ │ │ ├── RenderLightsCustomGizmoVP2Shading_with_new_light.png │ │ │ │ │ ├── RenderLightsCustomGizmos_animation.png │ │ │ │ │ ├── RenderLightsCustomGizmos_moved.png │ │ │ │ │ ├── RenderLightsCustomGizmos_selected.png │ │ │ │ │ ├── RenderLightsCustomGizmos_stage_moved.png │ │ │ │ │ ├── RenderLightsCustomGizmos_stage_selected.png │ │ │ │ │ ├── RenderLightsCustomGizmos_unselected.png │ │ │ │ │ ├── RenderLightsCustomGizmos_with_new_light.png │ │ │ │ │ ├── RenderLightsCustomRectLightGizmo_animation.png │ │ │ │ │ ├── RenderLightsCustomRectLightGizmo_moved.png │ │ │ │ │ ├── RenderLightsCustomRectLightGizmo_selected.png │ │ │ │ │ ├── RenderLightsCustomRectLightGizmo_stage_moved.png │ │ │ │ │ ├── RenderLightsCustomRectLightGizmo_stage_selected.png │ │ │ │ │ ├── RenderLightsCustomRectLightGizmo_unselected.png │ │ │ │ │ ├── RenderLightsCustomRectLightGizmo_with_new_light.png │ │ │ │ │ ├── RenderLights_animation-legacy.png │ │ │ │ │ ├── RenderLights_animation.png │ │ │ │ │ ├── RenderLights_moved-legacy.png │ │ │ │ │ ├── RenderLights_moved.png │ │ │ │ │ ├── RenderLights_selected-legacy.png │ │ │ │ │ ├── RenderLights_selected.png │ │ │ │ │ ├── RenderLights_stage_moved-legacy.png │ │ │ │ │ ├── RenderLights_stage_moved.png │ │ │ │ │ ├── RenderLights_stage_selected-legacy.png │ │ │ │ │ ├── RenderLights_stage_selected.png │ │ │ │ │ ├── RenderLights_unselected-legacy.png │ │ │ │ │ ├── RenderLights_unselected.png │ │ │ │ │ ├── RenderLights_with_new_light-legacy.png │ │ │ │ │ └── RenderLights_with_new_light.png │ │ │ │ ├── VP2RenderDelegateMaterialXTest │ │ │ │ └── baseline │ │ │ │ │ ├── DemoQuads_render.png │ │ │ │ │ ├── DemoQuads_render_1.38.5.png │ │ │ │ │ ├── MayaSurfaces_flat_ocio_blended_render.png │ │ │ │ │ ├── MayaSurfaces_flat_ocio_render.png │ │ │ │ │ ├── MayaSurfaces_flat_render.png │ │ │ │ │ ├── MayaSurfaces_ocio_blended_render.png │ │ │ │ │ ├── MayaSurfaces_ocio_render.png │ │ │ │ │ ├── MayaSurfaces_render.png │ │ │ │ │ ├── MayaSurfaces_untextured_render.png │ │ │ │ │ ├── MtlxUVStreamTest_render.png │ │ │ │ │ ├── OCIO_Explicit.png │ │ │ │ │ ├── OCIO_Integration.png │ │ │ │ │ ├── OCIO_Integration_disabled.png │ │ │ │ │ ├── OCIO_Integration_enabled.png │ │ │ │ │ ├── OCIO_Integration_p3_d65.png │ │ │ │ │ ├── OpenPBRShowcase_MTLX_Import_render.png │ │ │ │ │ ├── OpenPBRShowcase_UsdPS_Import_render.png │ │ │ │ │ ├── ShadedPyramid_render.png │ │ │ │ │ ├── delete_attr_test_base.png │ │ │ │ │ ├── delete_attr_test_file.png │ │ │ │ │ ├── delete_attr_test_render.png │ │ │ │ │ ├── delete_attr_test_scale.png │ │ │ │ │ ├── delete_attr_test_specular_color.png │ │ │ │ │ ├── delete_attr_test_value1.png │ │ │ │ │ ├── doubleSided_disabled_back.png │ │ │ │ │ ├── doubleSided_disabled_front.png │ │ │ │ │ ├── doubleSided_enabled_back.png │ │ │ │ │ ├── doubleSided_enabled_front.png │ │ │ │ │ ├── grid_with_smoothsteps_render.png │ │ │ │ │ ├── grid_with_udims_render.png │ │ │ │ │ ├── grids_with_udims_render.png │ │ │ │ │ ├── mtlxNodesShowcase_Import_render.png │ │ │ │ │ ├── mtlxNodesShowcase_Maya_render.png │ │ │ │ │ ├── mtlxNodesShowcase_USD_render.png │ │ │ │ │ ├── place2dTextureShowcase_Import_render.png │ │ │ │ │ ├── place2dTextureShowcase_Maya_render.png │ │ │ │ │ ├── place2dTextureShowcase_USD_render.png │ │ │ │ │ └── transparencyScene.png │ │ │ │ ├── VP2RenderDelegateNoMaterialXTest │ │ │ │ └── baseline │ │ │ │ │ ├── ShadedPyramid_render.png │ │ │ │ │ └── grid_with_udims_render.png │ │ │ │ ├── VP2RenderDelegatePerInstanceInheritedDataTest │ │ │ │ └── baseline │ │ │ │ │ ├── basisCurveInstance_selected.png │ │ │ │ │ ├── basisCurveInstance_unselected.png │ │ │ │ │ ├── defaultMaterialBillboards_default.png │ │ │ │ │ ├── defaultMaterialBillboards_defaultSelected.png │ │ │ │ │ ├── defaultMaterialBillboards_notDefault.png │ │ │ │ │ ├── defaultMaterialBillboards_selected.png │ │ │ │ │ ├── defaultMaterialBillboards_unselected.png │ │ │ │ │ ├── inheritedDisplayColor_noPxrMtls_unselected.png │ │ │ │ │ ├── inheritedDisplayColor_pxrSurface_unselected.png │ │ │ │ │ ├── lambertDefaultMaterial │ │ │ │ │ ├── basisCurveInstance_selected.png │ │ │ │ │ ├── basisCurveInstance_unselected.png │ │ │ │ │ ├── defaultMaterialBillboards_default.png │ │ │ │ │ └── defaultMaterialBillboards_defaultSelected.png │ │ │ │ │ ├── openPBRSurfaceDefaultMaterial │ │ │ │ │ ├── basisCurveInstance_selected.png │ │ │ │ │ ├── basisCurveInstance_unselected.png │ │ │ │ │ ├── defaultMaterialBillboards_default.png │ │ │ │ │ └── defaultMaterialBillboards_defaultSelected.png │ │ │ │ │ ├── perInstanceInheritedData_ball_03_and_04_guide.png │ │ │ │ │ ├── perInstanceInheritedData_ball_03_and_04_hidden.png │ │ │ │ │ ├── perInstanceInheritedData_ball_03_guide.png │ │ │ │ │ ├── perInstanceInheritedData_ball_03_hidden.png │ │ │ │ │ ├── perInstanceInheritedData_ball_03_selected.png │ │ │ │ │ ├── perInstanceInheritedData_ball_04_guide.png │ │ │ │ │ ├── perInstanceInheritedData_ball_04_hidden.png │ │ │ │ │ ├── perInstanceInheritedData_default_after_guide.png │ │ │ │ │ ├── perInstanceInheritedData_shown_after_hidden.png │ │ │ │ │ └── perInstanceInheritedData_unselected.png │ │ │ │ ├── VP2RenderDelegatePointInstanceOrientationTest │ │ │ │ └── baseline │ │ │ │ │ └── point_instanced_axis_unselected.png │ │ │ │ ├── VP2RenderDelegatePointInstanceSelectionTest │ │ │ │ └── baseline │ │ │ │ │ ├── Grid_14_select_PointInstancer.png │ │ │ │ │ ├── Grid_14_select_all.png │ │ │ │ │ ├── Grid_14_select_half.png │ │ │ │ │ ├── Grid_14_select_one.png │ │ │ │ │ ├── Grid_14_select_seven.png │ │ │ │ │ ├── Grid_14_unselected.png │ │ │ │ │ ├── Grid_70k_select_PointInstancer.png │ │ │ │ │ ├── Grid_70k_select_all.png │ │ │ │ │ ├── Grid_70k_select_half.png │ │ │ │ │ ├── Grid_70k_select_one.png │ │ │ │ │ ├── Grid_70k_select_seven.png │ │ │ │ │ ├── Grid_70k_unselected.png │ │ │ │ │ ├── Grid_7k_select_PointInstancer.png │ │ │ │ │ ├── Grid_7k_select_all.png │ │ │ │ │ ├── Grid_7k_select_half.png │ │ │ │ │ ├── Grid_7k_select_one.png │ │ │ │ │ ├── Grid_7k_select_seven.png │ │ │ │ │ └── Grid_7k_unselected.png │ │ │ │ ├── VP2RenderDelegatePointInstancesPickModeTest │ │ │ │ └── baseline │ │ │ │ │ ├── Default_initial.png │ │ │ │ │ ├── Default_picked.png │ │ │ │ │ ├── Instances_initial.png │ │ │ │ │ ├── Instances_picked.png │ │ │ │ │ ├── Models_initial.png │ │ │ │ │ ├── Models_picked.png │ │ │ │ │ ├── NonInstanceModels_initial.png │ │ │ │ │ ├── NonInstanceModels_picked.png │ │ │ │ │ ├── PointInstancer_initial.png │ │ │ │ │ ├── PointInstancer_picked.png │ │ │ │ │ ├── Prototypes_initial.png │ │ │ │ │ └── Prototypes_picked.png │ │ │ │ ├── VP2RenderDelegatePointsTest │ │ │ │ └── baseline │ │ │ │ │ ├── points_selected-2022.png │ │ │ │ │ ├── points_selected.png │ │ │ │ │ ├── points_unselected-2022.png │ │ │ │ │ └── points_unselected.png │ │ │ │ ├── VP2RenderDelegatePrimPathTest │ │ │ │ └── baseline │ │ │ │ │ ├── Cube1.png │ │ │ │ │ ├── Cube1_moved.png │ │ │ │ │ ├── Cube2.png │ │ │ │ │ ├── Cube2_moved.png │ │ │ │ │ ├── Cube3.png │ │ │ │ │ ├── Cube3_moved.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── final.png │ │ │ │ │ └── initial.png │ │ │ │ ├── VP2RenderDelegateSelectionTest │ │ │ │ └── baseline │ │ │ │ │ ├── clear_smoothShaded.png │ │ │ │ │ ├── clear_wireframe.png │ │ │ │ │ ├── clear_wireframeOnShaded.png │ │ │ │ │ ├── gatewayNode_smoothShaded.png │ │ │ │ │ ├── gatewayNode_wireframe.png │ │ │ │ │ ├── gatewayNode_wireframeOnShaded.png │ │ │ │ │ ├── instance_clear_smoothShaded.png │ │ │ │ │ ├── instance_clear_wireframe.png │ │ │ │ │ ├── instance_clear_wireframeOnShaded.png │ │ │ │ │ ├── instance_gatewayNode_smoothShaded.png │ │ │ │ │ ├── instance_gatewayNode_wireframe.png │ │ │ │ │ ├── instance_gatewayNode_wireframeOnShaded.png │ │ │ │ │ ├── instance_objectA_and_objectB_smoothShaded.png │ │ │ │ │ ├── instance_objectA_and_objectB_wireframe.png │ │ │ │ │ ├── instance_objectA_and_objectB_wireframeOnShaded.png │ │ │ │ │ ├── instance_objectA_smoothShaded.png │ │ │ │ │ ├── instance_objectA_wireframe.png │ │ │ │ │ ├── instance_objectA_wireframeOnShaded.png │ │ │ │ │ ├── instance_redoObjectB_smoothShaded.png │ │ │ │ │ ├── instance_redoObjectB_wireframe.png │ │ │ │ │ ├── instance_redoObjectB_wireframeOnShaded.png │ │ │ │ │ ├── instance_undoObjectB_smoothShaded.png │ │ │ │ │ ├── instance_undoObjectB_wireframe.png │ │ │ │ │ ├── instance_undoObjectB_wireframeOnShaded.png │ │ │ │ │ ├── instance_unselected_smoothShaded.png │ │ │ │ │ ├── instance_unselected_wireframe.png │ │ │ │ │ ├── instance_unselected_wireframeOnShaded.png │ │ │ │ │ ├── objectA_and_objectB_smoothShaded.png │ │ │ │ │ ├── objectA_and_objectB_wireframe.png │ │ │ │ │ ├── objectA_and_objectB_wireframeOnShaded.png │ │ │ │ │ ├── objectA_smoothShaded.png │ │ │ │ │ ├── objectA_wireframe.png │ │ │ │ │ ├── objectA_wireframeOnShaded.png │ │ │ │ │ ├── redoObjectB_smoothShaded.png │ │ │ │ │ ├── redoObjectB_wireframe.png │ │ │ │ │ ├── redoObjectB_wireframeOnShaded.png │ │ │ │ │ ├── selectionHighlightDisabled.png │ │ │ │ │ ├── selectionHighlightEnabled.png │ │ │ │ │ ├── undoObjectB_smoothShaded.png │ │ │ │ │ ├── undoObjectB_wireframe.png │ │ │ │ │ ├── undoObjectB_wireframeOnShaded.png │ │ │ │ │ ├── unselected_smoothShaded.png │ │ │ │ │ ├── unselected_wireframe.png │ │ │ │ │ └── unselected_wireframeOnShaded.png │ │ │ │ ├── VP2RenderDelegateTextureLoadingTest │ │ │ │ └── baseline │ │ │ │ │ ├── TextureLoading_Proxy_Async.png │ │ │ │ │ ├── TextureLoading_Proxy_Sync.png │ │ │ │ │ ├── TextureLoading_Render_Async.png │ │ │ │ │ └── TextureLoading_Render_Sync.png │ │ │ │ ├── VP2RenderDelegateUSDPreviewSurface │ │ │ │ └── baseline │ │ │ │ │ ├── DisplayColorCube.png │ │ │ │ │ ├── F0_is_base_V1.png │ │ │ │ │ ├── F0_is_base_V2.png │ │ │ │ │ ├── LightAPI_V1.png │ │ │ │ │ ├── LightAPI_V2.png │ │ │ │ │ ├── SSAO_LightAPI_V1.png │ │ │ │ │ ├── SSAO_LightAPI_V2.png │ │ │ │ │ ├── Shadow_LightAPI_V1.png │ │ │ │ │ ├── Shadow_LightAPI_V2.png │ │ │ │ │ ├── TestFallbackColor.png │ │ │ │ │ ├── UsdTransform2dTest.png │ │ │ │ │ ├── UseSpecularWorkflowTest.png │ │ │ │ │ ├── doubleSided_disabled_back.png │ │ │ │ │ ├── doubleSided_disabled_front.png │ │ │ │ │ ├── doubleSided_enabled_back.png │ │ │ │ │ ├── doubleSided_enabled_front.png │ │ │ │ │ ├── opacityThreshold.png │ │ │ │ │ ├── testMetallicResponseLightAPI1.png │ │ │ │ │ ├── testMetallicResponseLightAPI2.png │ │ │ │ │ └── testMetallicResponseLightAPI3_flat.png │ │ │ │ ├── VP2RenderDelegateUsdCameraTest │ │ │ │ └── baseline │ │ │ │ │ ├── TranslateRotate_vs_xform_cam2_insideNearClipPlane.png │ │ │ │ │ ├── TranslateRotate_vs_xform_cam2_translated.png │ │ │ │ │ ├── TranslateRotate_vs_xform_cam2_unselected.png │ │ │ │ │ ├── camera_xformOp_transform_rotateX_cameraMoved.png │ │ │ │ │ ├── camera_xformOp_transform_rotateX_insideNearClipPlane.png │ │ │ │ │ └── camera_xformOp_transform_rotateX_unselected.png │ │ │ │ ├── VP2RenderDelegateUsdSkelTest │ │ │ │ └── baseline │ │ │ │ │ ├── HIK_Export_0.png │ │ │ │ │ ├── HIK_Export_100.png │ │ │ │ │ ├── HIK_Export_50.png │ │ │ │ │ ├── skinCluster_0.png │ │ │ │ │ ├── skinCluster_100.png │ │ │ │ │ └── skinCluster_50.png │ │ │ │ ├── testVP2RenderDelegateBasisCurves.py │ │ │ │ ├── testVP2RenderDelegateCameras.py │ │ │ │ ├── testVP2RenderDelegateConsolidation.py │ │ │ │ ├── testVP2RenderDelegateDisplayColors.py │ │ │ │ ├── testVP2RenderDelegateDisplayColorsStandardSurface.py │ │ │ │ ├── testVP2RenderDelegateDisplayLayers.py │ │ │ │ ├── testVP2RenderDelegateDrawModes.py │ │ │ │ ├── testVP2RenderDelegateDuplicateProxy.py │ │ │ │ ├── testVP2RenderDelegateGeomSubset.py │ │ │ │ ├── testVP2RenderDelegateInteractiveWorkflows.py │ │ │ │ ├── testVP2RenderDelegateIsolateSelect.py │ │ │ │ ├── testVP2RenderDelegateLights.py │ │ │ │ ├── testVP2RenderDelegateMaterialX.py │ │ │ │ ├── testVP2RenderDelegateNoMaterialX.py │ │ │ │ ├── testVP2RenderDelegatePerInstanceInheritedData.py │ │ │ │ ├── testVP2RenderDelegatePointInstanceOrientation.py │ │ │ │ ├── testVP2RenderDelegatePointInstanceSelection.py │ │ │ │ ├── testVP2RenderDelegatePointInstancesPickMode.py │ │ │ │ ├── testVP2RenderDelegatePoints.py │ │ │ │ ├── testVP2RenderDelegatePrimPath.py │ │ │ │ ├── testVP2RenderDelegateSelection.py │ │ │ │ ├── testVP2RenderDelegateTextureLoading.py │ │ │ │ ├── testVP2RenderDelegateUSDPreviewSurface.py │ │ │ │ ├── testVP2RenderDelegateUsdCamera.py │ │ │ │ └── testVP2RenderDelegateUsdSkel.py │ │ ├── undo │ │ │ ├── CMakeLists.txt │ │ │ ├── testOpUndoItem.py │ │ │ ├── testOpUndoItemList.py │ │ │ └── testUsdUndoManager.py │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── materialx_test_data │ │ │ ├── BrokenMaterial1_topo.mtlx │ │ │ ├── Channel1_topo.mtlx │ │ │ ├── Channel1_topo_1_39.mtlx │ │ │ ├── Channel4_topo.mtlx │ │ │ ├── DefaultGeomPropCase1.mtlx │ │ │ ├── Interface2_topo.mtlx │ │ │ ├── Interface2_topo_1_39.mtlx │ │ │ ├── MultiConnect1_topo.mtlx │ │ │ ├── MultiOut6_topo.mtlx │ │ │ ├── defaultgeomprop_topo.mtlx │ │ │ ├── topology_tests.mtlx │ │ │ └── topology_tests_1_39.mtlx │ │ │ ├── testBlockSceneModificationContext.py │ │ │ ├── testDiagnosticDelegate.py │ │ │ ├── testLoadRules.cpp │ │ │ ├── testMaterialCommands.py │ │ │ ├── testSplitString.cpp │ │ │ ├── testTargetLayer.cpp │ │ │ ├── testUtilsEditability.py │ │ │ ├── testUtilsFileSystem.cpp │ │ │ ├── testUtilsSelectability.py │ │ │ ├── testUtilsSelectabilityPointInstanceSelection.py │ │ │ └── test_ShaderGenUtils.cpp │ ├── mayaUsdAPI │ │ ├── CMakeLists.txt │ │ ├── StageTest │ │ │ └── CubeModel.usda │ │ ├── testMayaUsdAPIProxyShapeNotice.py │ │ └── testMayaUsdAPIProxyStage.py │ ├── testAttributeEditorTemplate.py │ ├── testMayaHydraPlugin.py │ ├── testMayaUsdCacheId.py │ ├── testMayaUsdConverter.py │ ├── testMayaUsdCreateStageCommands.py │ ├── testMayaUsdCreateStageInMayaRef.py │ ├── testMayaUsdDirtyScene.py │ ├── testMayaUsdInfoCommand.py │ ├── testMayaUsdInteractiveLayerEditorCommands.py │ ├── testMayaUsdLayerEditorCommands.py │ ├── testMayaUsdPlugVersionCheck.py │ ├── testMayaUsdProxyAccessor.py │ ├── testMayaUsdPythonImport.py │ ├── testMayaUsdSchemaCommand.py │ ├── ufe │ │ ├── CMakeLists.txt │ │ ├── testAttribute.py │ │ ├── testAttributeBlock.py │ │ ├── testAttributeInfo.py │ │ ├── testAttributes.py │ │ ├── testBatchOpsHandler.py │ │ ├── testBlockedLayerEdit.py │ │ ├── testCamera.py │ │ ├── testCenterPivot.py │ │ ├── testChildFilter.py │ │ ├── testClipboard.py │ │ ├── testComboCmd.py │ │ ├── testConnections.py │ │ ├── testContextOps.py │ │ ├── testDefaultPrimCmds.py │ │ ├── testDeleteCmd.py │ │ ├── testDisplayLayer.py │ │ ├── testDuplicateCmd.py │ │ ├── testDuplicateProxyShape.py │ │ ├── testEditRouting.py │ │ ├── testGroupCmd.py │ │ ├── testLegacyDeleteCmd.py │ │ ├── testLight.py │ │ ├── testMaterial.py │ │ ├── testMatrices.py │ │ ├── testMayaPickwalk.py │ │ ├── testMoveCmd.py │ │ ├── testObject3d.py │ │ ├── testObservableScene.py │ │ ├── testParentCmd.py │ │ ├── testPayloadCommands.py │ │ ├── testPivotConversion.py │ │ ├── testPixelMoveCmd.py │ │ ├── testPointInstances.py │ │ ├── testPrimMetadataEditRouting.py │ │ ├── testPythonWrappers.py │ │ ├── testReferenceCommands.py │ │ ├── testRelationshipBlock.py │ │ ├── testRename.py │ │ ├── testReorderCmd.py │ │ ├── testRotateCmd.py │ │ ├── testRotateCmdUndoRedo.py │ │ ├── testRotatePivot.py │ │ ├── testScaleCmd.py │ │ ├── testSceneItem.py │ │ ├── testSceneItemMetadata.py │ │ ├── testSceneSegment.py │ │ ├── testSchemas.py │ │ ├── testSelection.py │ │ ├── testSelectionByArray.py │ │ ├── testSelectionNotification.py │ │ ├── testSetsCmd.py │ │ ├── testShaderNodeDef.py │ │ ├── testTRSBase.py │ │ ├── testToggleCommands.py │ │ ├── testTransform3dChainOfResponsibility.py │ │ ├── testTransform3dTranslate.py │ │ ├── testTransform3dTranslateWithTimeSamples.py │ │ ├── testUIIcons.py │ │ ├── testUIInfoHandler.py │ │ ├── testUINodeGraphNode.py │ │ ├── testUfePythonImport.py │ │ ├── testUngroupCmd.py │ │ ├── testVariant.py │ │ ├── testVisibilityCmd.py │ │ └── ufeTestPlugins │ │ │ └── ufeTestCmdsPlugin.py │ └── usd │ │ ├── CMakeLists.txt │ │ ├── plugin │ │ ├── CMakeLists.txt │ │ ├── bulletAdaptor.cpp │ │ ├── infoImportChaser.cpp │ │ ├── mayaShaderTranslation.cpp │ │ ├── mayaUsdPlugInfo.json │ │ ├── nullApiExporter.cpp │ │ ├── nullApiExporter_plugInfo.json │ │ ├── plugInfoExportEmptyConfig.json │ │ ├── plugInfoMaya.json │ │ ├── plugInfoSiteSpecificConfig.json │ │ ├── plugInfoUsd.json │ │ ├── plugin.cpp │ │ ├── testPlugModule1.py │ │ ├── testPlugModule1_plugInfo.json │ │ ├── testPlugModule2.py │ │ ├── testPlugModule2_plugInfo.json │ │ ├── testPlugModule3.py │ │ ├── testPlugModule3_plugInfo.json │ │ ├── testPlugModule4.py │ │ ├── testPlugModule4_plugInfo.json │ │ ├── testPlugModule5.py │ │ ├── testPlugModule5_plugInfo.json │ │ ├── testPlugModule6.py │ │ └── testPlugModule6_plugInfo.json │ │ ├── pxrUsdPreviewSurface │ │ ├── CMakeLists.txt │ │ ├── PxrUsdPreviewSurfaceDrawTest │ │ │ ├── PxrUsdPreviewSurfaceDrawTest.ma │ │ │ └── baseline │ │ │ │ └── PxrUsdPreviewSurfaceDrawTest_value_ramps.png │ │ ├── PxrUsdPreviewSurfaceExportTest │ │ │ ├── Brazilian_rosewood_pxr128.png │ │ │ ├── Brazilian_rosewood_pxr128_bmp.png │ │ │ └── PxrUsdPreviewSurfaceExportTest.ma │ │ ├── testPxrUsdPreviewSurfaceDraw.py │ │ └── testPxrUsdPreviewSurfaceExport.py │ │ ├── schemas │ │ ├── CMakeLists.txt │ │ ├── testMayaUsdSchemasMayaReference.py │ │ └── testMayaUsdSchemasPythonImport.py │ │ ├── translators │ │ ├── CMakeLists.txt │ │ ├── UsdExportAsClipTest │ │ │ └── UsdExportAsClipTest.ma │ │ ├── UsdExportBindTransformsTest │ │ │ └── bindTransformsExport.ma │ │ ├── UsdExportBlendShapesTest │ │ │ └── blendShapesExport.ma │ │ ├── UsdExportCameraTest │ │ │ ├── UsdExportCameraAttrSplineTest.ma │ │ │ └── UsdExportCameraTest.ma │ │ ├── UsdExportColorSetsTest │ │ │ └── UsdExportColorSetsTest.ma │ │ ├── UsdExportConnectedTest │ │ │ └── visibility.ma │ │ ├── UsdExportCustomConverterTest │ │ │ └── testScene.ma │ │ ├── UsdExportDisplacementTest │ │ │ └── SimpleDisplacement.ma │ │ ├── UsdExportDisplayColorTest │ │ │ └── UsdExportDisplayColorTest.ma │ │ ├── UsdExportEulerFilterTest │ │ │ └── UsdExportEulerFilterTest.ma │ │ ├── UsdExportFannedOutFileNodesMaterialTest │ │ │ └── FannedOutFileNodesMaterialTest.ma │ │ ├── UsdExportFilterTypesTest │ │ │ └── UsdExportFilterTypesTest.ma │ │ ├── UsdExportFrameOffsetTest │ │ │ └── UsdExportFrameOffsetTest.ma │ │ ├── UsdExportGeomSubsetTest │ │ │ └── UsdExportGeomSubsetTest.ma │ │ ├── UsdExportImportRoundtripPreviewSurfaceTest │ │ │ └── OpacityTests.ma │ │ ├── UsdExportImportUDIMTest │ │ │ ├── UdimTest_1001_color.png │ │ │ ├── UdimTest_1002_color.png │ │ │ ├── UdimTest_1003_color.png │ │ │ ├── UsdExportUDIMTest.ma │ │ │ └── UsdImportUDIMTest.usda │ │ ├── UsdExportInstancesTest │ │ │ └── UsdExportInstancesTest.ma │ │ ├── UsdExportLightTest │ │ │ └── UsdExportLightTest.ma │ │ ├── UsdExportLocatorTest │ │ │ ├── CubeUnderLocator.ma │ │ │ └── SingleLocator.ma │ │ ├── UsdExportMaterialScopeTest │ │ │ ├── one-group.ma │ │ │ └── two-groups.ma │ │ ├── UsdExportMaterialXSurfaceShader │ │ │ ├── ImageWithoutGeomProp.mtlx │ │ │ ├── MaterialXStackExport.mtlx │ │ │ ├── Multioutput.mtlx │ │ │ └── RelativePath.mtlx │ │ ├── UsdExportMaterialXTest │ │ │ ├── MaterialX_decal.ma │ │ │ └── StandardSurfaceTextured.ma │ │ ├── UsdExportMayaInstancerTest │ │ │ └── UsdExportMayaInstancerTest.ma │ │ ├── UsdExportMeshTest │ │ │ └── UsdExportMeshTest.ma │ │ ├── UsdExportMultiMaterialTest │ │ │ └── MultiMaterialTest.ma │ │ ├── UsdExportNurbsCurveTest │ │ │ └── UsdExportNurbsCurveTest.ma │ │ ├── UsdExportOverImportTest │ │ │ └── CubeModel.usda │ │ ├── UsdExportParticlesTest │ │ │ └── UsdExportParticlesTest.ma │ │ ├── UsdExportPrefTest │ │ │ └── UsdExportPrefTest.ma │ │ ├── UsdExportRenderLayerModeTest │ │ │ └── UsdExportRenderLayerModeTest.ma │ │ ├── UsdExportRfMLightTest │ │ │ └── RfMLightsTest.ma │ │ ├── UsdExportRfMShadersTest │ │ │ └── MarbleCube.ma │ │ ├── UsdExportRootPrimTest │ │ │ └── UsdExportRootPrimTest.ma │ │ ├── UsdExportRootsTest │ │ │ └── UsdExportRootsTest.ma │ │ ├── UsdExportSelectionHierarchy │ │ │ └── UsdExportSelectionHierarchy.ma │ │ ├── UsdExportSelectionTest │ │ │ └── UsdExportSelectionTest.ma │ │ ├── UsdExportShadingInstancedTest │ │ │ ├── InstancedShading.ma │ │ │ └── NestedInstancedShading.ma │ │ ├── UsdExportShadingModePxrRis │ │ │ └── MarbleCube.ma │ │ ├── UsdExportSkeletonTest │ │ │ ├── UsdExportPartialSkeleton.ma │ │ │ ├── UsdExportSkeleton.ma │ │ │ ├── UsdExportSkeletonAtSceneRoot.ma │ │ │ ├── UsdExportSkeletonBindPoseMissingJoints.ma │ │ │ ├── UsdExportSkeletonBindPoseSparseIndices.ma │ │ │ ├── UsdExportSkeletonNoDagPose.ma │ │ │ ├── UsdExportSkeletonSegfaultTest.ma │ │ │ └── UsdExportSkeletonWithIdentityBindPose.ma │ │ ├── UsdExportStagesAsRefsTest │ │ │ ├── sceneWithStage.ma │ │ │ └── stage.usda │ │ ├── UsdExportStrokeTest │ │ │ └── UsdExportStrokeTest.ma │ │ ├── UsdExportTextureTest │ │ │ └── rel_project │ │ │ │ ├── scenes │ │ │ │ └── TextureTest.ma │ │ │ │ ├── sourceimages │ │ │ │ └── grid.png │ │ │ │ └── workspace.mel │ │ ├── UsdExportTypeTest │ │ │ └── UsdExportTypeTest.ma │ │ ├── UsdExportUVSetMappingsTest │ │ │ ├── UsdExportUVSetMappingsTest.ma │ │ │ ├── blue.png │ │ │ ├── green.png │ │ │ ├── label_ao.png │ │ │ ├── label_bc.png │ │ │ ├── label_o.png │ │ │ ├── multi_uv_simple.ma │ │ │ └── red.png │ │ ├── UsdExportUVSetsFloatTest │ │ │ └── UsdExportUVSetsTest_Float.ma │ │ ├── UsdExportUVSetsSwitchTest │ │ │ └── UsdExportUVSwitchTest.ma │ │ ├── UsdExportUVSetsTest │ │ │ └── UsdExportUVSetsTest.ma │ │ ├── UsdExportUVTransforms │ │ │ └── UsdExportUVTransforms.ma │ │ ├── UsdExportUsdPreviewSurfaceTest │ │ │ ├── Brazilian_rosewood_pxr128.png │ │ │ ├── Brazilian_rosewood_pxr128_bmp.png │ │ │ └── Brazilian_rosewood_pxr128_n.png │ │ ├── UsdExportUsdzPackage │ │ │ ├── asset.ma │ │ │ └── texture.png │ │ ├── UsdExportUserTaggedAttributesTest │ │ │ └── UserTaggedAttributesTest.ma │ │ ├── UsdExportVisibilityDefaultTest │ │ │ └── UsdExportVisibilityDefaultTest.ma │ │ ├── UsdImportBasisCurvesTest │ │ │ ├── basisCurve.usda │ │ │ ├── basisCurve_linear.usda │ │ │ ├── batchBezier.usda │ │ │ ├── batchNurbs.usda │ │ │ ├── invalidNurbsCurves.usda │ │ │ ├── nurbsCurve.usda │ │ │ └── nurbsDegree5.usda │ │ ├── UsdImportCameraTest │ │ │ ├── UsdImportCameraSplineTest.usd │ │ │ └── UsdImportCameraTest.usda │ │ ├── UsdImportColorSetsTest │ │ │ └── UsdImportColorSetsTest.usda │ │ ├── UsdImportCustomConverterTest │ │ │ └── UsdImportCustomConverterTest.usda │ │ ├── UsdImportDisplacementTest │ │ │ └── SimpleDisplacement.usda │ │ ├── UsdImportExportScopeTest │ │ │ └── Scopes.usda │ │ ├── UsdImportExportTypelessDefsTest │ │ │ └── ExoticTypeNames.usda │ │ ├── UsdImportFrameRangeTest │ │ │ └── MovingCube.usda │ │ ├── UsdImportFramerates │ │ │ └── framerate.usda │ │ ├── UsdImportInstancesTest │ │ │ ├── ComplexScenario_optimized.usda │ │ │ ├── ComplexScenario_unoptimized.usda │ │ │ ├── GeomWithTrf.usda │ │ │ ├── SimpleScenario_optimized.usda │ │ │ ├── SimpleScenario_unoptimized.usda │ │ │ ├── UsdExportInstancesTest_optimized.usda │ │ │ ├── UsdExportInstancesTest_original.usda │ │ │ ├── UsdExportInstancesTest_unoptimized.usda │ │ │ └── UsdImportInstancesTest_GeomWithTrf.usda │ │ ├── UsdImportLightTest │ │ │ └── LightsTest.usda │ │ ├── UsdImportMaterialX │ │ │ ├── UsdImportMaterialX.usda │ │ │ ├── standard_surface_gold.mtlx │ │ │ └── standard_surface_jade.usda │ │ ├── UsdImportMayaReferenceTest │ │ │ ├── MayaReference.usda │ │ │ └── UsdExportSkeletonWithoutBindPose.ma │ │ ├── UsdImportMeshTest │ │ │ └── Mesh.usda │ │ ├── UsdImportPointCacheTest │ │ │ └── pointCache.usda │ │ ├── UsdImportPreviewSurface │ │ │ ├── Tiny.usdz │ │ │ ├── props │ │ │ │ ├── billboards │ │ │ │ │ ├── billboards.usda │ │ │ │ │ └── textures │ │ │ │ │ │ └── green_A.png │ │ │ │ └── textures │ │ │ │ │ └── black_B.png │ │ │ ├── textures │ │ │ │ └── red_C.png │ │ │ └── world.usda │ │ ├── UsdImportRelativeTextures │ │ │ ├── UsdImportRelativeTextures.usda │ │ │ ├── rel_project │ │ │ │ └── workspace.mel │ │ │ ├── standard_surface_gold.mtlx │ │ │ └── standard_surface_jade.usda │ │ ├── UsdImportRfMLightTest │ │ │ └── RfMLightsTest.usda │ │ ├── UsdImportRfMShadersTest │ │ │ └── MarbleCube.usda │ │ ├── UsdImportSessionLayerTest │ │ │ └── Cubes.usda │ │ ├── UsdImportShadingModeDisplayColor │ │ │ └── RedCube.usda │ │ ├── UsdImportShadingModePxrRis │ │ │ └── MarbleCube.usda │ │ ├── UsdImportSkeleton │ │ │ ├── morpher_box.usd │ │ │ ├── skelCube.usda │ │ │ ├── skelCubeDq.usda │ │ │ └── skelStaticTimeSampledMesh.usda │ │ ├── UsdImportUSDZTexturesTest │ │ │ └── test_cubes.usdz │ │ ├── UsdImportUVSetMappingsTest │ │ │ ├── UsdImportUVSetMappings.usda │ │ │ └── lines.png │ │ ├── UsdImportUVSetsFloatTest │ │ │ ├── UsdImportUVSetsTestWithCreases_Float.usda │ │ │ └── UsdImportUVSetsTest_Float.usda │ │ ├── UsdImportUVSetsTest │ │ │ ├── UsdImportUVSetsTest.usda │ │ │ └── UsdImportUVSetsTestWithCreases.usda │ │ ├── UsdImportUnitsTests │ │ │ └── UnitsMillimeters.usda │ │ ├── UsdImportUpAxisTests │ │ │ └── UpAxisY.usda │ │ ├── UsdImportXformAnimTest │ │ │ └── Mesh.usda │ │ ├── UsdImportXformsTest │ │ │ ├── UsdImportXformsTest.usda │ │ │ ├── UsdImportXformsTestRotateAxis.usda │ │ │ └── pivotTests.usda │ │ ├── UsdMayaAdaptorGeomTest │ │ │ └── UsdAttrs.usda │ │ ├── UsdMayaAdaptorMetadataTest │ │ │ └── UsdAttrs.usda │ │ ├── testUsdExport8BitNormalMap.py │ │ ├── testUsdExportAndHide.py │ │ ├── testUsdExportAnimation.py │ │ ├── testUsdExportAsClip.py │ │ ├── testUsdExportAssignedMaterials.py │ │ ├── testUsdExportBindTransform.py │ │ ├── testUsdExportBlendshapes.py │ │ ├── testUsdExportCamera.py │ │ ├── testUsdExportCameraAttrSpline.py │ │ ├── testUsdExportCameraSameName.py │ │ ├── testUsdExportColorSets.py │ │ ├── testUsdExportConnected.py │ │ ├── testUsdExportCustomConverter.template.py │ │ ├── testUsdExportDefaultPrim.py │ │ ├── testUsdExportDisplacement.py │ │ ├── testUsdExportDisplayColor.py │ │ ├── testUsdExportEmptyXforms.py │ │ ├── testUsdExportEulerFilter.py │ │ ├── testUsdExportFannedOutFileNodesMaterial.py │ │ ├── testUsdExportFileFormat.py │ │ ├── testUsdExportFilterTypes.py │ │ ├── testUsdExportFrameOffset.py │ │ ├── testUsdExportGeomSubset.py │ │ ├── testUsdExportImportRoundtripPreviewSurface.py │ │ ├── testUsdExportImportUDIM.py │ │ ├── testUsdExportInstances.py │ │ ├── testUsdExportLayerAttributes.py │ │ ├── testUsdExportLight.py │ │ ├── testUsdExportLightAttrSplines.py │ │ ├── testUsdExportLocator.py │ │ ├── testUsdExportMaterialScope.py │ │ ├── testUsdExportMaterialScopeLegacy.py │ │ ├── testUsdExportMaterialX.py │ │ ├── testUsdExportMaterialXSurfaceShader.py │ │ ├── testUsdExportMaterialsOnly.py │ │ ├── testUsdExportMayaInstancer.py │ │ ├── testUsdExportMesh.py │ │ ├── testUsdExportMultiMaterial.py │ │ ├── testUsdExportNurbsCurve.py │ │ ├── testUsdExportOpenLayer.py │ │ ├── testUsdExportOverImport.py │ │ ├── testUsdExportParticles.py │ │ ├── testUsdExportPref.py │ │ ├── testUsdExportRenderLayerMode.py │ │ ├── testUsdExportRfMLight.py │ │ ├── testUsdExportRfMShaders.py │ │ ├── testUsdExportRootPrim.py │ │ ├── testUsdExportRoots.py │ │ ├── testUsdExportRootsAndRootPrim.py │ │ ├── testUsdExportSchemaApi.py │ │ ├── testUsdExportSelection.py │ │ ├── testUsdExportSelectionHierarchy.py │ │ ├── testUsdExportShadingInstanced.py │ │ ├── testUsdExportShadingModePxrRis.py │ │ ├── testUsdExportSkeleton.py │ │ ├── testUsdExportSkin.py │ │ ├── testUsdExportSplineXforms.py │ │ ├── testUsdExportStagesAsRefs.py │ │ ├── testUsdExportStripNamespaces.py │ │ ├── testUsdExportStroke.py │ │ ├── testUsdExportTexture.py │ │ ├── testUsdExportTypes.py │ │ ├── testUsdExportUVSetMappings.py │ │ ├── testUsdExportUVSets.py │ │ ├── testUsdExportUVSetsSwitch.py │ │ ├── testUsdExportUVTransforms.py │ │ ├── testUsdExportUnits.py │ │ ├── testUsdExportUpAxis.py │ │ ├── testUsdExportUsdPreviewSurface.py │ │ ├── testUsdExportUsdzPackage.py │ │ ├── testUsdExportUserTaggedAttributes.py │ │ ├── testUsdExportVisibilityDefault.py │ │ ├── testUsdImportAnonymousLayer.py │ │ ├── testUsdImportBasisCurves.py │ │ ├── testUsdImportBatchBezierCurves.py │ │ ├── testUsdImportBatchNurbsCurves.py │ │ ├── testUsdImportBlendShapes.py │ │ ├── testUsdImportCamera.py │ │ ├── testUsdImportChaser.py │ │ ├── testUsdImportColorSets.py │ │ ├── testUsdImportCustomConverter.template.py │ │ ├── testUsdImportDisplacement.py │ │ ├── testUsdImportEulerFilter.py │ │ ├── testUsdImportExportScope.py │ │ ├── testUsdImportExportSiteSpecificConfig.py │ │ ├── testUsdImportExportTypelessDefs.py │ │ ├── testUsdImportFrameRange.py │ │ ├── testUsdImportFramerates.py │ │ ├── testUsdImportHighDegreeNurbsCurves.py │ │ ├── testUsdImportInstances.py │ │ ├── testUsdImportLight.py │ │ ├── testUsdImportLinearCurves.py │ │ ├── testUsdImportMaterialX.py │ │ ├── testUsdImportMayaReference.py │ │ ├── testUsdImportMesh.py │ │ ├── testUsdImportNurbsCurves.py │ │ ├── testUsdImportPointCache.py │ │ ├── testUsdImportPreviewSurface.py │ │ ├── testUsdImportRelativeTextures.py │ │ ├── testUsdImportRfMLight.py │ │ ├── testUsdImportRfMShaders.py │ │ ├── testUsdImportSessionLayer.py │ │ ├── testUsdImportShadingModeDisplayColor.py │ │ ├── testUsdImportShadingModePxrRis.py │ │ ├── testUsdImportSkeleton.py │ │ ├── testUsdImportUSDZTextures.py │ │ ├── testUsdImportUVSetMappings.py │ │ ├── testUsdImportUVSets.py │ │ ├── testUsdImportUnits.py │ │ ├── testUsdImportUpAxis.py │ │ ├── testUsdImportXformAnim.py │ │ ├── testUsdImportXforms.py │ │ ├── testUsdMayaAdaptor.py │ │ ├── testUsdMayaAdaptorGeom.py │ │ ├── testUsdMayaAdaptorMetadata.py │ │ ├── testUsdMayaAdaptorUndoRedo.py │ │ ├── testUsdMayaListShadingModesCommand.py │ │ └── textures │ │ │ ├── Brazilian_rosewood_pxr128.png │ │ │ ├── Mono.png │ │ │ ├── MonoA.png │ │ │ ├── RGB.png │ │ │ ├── RGBA.png │ │ │ ├── normalSpiral.png │ │ │ └── normalSpiralA.png │ │ └── utils │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── test_DiffAttributes.cpp │ │ ├── test_DiffComputeOverall.cpp │ │ ├── test_DiffCore.cpp │ │ ├── test_DiffDictionaries.cpp │ │ ├── test_DiffLists.cpp │ │ ├── test_DiffMetadatas.cpp │ │ ├── test_DiffPrims.cpp │ │ ├── test_DiffPrimsAttributes.cpp │ │ ├── test_DiffPrimsChildren.cpp │ │ ├── test_DiffPrimsRelations.cpp │ │ ├── test_DiffRelationships.cpp │ │ ├── test_DiffValues.cpp │ │ ├── test_DiffValuesArrays.cpp │ │ ├── test_DiffValuesDoubleVecs.cpp │ │ ├── test_DiffValuesFloatVecs.cpp │ │ ├── test_DiffValuesGeneric.cpp │ │ ├── test_DiffValuesHalfVecs.cpp │ │ ├── test_DiffValuesIntVecs.cpp │ │ ├── test_DiffValuesMatrices.cpp │ │ ├── test_DiffValuesQuaternions.cpp │ │ └── test_MergePrims.cpp ├── testSamples │ ├── MaterialX │ │ ├── BatchOpsTestScene.usda │ │ ├── DemoQuads.usda │ │ ├── MayaSurfaces.usda │ │ ├── MtlxUVStreamTest.usda │ │ ├── MtlxValueTypes.usda │ │ ├── OpenPBRShowcase.ma │ │ ├── ShadedPyramid.usda │ │ ├── color_management.ma │ │ ├── color_management_MTLX.usda │ │ ├── color_management_MTLX_Raw.usda │ │ ├── color_management_USD.usda │ │ ├── compound_displacement_passthrough.usda │ │ ├── delete_attr_test.usda │ │ ├── grid_with_smoothsteps.usda │ │ ├── grid_with_udims.usda │ │ ├── grids_with_udims.usda │ │ ├── int_enum.usda │ │ ├── mtlxNodesShowcase.ma │ │ ├── multiple_connections.usda │ │ ├── no-rule-studio-config-v1.0.0_aces-v1.3_ocio-v2.0.ocio │ │ ├── place2dTextureShowcase.ma │ │ ├── sin_compound.usda │ │ ├── studio-config-v1.0.0_aces-v1.3_ocio-v2.0.ocio │ │ ├── textures │ │ │ ├── Brazilian_rosewood_pxr128.png │ │ │ ├── Mono.png │ │ │ ├── MonoA.png │ │ │ ├── R16F.exr │ │ │ ├── R32F.exr │ │ │ ├── R8U.png │ │ │ ├── RG16F.exr │ │ │ ├── RG32F.exr │ │ │ ├── RG8U.png │ │ │ ├── RGB.png │ │ │ ├── RGBA.png │ │ │ ├── color_palette_ACEScg.exr │ │ │ ├── color_palette_ADX10.exr │ │ │ ├── color_palette_ADX16.exr │ │ │ ├── color_palette_arri_logc4.exr │ │ │ ├── color_palette_g24_rec709.exr │ │ │ ├── color_palette_lin_p3d65.exr │ │ │ ├── color_palette_srgb_texture.exr │ │ │ ├── diffuse.1001.jpg │ │ │ ├── diffuse.1002.jpg │ │ │ ├── diffuse.1003.jpg │ │ │ ├── diffuse.1004.jpg │ │ │ ├── diffuse.1005.jpg │ │ │ ├── diffuse.1006.jpg │ │ │ ├── diffuse.1010.jpg │ │ │ ├── diffuse.1022.jpg │ │ │ ├── grid.png │ │ │ ├── mesh_wire_norm.png │ │ │ ├── normalSpiral.png │ │ │ └── normalSpiralA.png │ │ ├── transparencyScene.ma │ │ └── transparencyStage.usda │ ├── UsdPreviewSurface │ │ ├── DisplayColorCube.usda │ │ ├── F0_is_base.usda │ │ ├── LightAPI_Test.usda │ │ ├── TestFallbackColor.usda │ │ ├── TestOpacityThreshold.usda │ │ ├── UsdTransform2dTest.usda │ │ ├── UseSpecularWorkflowTest.usda │ │ ├── grid.png │ │ └── opacityRamp.png │ ├── UsdSkel │ │ ├── HIK_Export.usda │ │ └── skinCluster.usda │ ├── appleBite │ │ ├── appleBite.ma │ │ └── asset_flattened_instancing_and_class_removed.usda │ ├── attributeBlock │ │ ├── root.usda │ │ ├── subB.usda │ │ ├── subBRef.usda │ │ ├── subC.usda │ │ ├── subCRef.usda │ │ └── sublayerOfSubB.usda │ ├── ballset │ │ └── StandaloneScene │ │ │ ├── Assembly_room_set.usda │ │ │ ├── Ball.maya.usd │ │ │ ├── Ball.shadingVariants.usda │ │ │ ├── Ball.usd │ │ │ ├── Ball_payload.usd │ │ │ ├── Room_set.usd │ │ │ ├── edits.usda │ │ │ ├── invalid_layer.usda │ │ │ ├── tex │ │ │ ├── ball1.jpg │ │ │ ├── ball1.tex │ │ │ ├── ball4.jpg │ │ │ ├── ball4.tex │ │ │ ├── ball8.jpg │ │ │ ├── ball8.tex │ │ │ ├── ball9.jpg │ │ │ ├── ball9.tex │ │ │ ├── ballCue.jpg │ │ │ ├── ballCue.tex │ │ │ └── makeTex │ │ │ ├── top_layer.ma │ │ │ └── top_layer.usda │ ├── basisCurves │ │ ├── basisCurves.usda │ │ └── nurbsCircleExport.usda │ ├── camera │ │ ├── RenderCameras.usda │ │ ├── TranslateRotate_vs_xform.usda │ │ └── camera_xformOp_transform_rotateX.usda │ ├── classPrims │ │ └── class-prims.usda │ ├── compositionArcs │ │ ├── compositionArcs.ma │ │ └── compositionArcs.usda │ ├── consolidation │ │ ├── capsule.usda │ │ └── colorConsolidation.usda │ ├── cubeRef │ │ ├── cube-root.usda │ │ └── cube.usda │ ├── cylinder │ │ ├── cylinder.usda │ │ └── usdCylinder.ma │ ├── cylinderSubset │ │ └── cylinder.usda │ ├── defaultPrimInSub │ │ ├── root.usda │ │ └── sub.usda │ ├── displayColors │ │ ├── ColorTest.ma │ │ └── ColorTestStandardSurface.ma │ ├── doubleSided │ │ ├── MaterialX_StandardSurface.usda │ │ └── UsdPreviewSurface.usda │ ├── drawModes │ │ ├── DrawModes.usda │ │ ├── NEG_X.png │ │ ├── NEG_Y.png │ │ ├── NEG_Z.png │ │ ├── POS_X.png │ │ ├── POS_Y.png │ │ └── POS_Z.png │ ├── dup_material │ │ ├── dup_material.usda │ │ └── textures │ │ │ └── diffuse.jpg │ ├── geomSubset │ │ └── perFaceShaders.usda │ ├── groupBalls │ │ ├── ballset.ma │ │ └── ballset.usda │ ├── groupCmd │ │ ├── sphere.usda │ │ └── torus.usda │ ├── hideOrphanedNodes │ │ ├── A.usda │ │ ├── A_geom.usda │ │ ├── A_payload.usda │ │ ├── B.usda │ │ └── hideOrphanedNodes.usda │ ├── instancer_pivot │ │ └── pivot.usda │ ├── instances │ │ ├── ball.usda │ │ ├── basisCurveInstance.usda │ │ ├── billboard.usda │ │ ├── defaultMaterialBillboards.usda │ │ ├── flatquad.usda │ │ ├── green_A.png │ │ ├── inheritedDisplayColor_noPxrMtls.usda │ │ ├── inheritedDisplayColor_pxrSurface.usda │ │ ├── instancedTexturedBalls.usda │ │ ├── perInstanceInheritedData.usda │ │ └── texturedBall.usda │ ├── layerLocking │ │ ├── layerLocking.usda │ │ ├── layerLockingSubLayer.usda │ │ └── layerLockingSubSubLayer.usda │ ├── light │ │ ├── RenderLights.usda │ │ ├── RenderLights2VP2Shading.usda │ │ ├── RenderLightsCustomGizmoVP2Shading.usda │ │ ├── RenderLightsCustomGizmos.usda │ │ ├── RenderLightsCustomRectLightGizmo.usda │ │ └── SimpleLight.usda │ ├── lookdevXUsd │ │ ├── RelativeReferencedUdimTextures.usda │ │ ├── assets │ │ │ └── simplePlane │ │ │ │ ├── simplePlane.usda │ │ │ │ └── textures │ │ │ │ ├── diffuse.1001.jpg │ │ │ │ ├── diffuse.1002.jpg │ │ │ │ └── diffuse.1003.jpg │ │ ├── extendedConnections.usda │ │ ├── isInternalConnection.usda │ │ ├── test_component.usda │ │ ├── test_component_connections.usda │ │ └── test_component_connections3.usda │ ├── material │ │ ├── materialAssignment.usda │ │ ├── multipleMaterials.usda │ │ ├── noMaterial.usda │ │ └── singleMaterial.usda │ ├── multiVariants │ │ ├── multi_variants.usda │ │ ├── no-variant-preview-component.usda │ │ ├── no-variant-render-component.usda │ │ ├── no-variant-root.usda │ │ ├── with-variants-preview-component.usda │ │ ├── with-variants-render-component.usda │ │ └── with-variants-root.usda │ ├── multipleMaterialsAssignment │ │ ├── MultipleMaterialsAssignment.usda │ │ ├── blue.png │ │ ├── proxy_blue.png │ │ ├── proxy_green.png │ │ ├── proxy_red.png │ │ ├── render_blue.png │ │ ├── render_green.png │ │ └── render_red.png │ ├── normals │ │ └── primvars_normals.usda │ ├── parentCmd │ │ ├── simpleHierarchy.ma │ │ ├── simpleHierarchy.usda │ │ ├── simpleSceneMayaPlusUSD_TRS.ma │ │ ├── simpleSceneTRS.usda │ │ └── simpleSceneUSD_TRS.ma │ ├── payload │ │ ├── FlowerPot.geom.usd │ │ ├── FlowerPot.usda │ │ ├── FlowerPot_payload.usda │ │ └── multipots.usda │ ├── pivot │ │ ├── cube-far-pivot.usda │ │ └── cube-usd-pivot.usda │ ├── pointInstances │ │ ├── CubeModel.usda │ │ ├── PointInstancer_Grid_14.ma │ │ ├── PointInstancer_Grid_14.usda │ │ ├── PointInstancer_Grid_70k.ma │ │ ├── PointInstancer_Grid_70k.usda │ │ ├── PointInstancer_Grid_7k.ma │ │ ├── PointInstancer_Grid_7k.usda │ │ └── point_instanced_axis.usda │ ├── pointLight │ │ └── pointLight.usda │ ├── points │ │ └── points.usda │ ├── primPath │ │ ├── primPath.ma │ │ └── primPath.usda │ ├── properties │ │ └── properties.usda │ ├── relativeSubLayer │ │ ├── root.usda │ │ └── sublayer.usda │ ├── reorderCmd │ │ ├── primitives.ma │ │ └── primitives.usda │ ├── rhino_rig │ │ ├── anim_001.ma │ │ └── rhino_rig_001.ma │ ├── rig_with_opm │ │ └── offset_parent_matrix_rig.ma │ ├── selectability │ │ ├── cone-layer-selectable-1.usda │ │ ├── cone-layer-selectable-2.usda │ │ ├── cone-layer-selectable-3.usda │ │ ├── cone-layer-unselectable-1.usda │ │ ├── cone-layer-unselectable-2.usda │ │ └── cone-layer-unselectable-3.usda │ ├── setsCmd │ │ └── 5prims.usda │ ├── sphereAnimatedRadius │ │ ├── sphereAnimatedRadius.usda │ │ └── sphereAnimatedRadiusProxyShape.ma │ ├── switchVariants │ │ ├── asset.usda │ │ ├── model.usda │ │ ├── rig.anim.mb │ │ └── rig.layout.mb │ ├── targetRootLayer │ │ ├── target-root-layer-usda-2508.ma │ │ └── target-root-layer.ma │ ├── timeSamples │ │ └── timeSamples.usda │ ├── transform3d │ │ └── TranslateRotate_vs_xform.usda │ ├── tree │ │ ├── tree.ma │ │ ├── tree.usda │ │ ├── treeMat.usda │ │ ├── treeRef.ma │ │ └── treeRef.usda │ ├── twoMeshSpheres │ │ └── two_mesh_spheres.usda │ ├── twoSpheres │ │ ├── sphere.usda │ │ ├── sphere_bk.usda │ │ ├── sphere_ext.usda │ │ ├── sphere_no_default.usda │ │ ├── spheres_ref.usda │ │ ├── spherexform.usda │ │ └── twoSpheres.ma │ ├── variantInRef │ │ ├── layout │ │ │ ├── assets │ │ │ │ ├── asset.usda │ │ │ │ └── geo_variants.usda │ │ │ └── layout.usda │ │ └── shot.usda │ ├── variantSet │ │ ├── Variant.ma │ │ └── Variant.usd │ └── xformOpFallback │ │ ├── fallbackTest.ma │ │ └── fallbackTest.usda └── testUtils │ ├── __init__.py │ ├── cachingUtils.py │ ├── fixturesUtils.py │ ├── imageUtils.py │ ├── mayaUtils.py │ ├── mtohUtils.py │ ├── testUtils.py │ ├── transformUtils.py │ ├── ufeScripts │ ├── __init__.py │ └── ufeSelectCmd.py │ ├── ufeUtils.py │ └── usdUtils.py └── tutorials ├── animatedMesh ├── README.md └── animatedMeshImport.py ├── import-export-plugin-c++ ├── CMakeLists.txt ├── README.md ├── exampleExportPlugin.cpp ├── exampleImportPlugin.cpp ├── helpers.cpp ├── helpers.h ├── helpersJSON.cpp ├── helpersUI.cpp ├── mayaUsdPlugInfo.json ├── plugInfo.json └── plugin.cpp └── import-export-plugin ├── ExampleExportPlugin.py ├── ExampleImportPlugin.py ├── README-PYTHON.md ├── README.md ├── mayaUsdPlugInfo.json ├── plugins.py └── resources └── plugInfo.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-format-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/.clang-format-ignore -------------------------------------------------------------------------------- /.clang-format-include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/.clang-format-include -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Ignore clang-format commit 2 | 7c64b5df1f1cdbf879aaef12ed64b7fdd77a3af1 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/run-clang-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/.github/run-clang-format.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/README.md -------------------------------------------------------------------------------- /README_DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/README_DOC.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmake/compiler_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/compiler_config.cmake -------------------------------------------------------------------------------- /cmake/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/googletest.cmake -------------------------------------------------------------------------------- /cmake/googletest_download.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/googletest_download.txt.in -------------------------------------------------------------------------------- /cmake/googletest_src.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/googletest_src.txt.in -------------------------------------------------------------------------------- /cmake/gulrak.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/gulrak.cmake -------------------------------------------------------------------------------- /cmake/jinja.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/jinja.cmake -------------------------------------------------------------------------------- /cmake/mayausd_version.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/mayausd_version.info -------------------------------------------------------------------------------- /cmake/mayausdapi_version.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/mayausdapi_version.info -------------------------------------------------------------------------------- /cmake/modules/FindAR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/modules/FindAR.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLookdevXUfe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/modules/FindLookdevXUfe.cmake -------------------------------------------------------------------------------- /cmake/modules/FindMaya.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/modules/FindMaya.cmake -------------------------------------------------------------------------------- /cmake/modules/FindMaya_Qt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/modules/FindMaya_Qt.cmake -------------------------------------------------------------------------------- /cmake/modules/FindUFE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/modules/FindUFE.cmake -------------------------------------------------------------------------------- /cmake/modules/FindUSD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/modules/FindUSD.cmake -------------------------------------------------------------------------------- /cmake/python.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/python.cmake -------------------------------------------------------------------------------- /cmake/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/test.cmake -------------------------------------------------------------------------------- /cmake/usd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/usd.cmake -------------------------------------------------------------------------------- /cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cmake/utils.cmake -------------------------------------------------------------------------------- /cxx17_legacy_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/cxx17_legacy_support.h -------------------------------------------------------------------------------- /doc/AL_CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/AL_CONTRIBUTORS.md -------------------------------------------------------------------------------- /doc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/CHANGELOG.md -------------------------------------------------------------------------------- /doc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/CONTRIBUTING.md -------------------------------------------------------------------------------- /doc/EditRouting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/EditRouting.md -------------------------------------------------------------------------------- /doc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/LICENSE.md -------------------------------------------------------------------------------- /doc/LayerLocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/LayerLocking.md -------------------------------------------------------------------------------- /doc/MaterialX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/MaterialX.md -------------------------------------------------------------------------------- /doc/MayaStandardSurfaceSampler.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/MayaStandardSurfaceSampler.JPG -------------------------------------------------------------------------------- /doc/MayaToHydra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/MayaToHydra.md -------------------------------------------------------------------------------- /doc/UsdTransformsStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/UsdTransformsStack.md -------------------------------------------------------------------------------- /doc/UsdTransformsStack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/UsdTransformsStack.pdf -------------------------------------------------------------------------------- /doc/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/build.md -------------------------------------------------------------------------------- /doc/codingGuidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/codingGuidelines.md -------------------------------------------------------------------------------- /doc/images/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/al.png -------------------------------------------------------------------------------- /doc/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/header.jpg -------------------------------------------------------------------------------- /doc/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/header.png -------------------------------------------------------------------------------- /doc/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/linux.png -------------------------------------------------------------------------------- /doc/images/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/mac.png -------------------------------------------------------------------------------- /doc/images/maya-usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/maya-usd.png -------------------------------------------------------------------------------- /doc/images/plugin_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/plugin_manager.png -------------------------------------------------------------------------------- /doc/images/pxr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/pxr.png -------------------------------------------------------------------------------- /doc/images/ufe_commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/ufe_commands.png -------------------------------------------------------------------------------- /doc/images/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/doc/images/windows.png -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lookdevXUsd/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/.clang-format -------------------------------------------------------------------------------- /lib/lookdevXUsd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/CMakeLists.txt -------------------------------------------------------------------------------- /lib/lookdevXUsd/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/Export.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/LookdevXUsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/LookdevXUsd.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/LookdevXUsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/LookdevXUsd.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdCapabilityHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdCapabilityHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdCapabilityHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdCapabilityHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdClipboardHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdClipboardHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdClipboardHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdClipboardHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdConnectionCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdConnectionCommands.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdDebugHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdDebugHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdDebugHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdDebugHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdDeleteCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdDeleteCommand.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdDeleteCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdDeleteCommand.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdFileHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdFileHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdFileHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdFileHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdHierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdHierarchy.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdHierarchy.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdHierarchyHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdHierarchyHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdHierarchyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdHierarchyHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdLookdevHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdLookdevHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdLookdevHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdLookdevHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterial.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterial.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterialCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterialCommands.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterialCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterialCommands.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterialHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterialHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterialHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterialHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterialValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterialValidator.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdMaterialValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdMaterialValidator.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSceneItemOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSceneItemOps.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSceneItemOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSceneItemOps.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSceneItemOpsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSceneItemOpsHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSceneItemUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSceneItemUI.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSceneItemUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSceneItemUI.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSceneItemUIHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSceneItemUIHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSoloingHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSoloingHandler.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdSoloingHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdSoloingHandler.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdUINodeGraphNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdUINodeGraphNode.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/UsdUINodeGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/UsdUINodeGraphNode.h -------------------------------------------------------------------------------- /lib/lookdevXUsd/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/Utils.cpp -------------------------------------------------------------------------------- /lib/lookdevXUsd/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/lookdevXUsd/Utils.h -------------------------------------------------------------------------------- /lib/mayaUsd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/README.md: -------------------------------------------------------------------------------- 1 | # Core library 2 | -------------------------------------------------------------------------------- /lib/mayaUsd/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/base/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/api.h -------------------------------------------------------------------------------- /lib/mayaUsd/base/buildInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/buildInfo.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/base/buildInfo.h.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/buildInfo.h.src -------------------------------------------------------------------------------- /lib/mayaUsd/base/debugCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/debugCodes.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/base/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/debugCodes.h -------------------------------------------------------------------------------- /lib/mayaUsd/base/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/id.h -------------------------------------------------------------------------------- /lib/mayaUsd/base/mayaUsd.h.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/mayaUsd.h.src -------------------------------------------------------------------------------- /lib/mayaUsd/base/syncId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/syncId.h -------------------------------------------------------------------------------- /lib/mayaUsd/base/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/tokens.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/base/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/base/tokens.h -------------------------------------------------------------------------------- /lib/mayaUsd/commands/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/commands/PullPushCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/PullPushCommands.h -------------------------------------------------------------------------------- /lib/mayaUsd/commands/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/Readme.md -------------------------------------------------------------------------------- /lib/mayaUsd/commands/baseExportCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/baseExportCommand.h -------------------------------------------------------------------------------- /lib/mayaUsd/commands/baseImportCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/baseImportCommand.h -------------------------------------------------------------------------------- /lib/mayaUsd/commands/editTargetCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/editTargetCommand.h -------------------------------------------------------------------------------- /lib/mayaUsd/commands/schemaCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/schemaCommand.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/commands/schemaCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/commands/schemaCommand.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/chaser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/chaser/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/chaser/exportChaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/chaser/exportChaser.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/chaser/importChaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/chaser/importChaser.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/fallbackPrimReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/fallbackPrimReader.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/fallbackPrimUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/fallbackPrimUpdater.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/functorPrimReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/functorPrimReader.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/functorPrimReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/functorPrimReader.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/functorPrimWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/functorPrimWriter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/functorPrimWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/functorPrimWriter.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/importData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/importData.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/importData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/importData.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/instancedNodeWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/instancedNodeWriter.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobContextRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobContextRegistry.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobs/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobs/jobArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobs/jobArgs.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobs/jobArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobs/jobArgs.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobs/readJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobs/readJob.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobs/readJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobs/readJob.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobs/writeJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobs/writeJob.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/jobs/writeJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/jobs/writeJob.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primReader.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primReader.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primReaderArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primReaderArgs.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primReaderArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primReaderArgs.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primReaderContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primReaderContext.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primReaderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primReaderContext.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primReaderRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primReaderRegistry.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primUpdater.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primUpdater.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primUpdaterArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primUpdaterArgs.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primUpdaterArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primUpdaterArgs.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primUpdaterContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primUpdaterContext.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primUpdaterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primUpdaterManager.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primUpdaterRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primUpdaterRegistry.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primWriter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primWriter.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primWriterArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primWriterArgs.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primWriterArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primWriterArgs.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primWriterContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primWriterContext.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primWriterContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primWriterContext.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/primWriterRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/primWriterRegistry.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/pullInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/pullInformation.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/pullInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/pullInformation.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/registryHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/registryHelper.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/registryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/registryHelper.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/schemaApiAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/schemaApiAdaptor.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/schemaApiAdaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/schemaApiAdaptor.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/shaderReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/shaderReader.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/shaderReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/shaderReader.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/shaderWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/shaderWriter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/shaderWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/shaderWriter.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/transformWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/transformWriter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/transformWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/transformWriter.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/adaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/adaptor.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/adaptor.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/meshReadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/meshReadUtils.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/readUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/readUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/readUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/readUtil.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/roundTripUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/roundTripUtil.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/shadingUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/shadingUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/shadingUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/shadingUtil.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/splineUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/splineUtils.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/writeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/writeUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/writeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/writeUtil.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/xformStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/xformStack.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/utils/xformStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/utils/xformStack.h -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/writeJobContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/writeJobContext.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/fileio/writeJobContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/fileio/writeJobContext.h -------------------------------------------------------------------------------- /lib/mayaUsd/listeners/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/listeners/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/listeners/notice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/listeners/notice.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/listeners/notice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/listeners/notice.h -------------------------------------------------------------------------------- /lib/mayaUsd/listeners/proxyShapeNotice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/listeners/proxyShapeNotice.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/Layer_Saving_Docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/Layer_Saving_Docs.md -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/hdImagingShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/hdImagingShape.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/hdImagingShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/hdImagingShape.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/layerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/layerManager.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/layerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/layerManager.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyAccessor.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyAccessor.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyAccessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyAccessor.py -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyShapeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyShapeBase.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyShapeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyShapeBase.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyShapePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyShapePlugin.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyShapePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyShapePlugin.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/proxyStageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/proxyStageProvider.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/stageData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/stageData.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/stageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/stageData.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/stageNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/stageNode.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/stageNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/stageNode.h -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/usdPrimProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/usdPrimProvider.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/nodes/usdPrimProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/nodes/usdPrimProvider.h -------------------------------------------------------------------------------- /lib/mayaUsd/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/__init__.py -------------------------------------------------------------------------------- /lib/mayaUsd/python/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/module.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/moduleDeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/moduleDeps.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapAdaptor.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapColorSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapColorSpace.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapConverter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapExportChaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapExportChaser.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapImportChaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapImportChaser.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapLayerLocking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapLayerLocking.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapLoadRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapLoadRules.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapOpUndoItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapOpUndoItem.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapOpenMaya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapOpenMaya.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapPrimReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapPrimReader.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapPrimUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapPrimUpdater.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapPrimWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapPrimWriter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapQuery.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapReadUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapReadUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapRoundTripUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapRoundTripUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapShadingMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapShadingMode.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapShadingUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapShadingUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapStageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapStageCache.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapTokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapTokens.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapWriteUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapWriteUtil.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/python/wrapXformStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/python/wrapXformStack.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/render/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/render/mayaToHydra/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/mayaToHydra/tokens.h -------------------------------------------------------------------------------- /lib/mayaUsd/render/mayaToHydra/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/mayaToHydra/utils.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/render/mayaToHydra/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/mayaToHydra/utils.h -------------------------------------------------------------------------------- /lib/mayaUsd/render/px_vp20/glslProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/px_vp20/glslProgram.h -------------------------------------------------------------------------------- /lib/mayaUsd/render/px_vp20/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/px_vp20/utils.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/render/px_vp20/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/px_vp20/utils.h -------------------------------------------------------------------------------- /lib/mayaUsd/render/px_vp20/utilsLegacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/render/px_vp20/utilsLegacy.h -------------------------------------------------------------------------------- /lib/mayaUsd/resources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/resources/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/resources/ae/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/resources/ae/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/resources/ae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mayaUsd/resources/ae/ae_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/resources/ae/ae_utils.py -------------------------------------------------------------------------------- /lib/mayaUsd/sceneIndex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/sceneIndex/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/sceneIndex/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/sceneIndex/plugInfo.json -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/EditAsMayaCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/EditAsMayaCommand.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/EditAsMayaCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/EditAsMayaCommand.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/Global.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/Global.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaStagesSubject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaStagesSubject.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaStagesSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaStagesSubject.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUIInfoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUIInfoHandler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUIInfoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUIInfoHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdContextOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdContextOps.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdContextOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdContextOps.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdHierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdHierarchy.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdHierarchy.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdObject3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdObject3d.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdObject3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdObject3d.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdObject3dHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdObject3dHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdSceneItemOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdSceneItemOps.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdSceneItemOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdSceneItemOps.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdUIInfoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdUIInfoHandler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/MayaUsdUIInfoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/MayaUsdUIInfoHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/ProxyShapeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/ProxyShapeHandler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/ProxyShapeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/ProxyShapeHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/ProxyShapeHierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/ProxyShapeHierarchy.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/ProxyShapeHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/ProxyShapeHierarchy.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/PulledObjectHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/PulledObjectHierarchy.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdBatchOpsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdBatchOpsHandler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdBatchOpsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdBatchOpsHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdCodeWrapperHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdCodeWrapperHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdConnectionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdConnectionHandler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdConnectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdConnectionHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdConnections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdConnections.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdConnections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdConnections.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLight.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLight.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLight2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLight2.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLight2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLight2.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLight2Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLight2Handler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLight2Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLight2Handler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLightHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLightHandler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdLightHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdLightHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdMaterial.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdMaterial.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdMaterialHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdMaterialHandler.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdMaterialHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdMaterialHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdPathMappingHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdPathMappingHandler.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdShaderNodeDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdShaderNodeDef.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdShaderNodeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdShaderNodeDef.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdStageMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdStageMap.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdStageMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdStageMap.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdUINodeGraphNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdUINodeGraphNode.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdUINodeGraphNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdUINodeGraphNode.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdUIUfeObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdUIUfeObserver.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/UsdUIUfeObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/UsdUIUfeObserver.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/Utils.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/Utils.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/__init__.py -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/module.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/moduleDeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/moduleDeps.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/trf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/trf/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/trf/RotationUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/trf/RotationUtils.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/trf/RotationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/trf/RotationUtils.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/trf/XformOpUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/trf/XformOpUtils.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/trf/XformOpUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/trf/XformOpUtils.h -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/wrapGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/wrapGlobal.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/wrapNotice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/wrapNotice.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/ufe/wrapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/ufe/wrapUtils.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/undo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/undo/MayaUsdUndoBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/MayaUsdUndoBlock.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/undo/MayaUsdUndoBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/MayaUsdUndoBlock.h -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemList.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemList.h -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemMuting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemMuting.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemMuting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemMuting.h -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemRecorder.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemRecorder.h -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemValidator.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItemValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItemValidator.h -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItems.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/undo/OpUndoItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/OpUndoItems.h -------------------------------------------------------------------------------- /lib/mayaUsd/undo/README-Nice-Undo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/README-Nice-Undo.md -------------------------------------------------------------------------------- /lib/mayaUsd/undo/README-Op-Undo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/README-Op-Undo.md -------------------------------------------------------------------------------- /lib/mayaUsd/undo/README-USD-Undo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/README-USD-Undo.md -------------------------------------------------------------------------------- /lib/mayaUsd/undo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/undo/README.md -------------------------------------------------------------------------------- /lib/mayaUsd/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsd/utils/autoUndoCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/autoUndoCommands.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/autoUndoCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/autoUndoCommands.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/colorSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/colorSpace.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/colorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/colorSpace.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/converter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/converter.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/copyLayerPrims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/copyLayerPrims.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/copyLayerPrims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/copyLayerPrims.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/customLayerData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/customLayerData.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/customLayerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/customLayerData.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/diagnosticDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/diagnosticDelegate.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/diagnosticDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/diagnosticDelegate.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/dynamicAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/dynamicAttribute.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/dynamicAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/dynamicAttribute.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/hash.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/json.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/json.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/jsonConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/jsonConverter.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/layerLocking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/layerLocking.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/layerLocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/layerLocking.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/layerMuting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/layerMuting.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/layerMuting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/layerMuting.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/layers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/layers.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/layers.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/loadRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/loadRules.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/loadRulesAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/loadRulesAttribute.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/mayaEditRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/mayaEditRouter.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/mayaEditRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/mayaEditRouter.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/mayaNodeObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/mayaNodeObserver.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/mayaNodeObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/mayaNodeObserver.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/mayaNodeTypeObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/mayaNodeTypeObserver.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/plugInfo.json -------------------------------------------------------------------------------- /lib/mayaUsd/utils/plugRegistryHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/plugRegistryHelper.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/plugRegistryHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/plugRegistryHelper.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/primActivation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/primActivation.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/primActivation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/primActivation.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/progressBarScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/progressBarScope.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/progressBarScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/progressBarScope.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/query.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/query.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/selectability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/selectability.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/selectability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/selectability.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/stageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/stageCache.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/stageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/stageCache.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/targetLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/targetLayer.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/targetLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/targetLayer.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/traverseLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/traverseLayer.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/traverseLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/traverseLayer.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/trieVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/trieVisitor.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/undoHelperCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/undoHelperCommand.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/undoHelperCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/undoHelperCommand.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/util.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/util.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/utilComponentCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/utilComponentCreator.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/utilDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/utilDictionary.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/utilDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/utilDictionary.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/utilFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/utilFileSystem.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/utilFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/utilFileSystem.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/utilSerialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/utilSerialization.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/utilSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/utilSerialization.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/variantFallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/variantFallbacks.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/variantFallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/variantFallbacks.h -------------------------------------------------------------------------------- /lib/mayaUsd/utils/variants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/variants.cpp -------------------------------------------------------------------------------- /lib/mayaUsd/utils/variants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsd/utils/variants.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsdAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/README.md -------------------------------------------------------------------------------- /lib/mayaUsdAPI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/__init__.py -------------------------------------------------------------------------------- /lib/mayaUsdAPI/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/api.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/clipboard.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/clipboard.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/contextOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/contextOps.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/contextOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/contextOps.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/global.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/global.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/mayaUsdAPI.h.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/mayaUsdAPI.h.src -------------------------------------------------------------------------------- /lib/mayaUsdAPI/proxyShapeNotice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/proxyShapeNotice.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/proxyShapeNotice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/proxyShapeNotice.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/proxyStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/proxyStage.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/proxyStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/proxyStage.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/python/CMakeLists.txt -------------------------------------------------------------------------------- /lib/mayaUsdAPI/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/python/__init__.py -------------------------------------------------------------------------------- /lib/mayaUsdAPI/python/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/python/module.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/python/moduleDeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/python/moduleDeps.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/python/wrapProxyStage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/python/wrapProxyStage.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/render.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/render.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/ufeHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/ufeHandlers.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/ufeHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/ufeHandlers.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/undo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/undo.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/undo.h -------------------------------------------------------------------------------- /lib/mayaUsdAPI/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/utils.cpp -------------------------------------------------------------------------------- /lib/mayaUsdAPI/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/mayaUsdAPI/utils.h -------------------------------------------------------------------------------- /lib/usd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/hdMaya/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/adapter.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/adapter.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/cameraAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/cameraAdapter.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/dagAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/dagAdapter.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/dagAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/dagAdapter.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/lightAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/lightAdapter.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/lightAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/lightAdapter.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/mayaAttrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/mayaAttrs.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/mayaAttrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/mayaAttrs.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/meshAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/meshAdapter.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/proxyAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/proxyAdapter.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/proxyAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/proxyAdapter.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/shapeAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/shapeAdapter.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/shapeAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/shapeAdapter.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/tokens.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/adapters/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/adapters/tokens.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/api.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/debugCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/debugCodes.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/debugCodes.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/delegate.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/delegate.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/delegateCtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/delegateCtx.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/delegateCtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/delegateCtx.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/params.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/proxyDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/proxyDelegate.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/sceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/sceneDelegate.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/delegates/testDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/delegates/testDelegate.h -------------------------------------------------------------------------------- /lib/usd/hdMaya/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/plugInfo.json -------------------------------------------------------------------------------- /lib/usd/hdMaya/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/utils.cpp -------------------------------------------------------------------------------- /lib/usd/hdMaya/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/hdMaya/utils.h -------------------------------------------------------------------------------- /lib/usd/pxrUsdPreviewSurface/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/pxrUsdPreviewSurface/api.h -------------------------------------------------------------------------------- /lib/usd/pxrUsdPreviewSurface/cpvColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/pxrUsdPreviewSurface/cpvColor.h -------------------------------------------------------------------------------- /lib/usd/schemas/ALMayaReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/ALMayaReference.cpp -------------------------------------------------------------------------------- /lib/usd/schemas/ALMayaReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/ALMayaReference.h -------------------------------------------------------------------------------- /lib/usd/schemas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/schemas/MayaReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/MayaReference.cpp -------------------------------------------------------------------------------- /lib/usd/schemas/MayaReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/MayaReference.h -------------------------------------------------------------------------------- /lib/usd/schemas/ModuleDeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/ModuleDeps.cpp -------------------------------------------------------------------------------- /lib/usd/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/__init__.py -------------------------------------------------------------------------------- /lib/usd/schemas/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/api.h -------------------------------------------------------------------------------- /lib/usd/schemas/generatedSchema.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/generatedSchema.usda -------------------------------------------------------------------------------- /lib/usd/schemas/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/module.cpp -------------------------------------------------------------------------------- /lib/usd/schemas/plugInfo.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/plugInfo.json.in -------------------------------------------------------------------------------- /lib/usd/schemas/schema.usda.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/schema.usda.in -------------------------------------------------------------------------------- /lib/usd/schemas/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/tokens.cpp -------------------------------------------------------------------------------- /lib/usd/schemas/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/tokens.h -------------------------------------------------------------------------------- /lib/usd/schemas/wrapMayaReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/wrapMayaReference.cpp -------------------------------------------------------------------------------- /lib/usd/schemas/wrapTokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/schemas/wrapTokens.cpp -------------------------------------------------------------------------------- /lib/usd/translators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/translators/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/api.h -------------------------------------------------------------------------------- /lib/usd/translators/cameraReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/cameraReader.cpp -------------------------------------------------------------------------------- /lib/usd/translators/cameraWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/cameraWriter.cpp -------------------------------------------------------------------------------- /lib/usd/translators/cameraWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/cameraWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/instancerWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/instancerWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/jointWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/jointWriter.cpp -------------------------------------------------------------------------------- /lib/usd/translators/jointWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/jointWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/lightReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/lightReader.cpp -------------------------------------------------------------------------------- /lib/usd/translators/lightWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/lightWriter.cpp -------------------------------------------------------------------------------- /lib/usd/translators/lightWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/lightWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/locatorWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/locatorWriter.cpp -------------------------------------------------------------------------------- /lib/usd/translators/locatorWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/locatorWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/meshReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/meshReader.cpp -------------------------------------------------------------------------------- /lib/usd/translators/meshWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/meshWriter.cpp -------------------------------------------------------------------------------- /lib/usd/translators/meshWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/meshWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/particleWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/particleWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/plugInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/plugInfo.json -------------------------------------------------------------------------------- /lib/usd/translators/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/plugin.cpp -------------------------------------------------------------------------------- /lib/usd/translators/scopeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/scopeReader.cpp -------------------------------------------------------------------------------- /lib/usd/translators/skelReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/skelReader.cpp -------------------------------------------------------------------------------- /lib/usd/translators/stageWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/stageWriter.cpp -------------------------------------------------------------------------------- /lib/usd/translators/stageWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/stageWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/strokeWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/strokeWriter.cpp -------------------------------------------------------------------------------- /lib/usd/translators/strokeWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/strokeWriter.h -------------------------------------------------------------------------------- /lib/usd/translators/xformReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/translators/xformReader.cpp -------------------------------------------------------------------------------- /lib/usd/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/ui/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/api.h -------------------------------------------------------------------------------- /lib/usd/ui/importDialog/TreeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/importDialog/TreeItem.cpp -------------------------------------------------------------------------------- /lib/usd/ui/importDialog/TreeItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/importDialog/TreeItem.h -------------------------------------------------------------------------------- /lib/usd/ui/importDialog/TreeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/importDialog/TreeModel.cpp -------------------------------------------------------------------------------- /lib/usd/ui/importDialog/TreeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/importDialog/TreeModel.h -------------------------------------------------------------------------------- /lib/usd/ui/importDialog/USDQtUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/importDialog/USDQtUtil.cpp -------------------------------------------------------------------------------- /lib/usd/ui/importDialog/USDQtUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/importDialog/USDQtUtil.h -------------------------------------------------------------------------------- /lib/usd/ui/importDialog/images/ui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/importDialog/images/ui.qrc -------------------------------------------------------------------------------- /lib/usd/ui/initStringResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/initStringResources.cpp -------------------------------------------------------------------------------- /lib/usd/ui/initStringResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/initStringResources.h -------------------------------------------------------------------------------- /lib/usd/ui/layerEditor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/layerEditor/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usd/ui/layerEditor/mayaQtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/layerEditor/mayaQtUtils.h -------------------------------------------------------------------------------- /lib/usd/ui/layerEditor/pathChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/layerEditor/pathChecker.h -------------------------------------------------------------------------------- /lib/usd/ui/layerEditor/qtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/layerEditor/qtUtils.cpp -------------------------------------------------------------------------------- /lib/usd/ui/layerEditor/qtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/layerEditor/qtUtils.h -------------------------------------------------------------------------------- /lib/usd/ui/layerEditor/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/layerEditor/resources.qrc -------------------------------------------------------------------------------- /lib/usd/ui/layerEditor/sessionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usd/ui/layerEditor/sessionState.h -------------------------------------------------------------------------------- /lib/usdUfe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usdUfe/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/base/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usdUfe/base/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/base/api.h -------------------------------------------------------------------------------- /lib/usdUfe/base/debugCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/base/debugCodes.h -------------------------------------------------------------------------------- /lib/usdUfe/base/forwardDeclares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/base/forwardDeclares.h -------------------------------------------------------------------------------- /lib/usdUfe/base/tokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/base/tokens.cpp -------------------------------------------------------------------------------- /lib/usdUfe/base/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/base/tokens.h -------------------------------------------------------------------------------- /lib/usdUfe/base/usdUfe.h.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/base/usdUfe.h.src -------------------------------------------------------------------------------- /lib/usdUfe/doc/EditRouting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/doc/EditRouting.md -------------------------------------------------------------------------------- /lib/usdUfe/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usdUfe/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/__init__.py -------------------------------------------------------------------------------- /lib/usdUfe/python/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/module.cpp -------------------------------------------------------------------------------- /lib/usdUfe/python/wrapClipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/wrapClipboard.cpp -------------------------------------------------------------------------------- /lib/usdUfe/python/wrapCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/wrapCommands.cpp -------------------------------------------------------------------------------- /lib/usdUfe/python/wrapEditRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/wrapEditRouter.cpp -------------------------------------------------------------------------------- /lib/usdUfe/python/wrapGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/wrapGlobal.cpp -------------------------------------------------------------------------------- /lib/usdUfe/python/wrapTokens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/wrapTokens.cpp -------------------------------------------------------------------------------- /lib/usdUfe/python/wrapUICallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/wrapUICallback.cpp -------------------------------------------------------------------------------- /lib/usdUfe/python/wrapUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/python/wrapUtils.cpp -------------------------------------------------------------------------------- /lib/usdUfe/resources/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(icons) 2 | -------------------------------------------------------------------------------- /lib/usdUfe/ufe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usdUfe/ufe/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/Global.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/Global.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/StagesSubject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/StagesSubject.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/StagesSubject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/StagesSubject.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UfeNotifGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UfeNotifGuard.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UfeNotifGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UfeNotifGuard.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UfeVersionCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UfeVersionCompat.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdAttribute.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdAttribute.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdAttributeHolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdAttributeHolder.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdAttributeHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdAttributeHolder.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdAttributes.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdAttributes.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdAttributesHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdAttributesHandler.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdCamera.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdCamera.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdCameraHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdCameraHandler.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdCameraHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdCameraHandler.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdClipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdClipboard.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdClipboard.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdClipboardCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdClipboardCommands.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdClipboardHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdClipboardHandler.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdContextOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdContextOps.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdContextOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdContextOps.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdContextOpsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdContextOpsHandler.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdHierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdHierarchy.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdHierarchy.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdHierarchyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdHierarchyHandler.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdObject3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdObject3d.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdObject3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdObject3d.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdObject3dHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdObject3dHandler.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdObject3dHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdObject3dHandler.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdSceneItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdSceneItem.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdSceneItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdSceneItem.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdSceneItemOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdSceneItemOps.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdSceneItemOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdSceneItemOps.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdUIInfoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdUIInfoHandler.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdUIInfoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdUIInfoHandler.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdUndoDeleteCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdUndoDeleteCommand.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdUndoRenameCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdUndoRenameCommand.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdUndoableCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdUndoableCommand.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/UsdUndoableCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/UsdUndoableCommand.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/Utils.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/Utils.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/trf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/trf/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usdUfe/ufe/trf/UsdTransform3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/trf/UsdTransform3d.md -------------------------------------------------------------------------------- /lib/usdUfe/ufe/trf/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/trf/Utils.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/trf/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/trf/Utils.h -------------------------------------------------------------------------------- /lib/usdUfe/ufe/trf/XformOpUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/trf/XformOpUtils.cpp -------------------------------------------------------------------------------- /lib/usdUfe/ufe/trf/XformOpUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/ufe/trf/XformOpUtils.h -------------------------------------------------------------------------------- /lib/usdUfe/undo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/undo/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usdUfe/undo/UsdUndoBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/undo/UsdUndoBlock.cpp -------------------------------------------------------------------------------- /lib/usdUfe/undo/UsdUndoBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/undo/UsdUndoBlock.h -------------------------------------------------------------------------------- /lib/usdUfe/undo/UsdUndoManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/undo/UsdUndoManager.cpp -------------------------------------------------------------------------------- /lib/usdUfe/undo/UsdUndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/undo/UsdUndoManager.h -------------------------------------------------------------------------------- /lib/usdUfe/undo/UsdUndoableItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/undo/UsdUndoableItem.cpp -------------------------------------------------------------------------------- /lib/usdUfe/undo/UsdUndoableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/undo/UsdUndoableItem.h -------------------------------------------------------------------------------- /lib/usdUfe/usdUfe_version.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/usdUfe_version.info -------------------------------------------------------------------------------- /lib/usdUfe/utils/ALHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/ALHalf.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/CMakeLists.txt -------------------------------------------------------------------------------- /lib/usdUfe/utils/SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/SIMD.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/Utils.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/Utils.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffAttributes.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffCore.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffCore.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffDictionaries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffDictionaries.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffLists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffLists.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffMetadatas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffMetadatas.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffPrims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffPrims.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffPrims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffPrims.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/diffValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/diffValues.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/editRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/editRouter.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/editRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/editRouter.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/editRouterContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/editRouterContext.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/editability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/editability.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/editability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/editability.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/layers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/layers.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/layers.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/loadRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/loadRules.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/loadRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/loadRules.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/loadRulesText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/loadRulesText.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/mergePrims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/mergePrims.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/mergePrims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/mergePrims.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/mergePrimsOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/mergePrimsOptions.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/schemas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/schemas.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/schemas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/schemas.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/uiCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/uiCallback.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/uiCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/uiCallback.h -------------------------------------------------------------------------------- /lib/usdUfe/utils/usdUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/usdUtils.cpp -------------------------------------------------------------------------------- /lib/usdUfe/utils/usdUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/lib/usdUfe/utils/usdUtils.h -------------------------------------------------------------------------------- /modules/alUSD.mod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/modules/alUSD.mod.template -------------------------------------------------------------------------------- /modules/alUSD_Win.mod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/modules/alUSD_Win.mod.template -------------------------------------------------------------------------------- /modules/mayaUSD.mod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/modules/mayaUSD.mod.template -------------------------------------------------------------------------------- /modules/mayaUSD_Win.mod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/modules/mayaUSD_Win.mod.template -------------------------------------------------------------------------------- /modules/mtoh.mod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/modules/mtoh.mod.template -------------------------------------------------------------------------------- /modules/pxrUSD.mod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/modules/pxrUSD.mod.template -------------------------------------------------------------------------------- /modules/pxrUSD_Win.mod.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/modules/pxrUSD_Win.mod.template -------------------------------------------------------------------------------- /plugin/adsk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/adsk/icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/adsk/icons/USD_generic_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/USD_generic_100.png -------------------------------------------------------------------------------- /plugin/adsk/icons/USD_generic_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/USD_generic_150.png -------------------------------------------------------------------------------- /plugin/adsk/icons/USD_generic_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/USD_generic_200.png -------------------------------------------------------------------------------- /plugin/adsk/icons/USD_stage_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/USD_stage_100.png -------------------------------------------------------------------------------- /plugin/adsk/icons/USD_stage_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/USD_stage_150.png -------------------------------------------------------------------------------- /plugin/adsk/icons/USD_stage_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/USD_stage_200.png -------------------------------------------------------------------------------- /plugin/adsk/icons/toggle_off_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/toggle_off_100.png -------------------------------------------------------------------------------- /plugin/adsk/icons/toggle_off_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/toggle_off_150.png -------------------------------------------------------------------------------- /plugin/adsk/icons/toggle_off_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/toggle_off_200.png -------------------------------------------------------------------------------- /plugin/adsk/icons/toggle_on_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/toggle_on_100.png -------------------------------------------------------------------------------- /plugin/adsk/icons/toggle_on_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/toggle_on_150.png -------------------------------------------------------------------------------- /plugin/adsk/icons/toggle_on_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/icons/toggle_on_200.png -------------------------------------------------------------------------------- /plugin/adsk/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/adsk/plugin/ProxyShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/ProxyShape.cpp -------------------------------------------------------------------------------- /plugin/adsk/plugin/ProxyShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/ProxyShape.h -------------------------------------------------------------------------------- /plugin/adsk/plugin/base/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/base/api.h -------------------------------------------------------------------------------- /plugin/adsk/plugin/drawUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/drawUtils.cpp -------------------------------------------------------------------------------- /plugin/adsk/plugin/drawUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/drawUtils.h -------------------------------------------------------------------------------- /plugin/adsk/plugin/exportTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/exportTranslator.h -------------------------------------------------------------------------------- /plugin/adsk/plugin/geomNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/geomNode.cpp -------------------------------------------------------------------------------- /plugin/adsk/plugin/geomNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/geomNode.h -------------------------------------------------------------------------------- /plugin/adsk/plugin/gizmoShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/gizmoShape.cpp -------------------------------------------------------------------------------- /plugin/adsk/plugin/gizmoShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/gizmoShape.h -------------------------------------------------------------------------------- /plugin/adsk/plugin/importTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/importTranslator.h -------------------------------------------------------------------------------- /plugin/adsk/plugin/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/plugin/plugin.cpp -------------------------------------------------------------------------------- /plugin/adsk/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/adsk/scripts/USDMenuProc.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/scripts/USDMenuProc.mel -------------------------------------------------------------------------------- /plugin/adsk/scripts/mayaUsdMenu.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/scripts/mayaUsdMenu.mel -------------------------------------------------------------------------------- /plugin/adsk/scripts/mayaUsdMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/adsk/scripts/mayaUsdMenu.py -------------------------------------------------------------------------------- /plugin/al/ALUsdMayaConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/ALUsdMayaConfig.cmake.in -------------------------------------------------------------------------------- /plugin/al/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/al/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/LICENSE.txt -------------------------------------------------------------------------------- /plugin/al/MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /plugin/al/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/README.md -------------------------------------------------------------------------------- /plugin/al/docs/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/animation.md -------------------------------------------------------------------------------- /plugin/al/docs/assetresolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/assetresolution.md -------------------------------------------------------------------------------- /plugin/al/docs/basicUsage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/basicUsage.md -------------------------------------------------------------------------------- /plugin/al/docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/build.md -------------------------------------------------------------------------------- /plugin/al/docs/cameraProxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/cameraProxy.md -------------------------------------------------------------------------------- /plugin/al/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/contributing.md -------------------------------------------------------------------------------- /plugin/al/docs/developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/developer.md -------------------------------------------------------------------------------- /plugin/al/docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/events.md -------------------------------------------------------------------------------- /plugin/al/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/faq.md -------------------------------------------------------------------------------- /plugin/al/docs/geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/geometry.md -------------------------------------------------------------------------------- /plugin/al/docs/importExport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/importExport.md -------------------------------------------------------------------------------- /plugin/al/docs/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/layers.md -------------------------------------------------------------------------------- /plugin/al/docs/lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/lock.md -------------------------------------------------------------------------------- /plugin/al/docs/proxyShape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/proxyShape.md -------------------------------------------------------------------------------- /plugin/al/docs/pxrcomparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/pxrcomparison.md -------------------------------------------------------------------------------- /plugin/al/docs/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/python.md -------------------------------------------------------------------------------- /plugin/al/docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/testing.md -------------------------------------------------------------------------------- /plugin/al/docs/translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/translation.md -------------------------------------------------------------------------------- /plugin/al/docs/workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/docs/workflows.md -------------------------------------------------------------------------------- /plugin/al/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/doxygen/Doxyfile -------------------------------------------------------------------------------- /plugin/al/doxygen/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/doxygen/mainpage.dox -------------------------------------------------------------------------------- /plugin/al/lib/AL_USDMaya/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/lib/AL_USDMaya/Doxyfile -------------------------------------------------------------------------------- /plugin/al/lib/AL_USDMaya/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/lib/AL_USDMaya/__init__.py -------------------------------------------------------------------------------- /plugin/al/lib/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(AL_USDMaya) 2 | -------------------------------------------------------------------------------- /plugin/al/mayatest/AL/maya/test/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/mayatest/AL/maya/test/Api.h -------------------------------------------------------------------------------- /plugin/al/mayatest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(AL/maya/test) -------------------------------------------------------------------------------- /plugin/al/mayautils/AL/maya/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(mayaplugintest) 2 | -------------------------------------------------------------------------------- /plugin/al/mayautils/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(AL/maya) 2 | -------------------------------------------------------------------------------- /plugin/al/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/al/schemas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/schemas/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/al/schemas/usd/schema.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/schemas/usd/schema.usda -------------------------------------------------------------------------------- /plugin/al/translators/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/al/translators/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/Camera.cpp -------------------------------------------------------------------------------- /plugin/al/translators/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/Camera.h -------------------------------------------------------------------------------- /plugin/al/translators/FrameRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/FrameRange.cpp -------------------------------------------------------------------------------- /plugin/al/translators/FrameRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/FrameRange.h -------------------------------------------------------------------------------- /plugin/al/translators/MayaReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/MayaReference.h -------------------------------------------------------------------------------- /plugin/al/translators/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/Mesh.cpp -------------------------------------------------------------------------------- /plugin/al/translators/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/Mesh.h -------------------------------------------------------------------------------- /plugin/al/translators/NurbsCurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/NurbsCurve.cpp -------------------------------------------------------------------------------- /plugin/al/translators/NurbsCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/NurbsCurve.h -------------------------------------------------------------------------------- /plugin/al/translators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/README.md -------------------------------------------------------------------------------- /plugin/al/translators/tests/cube.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/translators/tests/cube.ma -------------------------------------------------------------------------------- /plugin/al/tutorials/endToEndMaya/.gitignore: -------------------------------------------------------------------------------- 1 | models/ 2 | shots/ 3 | -------------------------------------------------------------------------------- /plugin/al/tutorials/lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/tutorials/lock/README.md -------------------------------------------------------------------------------- /plugin/al/usdmayautils/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(AL/usdmaya/utils) -------------------------------------------------------------------------------- /plugin/al/utils/AL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/utils/AL/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/al/utils/AL/event/Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/al/utils/AL/event/Api.h -------------------------------------------------------------------------------- /plugin/al/utils/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(AL) -------------------------------------------------------------------------------- /plugin/pxr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/pxr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/LICENSE.txt -------------------------------------------------------------------------------- /plugin/pxr/cmake/macros/Private.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/cmake/macros/Private.cmake -------------------------------------------------------------------------------- /plugin/pxr/cmake/macros/Public.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/cmake/macros/Public.cmake -------------------------------------------------------------------------------- /plugin/pxr/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/doc/README.md -------------------------------------------------------------------------------- /plugin/pxr/maya/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/maya/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/pxr/maya/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/maya/README.md -------------------------------------------------------------------------------- /plugin/pxr/maya/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/maya/lib/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/pxr/maya/lib/usdMaya/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/maya/lib/usdMaya/api.h -------------------------------------------------------------------------------- /plugin/pxr/maya/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/maya/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/pxr/maya/plugin/pxrUsd/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/plugin/pxr/maya/plugin/pxrUsd/api.h -------------------------------------------------------------------------------- /pxr_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/pxr_python.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(lib) 2 | -------------------------------------------------------------------------------- /test/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/LookdevXUfe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/LookdevXUfe/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/mayaUsd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/mayaUsd/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/mayaUsd/fileio/skelCube.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/mayaUsd/fileio/skelCube.usda -------------------------------------------------------------------------------- /test/lib/mayaUsd/nodes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/mayaUsd/nodes/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/mayaUsd/render/pxrUsdMayaGL/PxrUsdMayaGLTest/blank.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | -------------------------------------------------------------------------------- /test/lib/mayaUsd/undo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/mayaUsd/undo/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/mayaUsd/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/mayaUsd/utils/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/mayaUsd/utils/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/mayaUsd/utils/main.cpp -------------------------------------------------------------------------------- /test/lib/mayaUsdAPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/mayaUsdAPI/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/testMayaHydraPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaHydraPlugin.py -------------------------------------------------------------------------------- /test/lib/testMayaUsdCacheId.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaUsdCacheId.py -------------------------------------------------------------------------------- /test/lib/testMayaUsdConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaUsdConverter.py -------------------------------------------------------------------------------- /test/lib/testMayaUsdDirtyScene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaUsdDirtyScene.py -------------------------------------------------------------------------------- /test/lib/testMayaUsdInfoCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaUsdInfoCommand.py -------------------------------------------------------------------------------- /test/lib/testMayaUsdProxyAccessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaUsdProxyAccessor.py -------------------------------------------------------------------------------- /test/lib/testMayaUsdPythonImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaUsdPythonImport.py -------------------------------------------------------------------------------- /test/lib/testMayaUsdSchemaCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/testMayaUsdSchemaCommand.py -------------------------------------------------------------------------------- /test/lib/ufe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/ufe/testAttribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testAttribute.py -------------------------------------------------------------------------------- /test/lib/ufe/testAttributeBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testAttributeBlock.py -------------------------------------------------------------------------------- /test/lib/ufe/testAttributeInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testAttributeInfo.py -------------------------------------------------------------------------------- /test/lib/ufe/testAttributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testAttributes.py -------------------------------------------------------------------------------- /test/lib/ufe/testBatchOpsHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testBatchOpsHandler.py -------------------------------------------------------------------------------- /test/lib/ufe/testBlockedLayerEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testBlockedLayerEdit.py -------------------------------------------------------------------------------- /test/lib/ufe/testCamera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testCamera.py -------------------------------------------------------------------------------- /test/lib/ufe/testCenterPivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testCenterPivot.py -------------------------------------------------------------------------------- /test/lib/ufe/testChildFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testChildFilter.py -------------------------------------------------------------------------------- /test/lib/ufe/testClipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testClipboard.py -------------------------------------------------------------------------------- /test/lib/ufe/testComboCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testComboCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testConnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testConnections.py -------------------------------------------------------------------------------- /test/lib/ufe/testContextOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testContextOps.py -------------------------------------------------------------------------------- /test/lib/ufe/testDefaultPrimCmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testDefaultPrimCmds.py -------------------------------------------------------------------------------- /test/lib/ufe/testDeleteCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testDeleteCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testDisplayLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testDisplayLayer.py -------------------------------------------------------------------------------- /test/lib/ufe/testDuplicateCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testDuplicateCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testEditRouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testEditRouting.py -------------------------------------------------------------------------------- /test/lib/ufe/testGroupCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testGroupCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testLegacyDeleteCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testLegacyDeleteCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testLight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testLight.py -------------------------------------------------------------------------------- /test/lib/ufe/testMaterial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testMaterial.py -------------------------------------------------------------------------------- /test/lib/ufe/testMatrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testMatrices.py -------------------------------------------------------------------------------- /test/lib/ufe/testMayaPickwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testMayaPickwalk.py -------------------------------------------------------------------------------- /test/lib/ufe/testMoveCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testMoveCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testObject3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testObject3d.py -------------------------------------------------------------------------------- /test/lib/ufe/testObservableScene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testObservableScene.py -------------------------------------------------------------------------------- /test/lib/ufe/testParentCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testParentCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testPayloadCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testPayloadCommands.py -------------------------------------------------------------------------------- /test/lib/ufe/testPivotConversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testPivotConversion.py -------------------------------------------------------------------------------- /test/lib/ufe/testPixelMoveCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testPixelMoveCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testPointInstances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testPointInstances.py -------------------------------------------------------------------------------- /test/lib/ufe/testPythonWrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testPythonWrappers.py -------------------------------------------------------------------------------- /test/lib/ufe/testReferenceCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testReferenceCommands.py -------------------------------------------------------------------------------- /test/lib/ufe/testRelationshipBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testRelationshipBlock.py -------------------------------------------------------------------------------- /test/lib/ufe/testRename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testRename.py -------------------------------------------------------------------------------- /test/lib/ufe/testReorderCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testReorderCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testRotateCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testRotateCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testRotateCmdUndoRedo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testRotateCmdUndoRedo.py -------------------------------------------------------------------------------- /test/lib/ufe/testRotatePivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testRotatePivot.py -------------------------------------------------------------------------------- /test/lib/ufe/testScaleCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testScaleCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testSceneItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testSceneItem.py -------------------------------------------------------------------------------- /test/lib/ufe/testSceneItemMetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testSceneItemMetadata.py -------------------------------------------------------------------------------- /test/lib/ufe/testSceneSegment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testSceneSegment.py -------------------------------------------------------------------------------- /test/lib/ufe/testSchemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testSchemas.py -------------------------------------------------------------------------------- /test/lib/ufe/testSelection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testSelection.py -------------------------------------------------------------------------------- /test/lib/ufe/testSelectionByArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testSelectionByArray.py -------------------------------------------------------------------------------- /test/lib/ufe/testSetsCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testSetsCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testShaderNodeDef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testShaderNodeDef.py -------------------------------------------------------------------------------- /test/lib/ufe/testTRSBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testTRSBase.py -------------------------------------------------------------------------------- /test/lib/ufe/testToggleCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testToggleCommands.py -------------------------------------------------------------------------------- /test/lib/ufe/testUIIcons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testUIIcons.py -------------------------------------------------------------------------------- /test/lib/ufe/testUIInfoHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testUIInfoHandler.py -------------------------------------------------------------------------------- /test/lib/ufe/testUINodeGraphNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testUINodeGraphNode.py -------------------------------------------------------------------------------- /test/lib/ufe/testUfePythonImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testUfePythonImport.py -------------------------------------------------------------------------------- /test/lib/ufe/testUngroupCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testUngroupCmd.py -------------------------------------------------------------------------------- /test/lib/ufe/testVariant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testVariant.py -------------------------------------------------------------------------------- /test/lib/ufe/testVisibilityCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/ufe/testVisibilityCmd.py -------------------------------------------------------------------------------- /test/lib/usd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/usd/plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/usd/plugin/bulletAdaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/plugin/bulletAdaptor.cpp -------------------------------------------------------------------------------- /test/lib/usd/plugin/plugInfoMaya.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/plugin/plugInfoMaya.json -------------------------------------------------------------------------------- /test/lib/usd/plugin/plugInfoUsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/plugin/plugInfoUsd.json -------------------------------------------------------------------------------- /test/lib/usd/plugin/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/plugin/plugin.cpp -------------------------------------------------------------------------------- /test/lib/usd/schemas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/schemas/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/usd/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/utils/CMakeLists.txt -------------------------------------------------------------------------------- /test/lib/usd/utils/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/utils/main.cpp -------------------------------------------------------------------------------- /test/lib/usd/utils/test_DiffCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/utils/test_DiffCore.cpp -------------------------------------------------------------------------------- /test/lib/usd/utils/test_DiffLists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/utils/test_DiffLists.cpp -------------------------------------------------------------------------------- /test/lib/usd/utils/test_DiffPrims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/lib/usd/utils/test_DiffPrims.cpp -------------------------------------------------------------------------------- /test/testSamples/cubeRef/cube.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/cubeRef/cube.usda -------------------------------------------------------------------------------- /test/testSamples/drawModes/NEG_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/drawModes/NEG_X.png -------------------------------------------------------------------------------- /test/testSamples/drawModes/NEG_Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/drawModes/NEG_Y.png -------------------------------------------------------------------------------- /test/testSamples/drawModes/NEG_Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/drawModes/NEG_Z.png -------------------------------------------------------------------------------- /test/testSamples/drawModes/POS_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/drawModes/POS_X.png -------------------------------------------------------------------------------- /test/testSamples/drawModes/POS_Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/drawModes/POS_Y.png -------------------------------------------------------------------------------- /test/testSamples/drawModes/POS_Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/drawModes/POS_Z.png -------------------------------------------------------------------------------- /test/testSamples/groupCmd/sphere.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/groupCmd/sphere.usda -------------------------------------------------------------------------------- /test/testSamples/groupCmd/torus.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/groupCmd/torus.usda -------------------------------------------------------------------------------- /test/testSamples/instances/ball.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/instances/ball.usda -------------------------------------------------------------------------------- /test/testSamples/material/noMaterial.usda: -------------------------------------------------------------------------------- 1 | #usda 1.0 2 | ( 3 | ) 4 | 5 | def Cube "cube" 6 | { 7 | } 8 | 9 | -------------------------------------------------------------------------------- /test/testSamples/points/points.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/points/points.usda -------------------------------------------------------------------------------- /test/testSamples/primPath/primPath.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/primPath/primPath.ma -------------------------------------------------------------------------------- /test/testSamples/setsCmd/5prims.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/setsCmd/5prims.usda -------------------------------------------------------------------------------- /test/testSamples/tree/tree.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/tree/tree.ma -------------------------------------------------------------------------------- /test/testSamples/tree/tree.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/tree/tree.usda -------------------------------------------------------------------------------- /test/testSamples/tree/treeMat.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/tree/treeMat.usda -------------------------------------------------------------------------------- /test/testSamples/tree/treeRef.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/tree/treeRef.ma -------------------------------------------------------------------------------- /test/testSamples/tree/treeRef.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testSamples/tree/treeRef.usda -------------------------------------------------------------------------------- /test/testUtils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testUtils/cachingUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/cachingUtils.py -------------------------------------------------------------------------------- /test/testUtils/fixturesUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/fixturesUtils.py -------------------------------------------------------------------------------- /test/testUtils/imageUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/imageUtils.py -------------------------------------------------------------------------------- /test/testUtils/mayaUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/mayaUtils.py -------------------------------------------------------------------------------- /test/testUtils/mtohUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/mtohUtils.py -------------------------------------------------------------------------------- /test/testUtils/testUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/testUtils.py -------------------------------------------------------------------------------- /test/testUtils/transformUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/transformUtils.py -------------------------------------------------------------------------------- /test/testUtils/ufeScripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testUtils/ufeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/ufeUtils.py -------------------------------------------------------------------------------- /test/testUtils/usdUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/test/testUtils/usdUtils.py -------------------------------------------------------------------------------- /tutorials/animatedMesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autodesk/maya-usd/HEAD/tutorials/animatedMesh/README.md --------------------------------------------------------------------------------