gitextract_ouwlqh9d/ ├── .gitignore ├── .moon/ │ ├── hooks/ │ │ └── pre-commit.sh │ ├── tasks/ │ │ └── tag-stubs.yml │ ├── tasks.yml │ ├── toolchain.yml │ └── workspace.yml ├── .pre-commit-config.yaml ├── LICENSE.txt ├── README.md ├── common/ │ ├── moon.yml │ ├── pyproject.toml │ ├── src/ │ │ └── stubgenlib/ │ │ ├── __init__.py │ │ ├── build.py │ │ ├── cpptypeconvert.py │ │ ├── moduleinspect.py │ │ ├── notifier.py │ │ ├── py.typed │ │ ├── siggen/ │ │ │ ├── __init__.py │ │ │ ├── advanced.py │ │ │ ├── boost.py │ │ │ ├── default.py │ │ │ ├── docstring.py │ │ │ └── sigfixer.py │ │ ├── stubgen/ │ │ │ ├── __init__.py │ │ │ └── delegate.py │ │ ├── test_helpers.py │ │ └── utils.py │ └── tests/ │ ├── test_stubgenlib.py │ └── test_utils.py ├── houdini/ │ ├── .interpreter │ ├── README.md │ ├── hou_cleanup_config.py │ ├── moon.yml │ ├── pyproject.toml │ ├── stubgen_houdini.py │ ├── stubgen_houdini.sh.bak │ ├── stubs/ │ │ └── hou-stubs/ │ │ ├── __init__.pyi │ │ └── py.typed │ └── test_stubs.py ├── katana/ │ ├── .interpreter │ ├── README.md │ ├── katanapy │ ├── moon.yml │ ├── mypy.ini │ ├── pyproject.toml │ ├── stubgen_katana.py │ ├── stubgen_katana.sh │ └── stubs/ │ ├── AssetAPI/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── AssetAPI_cmodule/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── AssetBrowser/ │ │ ├── Browser.pyi │ │ ├── BrowserColumn.pyi │ │ ├── BrowserSettings.pyi │ │ ├── FileBrowser.pyi │ │ ├── FileInfo.pyi │ │ ├── Manifest.pyi │ │ ├── NonexclusiveCheckboxPopup.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── CacheManager/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Callbacks/ │ │ ├── Callbacks.pyi │ │ ├── Manifest.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── CatalogAPI/ │ │ ├── Catalog.pyi │ │ ├── CatalogItem.pyi │ │ ├── CatalogUtils.pyi │ │ ├── Client.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── ConditionalStateGrammar/ │ │ ├── Parser.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── ConfigurationAPI_cmodule/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── DrawingModule/ │ │ ├── AutoPosition.pyi │ │ ├── CustomColors.pyi │ │ ├── Manifest.pyi │ │ ├── NodeShapeAttrUtil.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── GeoAPI/ │ │ ├── Lookfiles.pyi │ │ ├── Manifest.pyi │ │ ├── Transform.pyi │ │ ├── Util/ │ │ │ ├── ArgsFileUtil.pyi │ │ │ ├── CelUtil.pyi │ │ │ ├── GenericAppenderUtil.pyi │ │ │ ├── HintDictUtil.pyi │ │ │ ├── LookFileUtil.pyi │ │ │ ├── Manifest.pyi │ │ │ ├── Matrix.pyi │ │ │ └── __init__.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Katana/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── KatanaResources/ │ │ ├── Manifest.pyi │ │ ├── ResourceFiles.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── LoggingAPI/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── LookFileBakeAPI/ │ │ ├── Constants.pyi │ │ ├── Exceptions.pyi │ │ ├── LookFileBaker.pyi │ │ ├── LookFileUtil.pyi │ │ ├── OutputFormatAPI.pyi │ │ ├── Utils.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── MachineInfo/ │ │ ├── KatanaInfo.pyi │ │ ├── MachineInfo.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Main/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── MediaCacheHandler/ │ │ ├── Core.pyi │ │ ├── DiskUtil.pyi │ │ ├── ImageUtil.pyi │ │ ├── KatanaUtil.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Naming/ │ │ ├── SafeIdentifier.pyi │ │ ├── UniqueName.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── NodeGraphView/ │ │ ├── Manifest.pyi │ │ ├── Utility.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── NodegraphAPI/ │ │ ├── BypassParameterManager.pyi │ │ ├── CallbackTypes.pyi │ │ ├── ComplexConnector.pyi │ │ ├── Constants/ │ │ │ ├── ApplyWhenOptions.pyi │ │ │ ├── ApplyWhereOptions.pyi │ │ │ ├── ExecutionModeOptions.pyi │ │ │ └── __init__.pyi │ │ ├── DynamicParameters.pyi │ │ ├── ExpressionModule.pyi │ │ ├── Flavor.pyi │ │ ├── GroupStack.pyi │ │ ├── InteractiveRenderFilters.pyi │ │ ├── LiveGroup.pyi │ │ ├── Manifest.pyi │ │ ├── NodeDelegateManager.pyi │ │ ├── NodeExtensions.pyi │ │ ├── NodeGraphViewExtensions.pyi │ │ ├── NodeNameFromParamManager.pyi │ │ ├── NodeXmlIO.pyi │ │ ├── NodegraphChangedEvents.pyi │ │ ├── NodegraphGlobals.pyi │ │ ├── ParameterValueOption.pyi │ │ ├── PythonRenderScript.pyi │ │ ├── RenderFilter.pyi │ │ ├── RenderScript.pyi │ │ ├── StructuredPorts.pyi │ │ ├── SuperTool.pyi │ │ ├── UserParameters.pyi │ │ ├── Util.pyi │ │ ├── Version/ │ │ │ ├── Manifest.pyi │ │ │ ├── Registry.pyi │ │ │ ├── UpdateNodeTypeVersions.pyi │ │ │ ├── Updater.pyi │ │ │ ├── Utils.pyi │ │ │ └── __init__.pyi │ │ ├── Xio.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── NodegraphAPI_cmodule/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Nodes2DAPI/ │ │ ├── Expression.pyi │ │ ├── FileInNodeUtil.pyi │ │ ├── FileOutNodeUtil.pyi │ │ ├── GradientNodeUtil.pyi │ │ ├── Manifest.pyi │ │ ├── NodeColorDelegate.pyi │ │ ├── ThumbnailManager.pyi │ │ ├── TransformUtil.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Nodes2DAPI_cmodule/ │ │ ├── Views.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Nodes3DAPI/ │ │ ├── AbstractTransform.pyi │ │ ├── Alembic_In.pyi │ │ ├── AttributeCopy.pyi │ │ ├── AttributeEditor.pyi │ │ ├── AttributeFile_In.pyi │ │ ├── AttributeSet.pyi │ │ ├── BlockerCreate.pyi │ │ ├── BoundsAdjust.pyi │ │ ├── CameraClippingPlaneEdit.pyi │ │ ├── CameraCreate.pyi │ │ ├── CameraImagePlaneCreate.pyi │ │ ├── CollectionCreate.pyi │ │ ├── ConstraintCache.pyi │ │ ├── ConstraintListEdit.pyi │ │ ├── Constraints/ │ │ │ ├── AimConstraint.pyi │ │ │ ├── BaseConstraint.pyi │ │ │ ├── BillboardConstraint.pyi │ │ │ ├── CameraScreenWindowConstraint.pyi │ │ │ ├── ClippingConstraint.pyi │ │ │ ├── ConstraintEdit.pyi │ │ │ ├── ConstraintResolve.pyi │ │ │ ├── DollyConstraint.pyi │ │ │ ├── FOVConstraint.pyi │ │ │ ├── OrientConstraint.pyi │ │ │ ├── ParentChildConstraint.pyi │ │ │ ├── PointConstraint.pyi │ │ │ ├── ReflectionConstraint.pyi │ │ │ ├── ScaleConstraint.pyi │ │ │ ├── ScreenCoordinateConstraint.pyi │ │ │ └── __init__.pyi │ │ ├── CoordinateSystemDefine.pyi │ │ ├── CreateUtil.pyi │ │ ├── DynamicParameterUtil.pyi │ │ ├── ErrorNode.pyi │ │ ├── Expressions.pyi │ │ ├── FaceSelect.pyi │ │ ├── FaceSelectionManager.pyi │ │ ├── Fork3D.pyi │ │ ├── GenericAssign.pyi │ │ ├── GenericAssignRegistry.pyi │ │ ├── GenericGeo.pyi │ │ ├── GenericOp.pyi │ │ ├── GroupMerge.pyi │ │ ├── HierarchyCopy.pyi │ │ ├── HierarchyCreate.pyi │ │ ├── IncomingSceneOpDelegates.pyi │ │ ├── IncomingTest.pyi │ │ ├── InfoCreate.pyi │ │ ├── InputGraphBasedCacheManager.pyi │ │ ├── Isolate.pyi │ │ ├── JackGeometry.pyi │ │ ├── LODMerge.pyi │ │ ├── LODRangeAssign.pyi │ │ ├── LODSelect.pyi │ │ ├── LightCreate.pyi │ │ ├── LightLink.pyi │ │ ├── LightLinkConstants.pyi │ │ ├── LightLinkEdit.pyi │ │ ├── LightLinkResolve.pyi │ │ ├── LightLinkSetup.pyi │ │ ├── LightListEdit.pyi │ │ ├── LocationCreate.pyi │ │ ├── LocationGenerate.pyi │ │ ├── LookFileBake.pyi │ │ ├── LookFileBaking.pyi │ │ ├── LookFileGlobalsAssignBaseType.pyi │ │ ├── LookFileMaterialsIn.pyi │ │ ├── LookFileMaterialsOut.pyi │ │ ├── LookFileOverrideEnable.pyi │ │ ├── LookFileResolve.pyi │ │ ├── Manifest.pyi │ │ ├── Material.pyi │ │ ├── MaterialResolve.pyi │ │ ├── MaterialStack.pyi │ │ ├── Merge.pyi │ │ ├── NetworkMaterial.pyi │ │ ├── NetworkMaterialInterfaceControls.pyi │ │ ├── NetworkMaterialParameterEdit.pyi │ │ ├── NetworkMaterialSplice.pyi │ │ ├── Node3D.pyi │ │ ├── Node3DEventTypes.pyi │ │ ├── Node3D_geolib3.pyi │ │ ├── NodeLayoutAttributes.pyi │ │ ├── NodeTypeBuilder.pyi │ │ ├── OpCacheManager.pyi │ │ ├── OpResolve.pyi │ │ ├── OpScript.pyi │ │ ├── OpWrite.pyi │ │ ├── OutputChannelDefine.pyi │ │ ├── PonyCreate.pyi │ │ ├── PortOpClient.pyi │ │ ├── PrimitiveCreate.pyi │ │ ├── ProxyGeoPromote.pyi │ │ ├── Prune.pyi │ │ ├── Rename.pyi │ │ ├── RenderNode.pyi │ │ ├── RenderNodeUtil.pyi │ │ ├── RenderOutputDefine.pyi │ │ ├── RenderSettingsBaseType.pyi │ │ ├── RendererProceduralArgs.pyi │ │ ├── Rendering.pyi │ │ ├── RenderingUtil.pyi │ │ ├── Resolve.pyi │ │ ├── Resources/ │ │ │ ├── Material.pyi │ │ │ └── __init__.pyi │ │ ├── ReverseNormals.pyi │ │ ├── ScenegraphManager.pyi │ │ ├── ScenegraphMask.pyi │ │ ├── ShadingNodeArrayConnector.pyi │ │ ├── ShadingNodeBase.pyi │ │ ├── ShadingNodeSubnet.pyi │ │ ├── ShadingNodeUtil.pyi │ │ ├── TerminalOpDelegates/ │ │ │ ├── ExampleTimeTerminalOpDelegate.pyi │ │ │ ├── TerminalOpDelegate.pyi │ │ │ ├── WorkingSetTerminalOpDelegate.pyi │ │ │ └── __init__.pyi │ │ ├── TimingUtils.pyi │ │ ├── Transform3D.pyi │ │ ├── TransformEdit.pyi │ │ ├── TransformUtil.pyi │ │ ├── Unfork3D.pyi │ │ ├── UpdateModes.pyi │ │ ├── VariableSwitchUtil.pyi │ │ ├── VelocityApply.pyi │ │ ├── WorkingSetDebug.pyi │ │ ├── ZoomToRect.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Nodes3DAPI_cmodule/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PackageSuperToolAPI/ │ │ ├── BaseEditor.pyi │ │ ├── BaseNode.pyi │ │ ├── NodeUtils.pyi │ │ ├── PackageNameItemDelegate.pyi │ │ ├── Packages.pyi │ │ ├── Policies.pyi │ │ ├── UIDelegate.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PluginAPI/ │ │ ├── BaseLiveRenderAction.pyi │ │ ├── BaseProxyLoader.pyi │ │ ├── BaseViewerPluginExtension.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PluginSystemAPI/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyFCurve/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyFnAttribute/ │ │ ├── Util.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyFnGeolib/ │ │ ├── Util.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyFnGeolibProducers/ │ │ ├── RendererOutputUtil.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyFnGeolibServices/ │ │ ├── ArgsFile.pyi │ │ ├── AttributeFunctionUtil.pyi │ │ ├── ExpressionMath.pyi │ │ ├── HintUtils.pyi │ │ ├── LookFile.pyi │ │ ├── MaterialResolveUtil.pyi │ │ ├── OpArgsBuilders.pyi │ │ ├── XFormUtil.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyQt5/ │ │ ├── Qt.pyi │ │ ├── QtCompat.pyi │ │ ├── QtCore.pyi │ │ ├── QtGui.pyi │ │ ├── QtHelp.pyi │ │ ├── QtLocation.pyi │ │ ├── QtMultimedia.pyi │ │ ├── QtMultimediaWidgets.pyi │ │ ├── QtNetwork.pyi │ │ ├── QtOpenGL.pyi │ │ ├── QtPositioning.pyi │ │ ├── QtPrintSupport.pyi │ │ ├── QtQml.pyi │ │ ├── QtQuick.pyi │ │ ├── QtQuickWidgets.pyi │ │ ├── QtSensors.pyi │ │ ├── QtSerialPort.pyi │ │ ├── QtSql.pyi │ │ ├── QtSvg.pyi │ │ ├── QtTest.pyi │ │ ├── QtWebChannel.pyi │ │ ├── QtWebEngineCore.pyi │ │ ├── QtWebEngineWidgets.pyi │ │ ├── QtWebSockets.pyi │ │ ├── QtWidgets.pyi │ │ ├── QtXml.pyi │ │ ├── QtXmlPatterns.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyResolutionTableFn/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyUtilModule/ │ │ ├── AttrDump.pyi │ │ ├── ChildProcess.pyi │ │ ├── ColorPaletteManager.pyi │ │ ├── Decorators.pyi │ │ ├── Documentation.pyi │ │ ├── EnvUtils.pyi │ │ ├── ExternalTextEditor.pyi │ │ ├── FarmAPI/ │ │ │ ├── BaseFarmPlugin.pyi │ │ │ ├── FarmManager.pyi │ │ │ ├── FarmPluginManager.pyi │ │ │ └── __init__.pyi │ │ ├── FileUtils.pyi │ │ ├── Hints.pyi │ │ ├── IRFs.pyi │ │ ├── KatanaFile.pyi │ │ ├── LiveRenderAPI/ │ │ │ ├── PluginActionRegistry.pyi │ │ │ └── __init__.pyi │ │ ├── NodeDebugOutput.pyi │ │ ├── NonUIPluginManager.pyi │ │ ├── OpDocumentationGenerator.pyi │ │ ├── ProjectSnapshot.pyi │ │ ├── RegisterToCamera.pyi │ │ ├── RenderManager/ │ │ │ ├── Constants.pyi │ │ │ ├── Exceptions.pyi │ │ │ ├── InteractiveRenderDelegateManager.pyi │ │ │ ├── NodegraphUtils.pyi │ │ │ ├── RenderCore.pyi │ │ │ ├── RenderGlobals.pyi │ │ │ ├── RenderSettings.pyi │ │ │ ├── RenderTriggers.pyi │ │ │ ├── ResolutionTableUtils.pyi │ │ │ ├── ScenegraphUtils.pyi │ │ │ └── __init__.pyi │ │ ├── RenderingCommon.pyi │ │ ├── ScenegraphBookmarkManager.pyi │ │ ├── ScenegraphUtils.pyi │ │ ├── Shelves.pyi │ │ ├── StartupScripts.pyi │ │ ├── SuperToolPlugins.pyi │ │ ├── UndoEntries.pyi │ │ ├── UserNodes.pyi │ │ ├── VirtualKatana.pyi │ │ ├── WorkingSet.pyi │ │ ├── WorkingSetClient.pyi │ │ ├── WorkingSetManager.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── PyXmlIO/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── QT4Browser/ │ │ ├── BrowserFiltering.pyi │ │ ├── BrowserSettings.pyi │ │ ├── FileBrowser.pyi │ │ ├── FileInfo.pyi │ │ ├── FileSelect.pyi │ │ ├── Manifest.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── QT4Color/ │ │ ├── ASCColorCorrector.pyi │ │ ├── ColorComponentFormWidget.pyi │ │ ├── ColorDropWidget.pyi │ │ ├── ColorFormWidget.pyi │ │ ├── ColorPicker.pyi │ │ ├── ColorPolicy.pyi │ │ ├── ColorTextWidget.pyi │ │ ├── ColorTransforms.pyi │ │ ├── Degenerate.pyi │ │ ├── DropType.pyi │ │ ├── GammaWidget.pyi │ │ ├── Globals.pyi │ │ ├── Gradient1D.pyi │ │ ├── Gradient2D.pyi │ │ ├── Histogram.pyi │ │ ├── HueColorWidget.pyi │ │ ├── LumaSliderWidget.pyi │ │ ├── Manifest.pyi │ │ ├── ScreenScraper.pyi │ │ ├── Swatches.pyi │ │ ├── TempColorWidget.pyi │ │ ├── WidgetUtils.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── QT4FormWidgets/ │ │ ├── ArrayFormWidget.pyi │ │ ├── ArrayItemEntry.pyi │ │ ├── BaseValueFormWidget.pyi │ │ ├── CapsuleFormWidget.pyi │ │ ├── CheckBoxFormWidget.pyi │ │ ├── Conditional.pyi │ │ ├── EditWrench.pyi │ │ ├── ExpressionEditDialog.pyi │ │ ├── ExternalEditorDialog.pyi │ │ ├── FWidget.pyi │ │ ├── FilterablePopupFormWidget.pyi │ │ ├── FixableBoxLayout.pyi │ │ ├── FormClose.pyi │ │ ├── FormDialog.pyi │ │ ├── FormWidget.pyi │ │ ├── FormWidgetLabel.pyi │ │ ├── FormWidgetTools.pyi │ │ ├── GroupFormWidget.pyi │ │ ├── HintUtils.pyi │ │ ├── InputWidgets.pyi │ │ ├── Manifest.pyi │ │ ├── MenuGroupFormWidget.pyi │ │ ├── MenuUtils.pyi │ │ ├── MultiFormWidget.pyi │ │ ├── MultiStateBadge.pyi │ │ ├── NullFormWidget.pyi │ │ ├── NumberFormWidget.pyi │ │ ├── OpenState.pyi │ │ ├── PaintingUtils.pyi │ │ ├── PolicyMimeData.pyi │ │ ├── PopupFormWidget.pyi │ │ ├── PythonValuePolicy.pyi │ │ ├── StateChangeAction.pyi │ │ ├── StringFormWidget.pyi │ │ ├── TabGroupFormWidget.pyi │ │ ├── TextFormWidget.pyi │ │ ├── ValueAdjustment.pyi │ │ ├── ValuePolicy.pyi │ │ ├── ValuePolicyAdapter.pyi │ │ ├── WideEditDialog.pyi │ │ ├── WidgetFactory.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── QT4GLLayerStack/ │ │ ├── CheckerboardLayer.pyi │ │ ├── ClearLayer.pyi │ │ ├── EdgeScrollingLayer.pyi │ │ ├── EventEaterLayer.pyi │ │ ├── FrameAllLayer.pyi │ │ ├── LayerStack.pyi │ │ ├── Manifest.pyi │ │ ├── PanInteractionLayer.pyi │ │ ├── RectangleLayer.pyi │ │ ├── Util.pyi │ │ ├── ZoomAnimationLayer.pyi │ │ ├── ZoomInteractionLayer.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── QT4Panels/ │ │ ├── DragOverlay.pyi │ │ ├── DragTabs.pyi │ │ ├── Edge.pyi │ │ ├── Layouts.pyi │ │ ├── Manifest.pyi │ │ ├── PanelFrame.pyi │ │ ├── PanelLayout.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── QT4Widgets/ │ │ ├── CapsuleCombo.pyi │ │ ├── CustomMenu.pyi │ │ ├── CustomQLineEdit.pyi │ │ ├── DarkMojo.pyi │ │ ├── ExpandingLabel.pyi │ │ ├── FilterFieldWidget.pyi │ │ ├── FilterablePopupButton.pyi │ │ ├── InteractiveIconTabBar.pyi │ │ ├── LogView.pyi │ │ ├── Manifest.pyi │ │ ├── MenuButton.pyi │ │ ├── NavigationToolbar.pyi │ │ ├── PopdownLabel.pyi │ │ ├── PopupMenuOption.pyi │ │ ├── Profile.pyi │ │ ├── PythonConsole.pyi │ │ ├── QtAttributes.pyi │ │ ├── Settings.pyi │ │ ├── SliderWidget.pyi │ │ ├── SortableTreeWidget.pyi │ │ ├── StretchBox.pyi │ │ ├── TextEditorUtils.pyi │ │ ├── Threads.pyi │ │ ├── Timebar.pyi │ │ ├── Timeline.pyi │ │ ├── ToolbarButton.pyi │ │ ├── TopWindows.pyi │ │ ├── TreeWidgetUtil.pyi │ │ ├── VerticalDivider.pyi │ │ ├── WidgetUtils.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── QTFCurve/ │ │ ├── FCurveGraphValueListWidget.pyi │ │ ├── FCurveListView.pyi │ │ ├── FCurveSnapSettingsMenu.pyi │ │ ├── FCurveValueEdit.pyi │ │ ├── Manifest.pyi │ │ ├── MixedGroupState.pyi │ │ ├── UniqueListDict.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── RenderingAPI/ │ │ ├── Manifest.pyi │ │ ├── RenderOutputs.pyi │ │ ├── RenderPlugins.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── RenderingAPI_cmodule/ │ │ ├── RenderOutputLocation.pyi │ │ ├── Renderer.pyi │ │ ├── RendererInfo.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── RerenderEventMapper/ │ │ ├── LiveRenderOpChain.pyi │ │ ├── LiveRenderPortOpObserver.pyi │ │ ├── NukeBridgeAPI.pyi │ │ ├── NukeSessionMonitor.pyi │ │ ├── RerenderEvents.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── ResourceFiles/ │ │ ├── IconManager.pyi │ │ ├── Manifest.pyi │ │ ├── ResourceManager.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── UI4/ │ │ ├── App/ │ │ │ ├── AboutKatana.pyi │ │ │ ├── AutoSave.pyi │ │ │ ├── Hotkeys.pyi │ │ │ ├── Icon.pyi │ │ │ ├── KeyboardShortcutManager/ │ │ │ │ ├── KeyboardShortcutItem.pyi │ │ │ │ ├── KeyboardShortcutManager.pyi │ │ │ │ ├── KeyboardShortcutManagerMixin.pyi │ │ │ │ ├── KeyboardShortcutModel.pyi │ │ │ │ ├── ManagedAction.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── Layouts.pyi │ │ │ ├── MainMenu.pyi │ │ │ ├── MainWindow.pyi │ │ │ ├── OGL.pyi │ │ │ ├── Preferences.pyi │ │ │ ├── RecentFiles.pyi │ │ │ ├── Splash.pyi │ │ │ ├── Tabs.pyi │ │ │ ├── TimelineWidget.pyi │ │ │ └── __init__.pyi │ │ ├── FormMaster/ │ │ │ ├── ArgsExportDialog.pyi │ │ │ ├── ArrayParameterPolicy.pyi │ │ │ ├── AttributeHints.pyi │ │ │ ├── AttributePolicy.pyi │ │ │ ├── BaseParameterPolicy.pyi │ │ │ ├── CurveParameterPolicy.pyi │ │ │ ├── DocDump.pyi │ │ │ ├── EditorCache.pyi │ │ │ ├── Editors/ │ │ │ │ ├── AdjustMaxToDisplayWindowNumberFormWidget.pyi │ │ │ │ ├── AssetApiPluginPopup.pyi │ │ │ │ ├── AssetId.pyi │ │ │ │ ├── AttributeEditor.pyi │ │ │ │ ├── AttributeName.pyi │ │ │ │ ├── AttributeSetEditor.pyi │ │ │ │ ├── AttributeType.pyi │ │ │ │ ├── BaseRamp.pyi │ │ │ │ ├── CallbackButtonFormWidget.pyi │ │ │ │ ├── CameraPickerFormWidget.pyi │ │ │ │ ├── CelEditor.pyi │ │ │ │ ├── ChannelEditors.pyi │ │ │ │ ├── ColorArrayFormWidget.pyi │ │ │ │ ├── ColorEditors.pyi │ │ │ │ ├── ColorRamp.pyi │ │ │ │ ├── ConditionalHints.pyi │ │ │ │ ├── ConditionalStateSortableGroup.pyi │ │ │ │ ├── CropWindow.pyi │ │ │ │ ├── Curves.pyi │ │ │ │ ├── DeferredGroupTree.pyi │ │ │ │ ├── DotNode.pyi │ │ │ │ ├── DynamicArrayFormWidget.pyi │ │ │ │ ├── DynamicTemplateGroup.pyi │ │ │ │ ├── EmbeddedFCurve.pyi │ │ │ │ ├── FaceSelect.pyi │ │ │ │ ├── FileFormatPopupEditor.pyi │ │ │ │ ├── FileInEditors.pyi │ │ │ │ ├── FileOutEditors.pyi │ │ │ │ ├── FilterablePopupFWidget.pyi │ │ │ │ ├── FindingGroup.pyi │ │ │ │ ├── FloatRamp.pyi │ │ │ │ ├── Fork.pyi │ │ │ │ ├── GradientEditors.pyi │ │ │ │ ├── GraphStateVariablesFormWidget.pyi │ │ │ │ ├── GroupStack.pyi │ │ │ │ ├── HideTitleGroup.pyi │ │ │ │ ├── HierarchyCreate.pyi │ │ │ │ ├── HintedFilterablePopupFormWidget.pyi │ │ │ │ ├── HomogeneousTransform.pyi │ │ │ │ ├── HtmlEditorWidget.pyi │ │ │ │ ├── InterwovenArrayGroup.pyi │ │ │ │ ├── Isolate.pyi │ │ │ │ ├── KatanaColor.pyi │ │ │ │ ├── KeyboardShortcutFormWidget.pyi │ │ │ │ ├── LODInput.pyi │ │ │ │ ├── Layers/ │ │ │ │ │ ├── LayerWithTransform.pyi │ │ │ │ │ ├── PolicyHelpers.pyi │ │ │ │ │ ├── Reposition.pyi │ │ │ │ │ ├── Transform2D.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── LocationEditor.pyi │ │ │ │ ├── LookFileBake.pyi │ │ │ │ ├── LookFileMaterialPopup.pyi │ │ │ │ ├── LookFilePassname.pyi │ │ │ │ ├── ManipulatorGroup.pyi │ │ │ │ ├── MaterialStack.pyi │ │ │ │ ├── MultiInputPortNodeEditor.pyi │ │ │ │ ├── NetworkMaterialParameterEdit.pyi │ │ │ │ ├── Node2DGroup.pyi │ │ │ │ ├── NodeDropWidget.pyi │ │ │ │ ├── NodeGroup.pyi │ │ │ │ ├── NodeName.pyi │ │ │ │ ├── NodeProxyPlaceholder.pyi │ │ │ │ ├── NonexclusiveCheckboxPopupFormWidget.pyi │ │ │ │ ├── Number.pyi │ │ │ │ ├── OpScriptNode.pyi │ │ │ │ ├── OpWriteNode.pyi │ │ │ │ ├── PageGroupWidget.pyi │ │ │ │ ├── PeerHeaderGroup.pyi │ │ │ │ ├── PluginPopup.pyi │ │ │ │ ├── Point.pyi │ │ │ │ ├── PolicyFindPopup.pyi │ │ │ │ ├── PortNameAndOrderWidget.pyi │ │ │ │ ├── PortNamePopup.pyi │ │ │ │ ├── PresetsGroup.pyi │ │ │ │ ├── Rectangle.pyi │ │ │ │ ├── Render.pyi │ │ │ │ ├── Resolution.pyi │ │ │ │ ├── ScenegraphColumnDescription.pyi │ │ │ │ ├── ScenegraphLocation.pyi │ │ │ │ ├── ScenegraphLocationArray.pyi │ │ │ │ ├── ScriptButton.pyi │ │ │ │ ├── ScriptEditor.pyi │ │ │ │ ├── SeparatorFormWidget.pyi │ │ │ │ ├── ShaderPopup.pyi │ │ │ │ ├── ShadingNetworkMaterialAppendNodeName.pyi │ │ │ │ ├── ShadingNetworkMaterialInterfaceOrder.pyi │ │ │ │ ├── ShadingNetworkPopupButton.pyi │ │ │ │ ├── ShadingNodeConnectedParameter.pyi │ │ │ │ ├── ShadingNodeSubnet.pyi │ │ │ │ ├── SortableArray.pyi │ │ │ │ ├── SortableAttributeDropEditor.pyi │ │ │ │ ├── SortableDelimitedString.pyi │ │ │ │ ├── SortableGroups.pyi │ │ │ │ ├── SortableParams.pyi │ │ │ │ ├── Teleparam.pyi │ │ │ │ ├── TeleportNode.pyi │ │ │ │ ├── TexturesGroup.pyi │ │ │ │ ├── Transform3DNodeEditor.pyi │ │ │ │ ├── UserParameters.pyi │ │ │ │ ├── UserParametersDialogs.pyi │ │ │ │ ├── ViewSelectCapsule.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── EnableableParameterPolicy.pyi │ │ │ ├── FnAttributePolicy.pyi │ │ │ ├── GenericAssignParameterPolicy.pyi │ │ │ ├── GenericAssignParameterPolicy_geolib3.pyi │ │ │ ├── GraphStateVariablePolicy.pyi │ │ │ ├── GroupParameterPolicy.pyi │ │ │ ├── HintsDelegate.pyi │ │ │ ├── KatanaFactory.pyi │ │ │ ├── KatanaVisibilityOps.pyi │ │ │ ├── LiveAttributePolicy.pyi │ │ │ ├── MaterialNodePolicy.pyi │ │ │ ├── NodeActionDelegate/ │ │ │ │ ├── BaseNodeActionDelegate.pyi │ │ │ │ ├── DisplayOutputsActionDelegate.pyi │ │ │ │ ├── GroupActionDelegate.pyi │ │ │ │ ├── LiveGroupActionDelegate.pyi │ │ │ │ ├── NodeActionDelegate.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── NodeBypassPolicy.pyi │ │ │ ├── NodeHints/ │ │ │ │ ├── Common2D.pyi │ │ │ │ ├── General.pyi │ │ │ │ ├── ImageAddMix.pyi │ │ │ │ ├── ImageBackgroundColor.pyi │ │ │ │ ├── ImageBlur.pyi │ │ │ │ ├── ImageBlur_Original.pyi │ │ │ │ ├── ImageBrightness.pyi │ │ │ │ ├── ImageChannels.pyi │ │ │ │ ├── ImageCheckerboard.pyi │ │ │ │ ├── ImageClamp.pyi │ │ │ │ ├── ImageColor.pyi │ │ │ │ ├── ImageContrast.pyi │ │ │ │ ├── ImageConvolve.pyi │ │ │ │ ├── ImageCrop.pyi │ │ │ │ ├── ImageDefocus.pyi │ │ │ │ ├── ImageDistort.pyi │ │ │ │ ├── ImageExposure.pyi │ │ │ │ ├── ImageFade.pyi │ │ │ │ ├── ImageGamma.pyi │ │ │ │ ├── ImageInvert.pyi │ │ │ │ ├── ImageLevels.pyi │ │ │ │ ├── ImageMatteMix.pyi │ │ │ │ ├── ImageMerge.pyi │ │ │ │ ├── ImageMix.pyi │ │ │ │ ├── ImageOrient.pyi │ │ │ │ ├── ImagePlane.pyi │ │ │ │ ├── ImagePosition.pyi │ │ │ │ ├── ImagePremultiply.pyi │ │ │ │ ├── ImageRamp.pyi │ │ │ │ ├── ImageRead.pyi │ │ │ │ ├── ImageReformat.pyi │ │ │ │ ├── ImageSaturation.pyi │ │ │ │ ├── ImageText.pyi │ │ │ │ ├── ImageThreshold.pyi │ │ │ │ ├── ImageUnpremultiply.pyi │ │ │ │ ├── ImageWrite.pyi │ │ │ │ ├── ImageZMerge.pyi │ │ │ │ ├── Nodes3D.pyi │ │ │ │ ├── OCIOCDLTransform.pyi │ │ │ │ ├── OCIOColorSpace.pyi │ │ │ │ ├── OCIODisplay.pyi │ │ │ │ ├── OCIOFileTransform.pyi │ │ │ │ ├── OCIOLogConvert.pyi │ │ │ │ ├── OCIOLookTransform.pyi │ │ │ │ ├── Render.pyi │ │ │ │ ├── Transform2D.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── NodeMimeData.pyi │ │ │ ├── OpaqueParameterPolicy.pyi │ │ │ ├── Pages.pyi │ │ │ ├── ParameterCurveEditSet.pyi │ │ │ ├── ParameterKeyMimeData.pyi │ │ │ ├── ParameterPolicy.pyi │ │ │ ├── PythonValuePolicy.pyi │ │ │ ├── RenderNodeReferencePolicy.pyi │ │ │ ├── ScalarParameterPolicy.pyi │ │ │ ├── Scripts/ │ │ │ │ ├── ConstraintCache.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── ShadingNodePolicy.pyi │ │ │ ├── States.pyi │ │ │ ├── WrenchDelegate.pyi │ │ │ └── __init__.pyi │ │ ├── KatanaPrefs/ │ │ │ ├── KatanaPrefsObject.pyi │ │ │ ├── PrefNames.pyi │ │ │ └── __init__.pyi │ │ ├── MainUI.pyi │ │ ├── Manifest.pyi │ │ ├── ManifestUtil.pyi │ │ ├── NodeMaster/ │ │ │ ├── NodeInteractionDelegateManager.pyi │ │ │ ├── NodeInteractionDelegates/ │ │ │ │ ├── AttributeEditorDelegate.pyi │ │ │ │ ├── FaceSetCreateDelegate.pyi │ │ │ │ ├── FileIn.pyi │ │ │ │ ├── GroupStackDelegate.pyi │ │ │ │ ├── IsolateDelegate.pyi │ │ │ │ ├── MaterialAssignDelegate.pyi │ │ │ │ ├── MaterialDelegate.pyi │ │ │ │ ├── MaterialStackDelegate.pyi │ │ │ │ ├── PruneDelegate.pyi │ │ │ │ ├── RendererProceduralAssignDelegate.pyi │ │ │ │ ├── Transform3D.pyi │ │ │ │ └── __init__.pyi │ │ │ └── __init__.pyi │ │ ├── Tabs/ │ │ │ ├── AttributesTab/ │ │ │ │ ├── AttributesTab.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── BaseTab.pyi │ │ │ ├── BaseViewerTab.pyi │ │ │ ├── CELScratchPad/ │ │ │ │ ├── CELScratchPad.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── Catalog/ │ │ │ │ ├── CatalogPanel.pyi │ │ │ │ ├── CatalogSaveDialog.pyi │ │ │ │ ├── CatalogWidget.pyi │ │ │ │ ├── CatalogWidgetItem.pyi │ │ │ │ ├── ImageImportDialog.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── ColorPaletteTab.pyi │ │ │ ├── CurveEditorTab.pyi │ │ │ ├── DopeSheet/ │ │ │ │ ├── DopeSheet.pyi │ │ │ │ ├── DopeSheetTree.pyi │ │ │ │ ├── KeyDrawingLayer.pyi │ │ │ │ ├── KeyInteractionLayer.pyi │ │ │ │ ├── KeyLayerStack.pyi │ │ │ │ ├── PanAndScrollLayer.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── EnhancedTerminalTab/ │ │ │ │ ├── TerminalTab.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── ExampleProjectsTab/ │ │ │ │ ├── ExampleProjectsTab.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── FileInTab.pyi │ │ │ ├── Help.pyi │ │ │ ├── Histogram.pyi │ │ │ ├── History.pyi │ │ │ ├── KeyboardShortcutsTab.pyi │ │ │ ├── LayeredMenuAPI.pyi │ │ │ ├── Messages.pyi │ │ │ ├── Monitor/ │ │ │ │ ├── CatalogGLHelpers.pyi │ │ │ │ ├── CommentWidgets.pyi │ │ │ │ ├── DisplayDetailsWidgets.pyi │ │ │ │ ├── Layers/ │ │ │ │ │ ├── CropWindowLayer.pyi │ │ │ │ │ ├── HotkeyLayer.pyi │ │ │ │ │ ├── ImageLayer.pyi │ │ │ │ │ ├── ImageLayer3D.pyi │ │ │ │ │ ├── ImageLayerBase.pyi │ │ │ │ │ ├── LinearSwipeLayer.pyi │ │ │ │ │ ├── MaskLayer.pyi │ │ │ │ │ ├── PixelProbeLayer.pyi │ │ │ │ │ ├── RectangleSwipeLayer.pyi │ │ │ │ │ ├── RenderFocusLayer.pyi │ │ │ │ │ ├── RoiLayer.pyi │ │ │ │ │ ├── SolidBoundsLayer.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── Manipulators.pyi │ │ │ │ ├── MenuUtils.pyi │ │ │ │ ├── MonitorPanel.pyi │ │ │ │ ├── MonitorWidget.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── NodeGraphTab/ │ │ │ │ ├── Flipbook.pyi │ │ │ │ ├── Layers/ │ │ │ │ │ ├── BandSelectionLayer.pyi │ │ │ │ │ ├── BookmarkJumpMenuLayer.pyi │ │ │ │ │ ├── CustomMenuLayer.pyi │ │ │ │ │ ├── DragAndDropLayer.pyi │ │ │ │ │ ├── FloatingNodeLayer.pyi │ │ │ │ │ ├── GroupInteractionLayer.pyi │ │ │ │ │ ├── LinkConnectionLayer.pyi │ │ │ │ │ ├── LinkInteractionLayer.pyi │ │ │ │ │ ├── MenuLayer.pyi │ │ │ │ │ ├── MergeNodeInteractionLayer.pyi │ │ │ │ │ ├── NetworkMaterialNodeInteractionLayer.pyi │ │ │ │ │ ├── NodeCreationMenuLayer.pyi │ │ │ │ │ ├── NodeDrawingLayer.pyi │ │ │ │ │ ├── NodeGraphViewDrawingLayer.pyi │ │ │ │ │ ├── NodeGraphViewInteractionLayer.pyi │ │ │ │ │ ├── NodeGraphViewStateLayer.pyi │ │ │ │ │ ├── NodeInteractionLayer.pyi │ │ │ │ │ ├── NodeOverlayLayer.pyi │ │ │ │ │ ├── OffscreenFlagDisplayLayer.pyi │ │ │ │ │ ├── PortInteractionLayer.pyi │ │ │ │ │ ├── StickyNoteInteractionLayer.pyi │ │ │ │ │ ├── StructuredPortsNodeInteractionLayer.pyi │ │ │ │ │ ├── StructuredPortsNodeLinkConnectionLayer.pyi │ │ │ │ │ ├── TransientLayer.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── NodeBreadcrumbsFrame.pyi │ │ │ │ ├── NodeFindPopupButton.pyi │ │ │ │ ├── NodeGoRootButton.pyi │ │ │ │ ├── NodeGoUpButton.pyi │ │ │ │ ├── NodeStateFilterFrame.pyi │ │ │ │ ├── NodegraphPanel.pyi │ │ │ │ ├── NodegraphWidget.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── NodeTypes.pyi │ │ │ ├── ParameterFindAndReplace.pyi │ │ │ ├── ParametersTab/ │ │ │ │ ├── ParameterPanel.pyi │ │ │ │ ├── ProjectSettings.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── RenderLog.pyi │ │ │ ├── SceneGraphTab/ │ │ │ │ ├── LightListPopup.pyi │ │ │ │ ├── SceneGraphBookmarkButton.pyi │ │ │ │ ├── SceneGraphTab.pyi │ │ │ │ ├── SceneGraphTabColumn.pyi │ │ │ │ ├── SceneGraphTabItems.pyi │ │ │ │ ├── SceneGraphTabNameItemDelegate.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── UVPanel/ │ │ │ │ ├── ExtendedInfoLabel.pyi │ │ │ │ ├── FaceSelectionHelper.pyi │ │ │ │ ├── Layers/ │ │ │ │ │ ├── HotkeyLayer.pyi │ │ │ │ │ ├── SelectionLayer.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── UVPanel.pyi │ │ │ │ ├── UVWidget.pyi │ │ │ │ └── __init__.pyi │ │ │ └── __init__.pyi │ │ ├── Util/ │ │ │ ├── AbstractSyntaxHighlighter.pyi │ │ │ ├── AnamorphDisplayOptions.pyi │ │ │ ├── AssetId.pyi │ │ │ ├── AssetWidgetDelegatePlugins.pyi │ │ │ ├── AttributeHistory.pyi │ │ │ ├── BuiltinNotifications.pyi │ │ │ ├── CMakeSyntaxHighlighter.pyi │ │ │ ├── Caches.pyi │ │ │ ├── CatalogEventHandlers.pyi │ │ │ ├── CatalogEventReceiver.pyi │ │ │ ├── ClientManager.pyi │ │ │ ├── Color.pyi │ │ │ ├── CppSyntaxHighlighter.pyi │ │ │ ├── CropWindow.pyi │ │ │ ├── Cursors.pyi │ │ │ ├── DrawState.pyi │ │ │ ├── Events.pyi │ │ │ ├── ExternalTools.pyi │ │ │ ├── FCurveUtil.pyi │ │ │ ├── FaceSelect.pyi │ │ │ ├── FileHelpers.pyi │ │ │ ├── GLContextManager.pyi │ │ │ ├── GLDrawingRoutines.pyi │ │ │ ├── HotRender.pyi │ │ │ ├── IconManager.pyi │ │ │ ├── KatanaMediaCache.pyi │ │ │ ├── LayeredMenuUtils.pyi │ │ │ ├── LogRecord.pyi │ │ │ ├── LogRecordHandler.pyi │ │ │ ├── LogRecordItemModel.pyi │ │ │ ├── LuaSyntaxHighlighter.pyi │ │ │ ├── ManipulatorManager.pyi │ │ │ ├── NodeDialogs.pyi │ │ │ ├── NodeErrors.pyi │ │ │ ├── NodeGraphTab.pyi │ │ │ ├── NotificationManager.pyi │ │ │ ├── Number.pyi │ │ │ ├── PluginManager.pyi │ │ │ ├── PythonSyntaxHighlighter.pyi │ │ │ ├── PythonWidgetIntrospector.pyi │ │ │ ├── Record.pyi │ │ │ ├── RecordItemModel.pyi │ │ │ ├── RenderMenu.pyi │ │ │ ├── ScenegraphIconManager.pyi │ │ │ ├── ScenegraphLocation.pyi │ │ │ ├── ScriptButton.pyi │ │ │ ├── Shader.pyi │ │ │ ├── TextureManager.pyi │ │ │ ├── TransformManipulatorLayer.pyi │ │ │ ├── UndoGrouping.pyi │ │ │ ├── Views.pyi │ │ │ ├── WorkingSets.pyi │ │ │ ├── WorldCursorCircleLayer.pyi │ │ │ └── __init__.pyi │ │ ├── Widgets/ │ │ │ ├── AssetIDLabel.pyi │ │ │ ├── AttributeDropLabel.pyi │ │ │ ├── AttributeEditorIndicatorLabel.pyi │ │ │ ├── AttributeHistoryWidgets.pyi │ │ │ ├── AutoKeyToggle.pyi │ │ │ ├── BaseLayoutResizer.pyi │ │ │ ├── BaseNodeGraphLayerStack.pyi │ │ │ ├── BaseWidgets.pyi │ │ │ ├── CameraPickerButton.pyi │ │ │ ├── CatalogChannelsWidget.pyi │ │ │ ├── CatalogFrameRangeWidget.pyi │ │ │ ├── CatalogHistogramWidget.pyi │ │ │ ├── CatalogItemWidget.pyi │ │ │ ├── CatalogLockWidget.pyi │ │ │ ├── CatalogNameWidget.pyi │ │ │ ├── CatalogProgressWidget.pyi │ │ │ ├── CatalogRenderLogWidget.pyi │ │ │ ├── CatalogRenderStatsWidget.pyi │ │ │ ├── CatalogResolutionWidget.pyi │ │ │ ├── CatalogStopWidget.pyi │ │ │ ├── CatalogThumbnailWidget.pyi │ │ │ ├── CelResultsWidget.pyi │ │ │ ├── CheckableTreeDialog.pyi │ │ │ ├── Checkbox.pyi │ │ │ ├── CollectAndSelect.pyi │ │ │ ├── ColorProbeButton.pyi │ │ │ ├── ComboBoxNoWheel.pyi │ │ │ ├── CrashFileSelectorDialog.pyi │ │ │ ├── CustomMenu.pyi │ │ │ ├── DoubleClickSizeGrip.pyi │ │ │ ├── DoubleSpinBox.pyi │ │ │ ├── DropdownArrowButton.pyi │ │ │ ├── EditWrenchButton.pyi │ │ │ ├── FarmDefaultDialog.pyi │ │ │ ├── FastLabel.pyi │ │ │ ├── FilterPopups.pyi │ │ │ ├── FlipbookDialog.pyi │ │ │ ├── GeolibProcessingStateWidget.pyi │ │ │ ├── GetSetMenu.pyi │ │ │ ├── GradientLayer.pyi │ │ │ ├── GraphStateVariablesPopupButton.pyi │ │ │ ├── HBoxLayoutResizer.pyi │ │ │ ├── HighlightWidget.pyi │ │ │ ├── HistogramLayer.pyi │ │ │ ├── HorizontalDivider.pyi │ │ │ ├── HtmlEditorWidget.pyi │ │ │ ├── IconLabelFrame.pyi │ │ │ ├── ImageOptionsWidgets.pyi │ │ │ ├── ImplicitFilterToggle.pyi │ │ │ ├── IndicatorLabelFrame.pyi │ │ │ ├── KeyboardShortcutLineEdit.pyi │ │ │ ├── LightingToolsLayer/ │ │ │ │ ├── LightingToolsGafferComboBox.pyi │ │ │ │ ├── LightingToolsToolBar.pyi │ │ │ │ ├── LightingToolsUI.pyi │ │ │ │ ├── LightingToolsUtils.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── LineNumberAreaWidget.pyi │ │ │ ├── LiveRenderViewerCameraButton.pyi │ │ │ ├── LogRecordTreeView.pyi │ │ │ ├── LookFileMaterialComboBox.pyi │ │ │ ├── MessageBox.pyi │ │ │ ├── MessagesToolbarButton.pyi │ │ │ ├── MetaCheckBox.pyi │ │ │ ├── ModalProcessInterruptWidget.pyi │ │ │ ├── MonitorLayer/ │ │ │ │ ├── MonitorLayer.pyi │ │ │ │ ├── Utils.pyi │ │ │ │ ├── Widgets.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── MonitorManipulatorButton.pyi │ │ │ ├── NavigationToolbar.pyi │ │ │ ├── NodeButton.pyi │ │ │ ├── NodeChooserButton.pyi │ │ │ ├── NodeColorsMenu.pyi │ │ │ ├── NodeMenu.pyi │ │ │ ├── NodePopupMenu.pyi │ │ │ ├── NodeTypePopup.pyi │ │ │ ├── NonexclusiveCheckboxPopup.pyi │ │ │ ├── NotificationToolbarButton.pyi │ │ │ ├── PaneButtons.pyi │ │ │ ├── PanelScrollArea.pyi │ │ │ ├── PanelWidget.pyi │ │ │ ├── PolicyHelpButton.pyi │ │ │ ├── PopdownLabel.pyi │ │ │ ├── PopupButton.pyi │ │ │ ├── PortNameLineEdit.pyi │ │ │ ├── ProductSaveWidgets.pyi │ │ │ ├── ProgressDialog.pyi │ │ │ ├── ProxyResCombo.pyi │ │ │ ├── PublicInterfaceParameters.pyi │ │ │ ├── RenderModePopup.pyi │ │ │ ├── RenderSelectedToggle.pyi │ │ │ ├── RenderViewWidgets.pyi │ │ │ ├── ResizeToggleArrow.pyi │ │ │ ├── ResolutionComboBox.pyi │ │ │ ├── RoiCombo.pyi │ │ │ ├── RolloverPixmap.pyi │ │ │ ├── SceneGraphView/ │ │ │ │ ├── AttributeValuePopupWidgetManager.pyi │ │ │ │ ├── Bridge.pyi │ │ │ │ ├── BridgeImpl.pyi │ │ │ │ ├── ColumnDataType.pyi │ │ │ │ ├── ColumnManager.pyi │ │ │ │ ├── ColumnPresetManager.pyi │ │ │ │ ├── ContextMenuEvent.pyi │ │ │ │ ├── DataRoles.pyi │ │ │ │ ├── DebugViewLink.pyi │ │ │ │ ├── Filtering/ │ │ │ │ │ ├── Criteria.pyi │ │ │ │ │ ├── Evaluator.pyi │ │ │ │ │ ├── Rule.pyi │ │ │ │ │ ├── RuleConfigDialog.pyi │ │ │ │ │ ├── RuleManager.pyi │ │ │ │ │ ├── Target.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── HorizontalHeaderView.pyi │ │ │ │ ├── ItemDelegates/ │ │ │ │ │ ├── BaseItemDelegate.pyi │ │ │ │ │ ├── ColorItemDelegate.pyi │ │ │ │ │ ├── LightLinkItemDelegate.pyi │ │ │ │ │ ├── MuteAndSoloItemDelegates.pyi │ │ │ │ │ ├── NameItemDelegate.pyi │ │ │ │ │ ├── NumberItemDelegate.pyi │ │ │ │ │ ├── ParameterItemDelegate.pyi │ │ │ │ │ ├── ShaderItemDelegate.pyi │ │ │ │ │ ├── StateItemDelegate.pyi │ │ │ │ │ ├── WorkingSetItemDelegate.pyi │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── SceneGraphFindButton.pyi │ │ │ │ ├── SceneGraphHandle.pyi │ │ │ │ ├── SceneGraphLocationTranslation.pyi │ │ │ │ ├── SceneGraphTree.pyi │ │ │ │ ├── SceneGraphView.pyi │ │ │ │ ├── SceneGraphViewClientManager.pyi │ │ │ │ ├── SceneGraphViewColumn.pyi │ │ │ │ ├── SceneGraphViewIconManager.pyi │ │ │ │ ├── TreeWidgetItems.pyi │ │ │ │ ├── TreeWidgetViewLink.pyi │ │ │ │ ├── ViewLink.pyi │ │ │ │ └── __init__.pyi │ │ │ ├── ScrollAreaMemory.pyi │ │ │ ├── ServiceProviderListWidget.pyi │ │ │ ├── SetVersionFilterablePopup.pyi │ │ │ ├── ShaderComboBox.pyi │ │ │ ├── ShelfButton.pyi │ │ │ ├── SortableGroups.pyi │ │ │ ├── SortableListWidget.pyi │ │ │ ├── SortablePanel.pyi │ │ │ ├── SortableParams.pyi │ │ │ ├── StatefulMenu.pyi │ │ │ ├── StopButton.pyi │ │ │ ├── SwitchingBoxLayout.pyi │ │ │ ├── TabDockWidget.pyi │ │ │ ├── ToolbarButton.pyi │ │ │ ├── ToolbarWidget.pyi │ │ │ ├── TreeWidget.pyi │ │ │ ├── TriangleButton.pyi │ │ │ ├── UpdateModeWidgets.pyi │ │ │ ├── VBoxLayoutResizer.pyi │ │ │ ├── VPStateButton.pyi │ │ │ ├── VariablesPopup.pyi │ │ │ ├── VerticalDivider.pyi │ │ │ ├── ViewIndicatorLabel.pyi │ │ │ ├── ViewerWorkingSetButton.pyi │ │ │ ├── ViewportPane.pyi │ │ │ ├── ViewportWidget.pyi │ │ │ ├── WheelEventIgnoringTabBar.pyi │ │ │ ├── WidgetHilightBox.pyi │ │ │ ├── WorkingSetWidgets.pyi │ │ │ └── __init__.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── Utils/ │ │ ├── Decorators.pyi │ │ ├── EventModule.pyi │ │ ├── EventModuleCommon.pyi │ │ ├── EventModuleDefault.pyi │ │ ├── EventModuleUI.pyi │ │ ├── Exceptions.pyi │ │ ├── MimeData.pyi │ │ ├── OpenGLGPUTiming.pyi │ │ ├── OpenGLTraceMarker.pyi │ │ ├── Plugins.pyi │ │ ├── UndoStack.pyi │ │ ├── WeakMethod.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── ViewerAPI/ │ │ ├── ImplicitOpsManager.pyi │ │ ├── ManipulatorBridge.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── WorkQueue/ │ │ ├── Manifest.pyi │ │ ├── WorkQueue.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ ├── _FnKatanaCoreUI/ │ │ ├── __init__.pyi │ │ └── py.typed │ ├── _PyOpenColorIO/ │ │ ├── __init__.pyi │ │ └── py.typed │ └── drawing_cmodule/ │ ├── __init__.pyi │ └── py.typed ├── mari/ │ ├── README.md │ ├── maripy │ ├── moon.yml │ ├── mypy.ini │ ├── pyproject.toml │ ├── stubgen_mari.py │ ├── stubgen_mari.sh │ ├── stubs/ │ │ └── mari-stubs/ │ │ ├── __init__.pyi │ │ ├── current/ │ │ │ └── __init__.pyi │ │ ├── examples/ │ │ │ ├── __init__.pyi │ │ │ ├── action_manager.pyi │ │ │ ├── asset_management.pyi │ │ │ ├── c_api_channel_export.pyi │ │ │ ├── cameras.pyi │ │ │ ├── channels.pyi │ │ │ ├── colorspace.pyi │ │ │ ├── command_port.pyi │ │ │ ├── convert_channel.pyi │ │ │ ├── create_blacksmith_project.pyi │ │ │ ├── create_project.pyi │ │ │ ├── custom_layer.pyi │ │ │ ├── custom_shader.pyi │ │ │ ├── drag_and_drop_callbacks.pyi │ │ │ ├── export_dialog.pyi │ │ │ ├── export_shelf.pyi │ │ │ ├── filters.pyi │ │ │ ├── image_filters.pyi │ │ │ ├── layered_channels_for_layered_shaders.pyi │ │ │ ├── layered_channels_from_layered_shaders.pyi │ │ │ ├── layers.pyi │ │ │ ├── layers_NPMA_tiled_RGB.pyi │ │ │ ├── layers_disable_all_amount_values.pyi │ │ │ ├── lights.pyi │ │ │ ├── linked_patches.pyi │ │ │ ├── mGo.pyi │ │ │ ├── mGo_Materialiser.pyi │ │ │ ├── mGo_Shortcut_Actions.pyi │ │ │ ├── maya_export.pyi │ │ │ ├── nodes.pyi │ │ │ ├── paint_buffer.pyi │ │ │ ├── post_processing_filters.pyi │ │ │ ├── projectors.pyi │ │ │ ├── register_which_transforms.pyi │ │ │ ├── resource_info.pyi │ │ │ ├── selection_groups.pyi │ │ │ ├── shaders.pyi │ │ │ ├── shaderstacks.pyi │ │ │ ├── vector_brush.pyi │ │ │ └── vector_channel.pyi │ │ ├── py.typed │ │ ├── session/ │ │ │ ├── __init__.pyi │ │ │ ├── exceptions.pyi │ │ │ ├── menu.pyi │ │ │ ├── preferences.pyi │ │ │ ├── types/ │ │ │ │ ├── __init__.pyi │ │ │ │ ├── adjustable_layer.pyi │ │ │ │ ├── adjustment_layer.pyi │ │ │ │ ├── camera.pyi │ │ │ │ ├── channel.pyi │ │ │ │ ├── channel_layer.pyi │ │ │ │ ├── container/ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── path.pyi │ │ │ │ │ ├── storage.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── entity_node_graph.pyi │ │ │ │ ├── environment_light.pyi │ │ │ │ ├── geo_entity.pyi │ │ │ │ ├── geo_entity_version.pyi │ │ │ │ ├── geo_patch.pyi │ │ │ │ ├── graph_layer.pyi │ │ │ │ ├── group_layer.pyi │ │ │ │ ├── image.pyi │ │ │ │ ├── image_set.pyi │ │ │ │ ├── layer.pyi │ │ │ │ ├── layer_stack.pyi │ │ │ │ ├── light.pyi │ │ │ │ ├── mari_entity.pyi │ │ │ │ ├── metadata.pyi │ │ │ │ ├── multichannel_layer.pyi │ │ │ │ ├── node_graph.pyi │ │ │ │ ├── paintable_layer.pyi │ │ │ │ ├── point_light.pyi │ │ │ │ ├── procedural_layer.pyi │ │ │ │ ├── project.pyi │ │ │ │ ├── projector.pyi │ │ │ │ ├── shader.pyi │ │ │ │ ├── shader_layer.pyi │ │ │ │ └── sibling_shared_layer.pyi │ │ │ ├── ui/ │ │ │ │ ├── __init__.pyi │ │ │ │ ├── change_path_dialog.pyi │ │ │ │ ├── channel_dialog.pyi │ │ │ │ ├── export_dialog.pyi │ │ │ │ ├── import_dialog.pyi │ │ │ │ ├── message_dialog.pyi │ │ │ │ ├── node_graph_dialog.pyi │ │ │ │ ├── patch_export_options_dialog.pyi │ │ │ │ ├── patch_grid_widget.pyi │ │ │ │ ├── patch_item.pyi │ │ │ │ ├── patch_selector_dialog.pyi │ │ │ │ ├── shader_dialog.pyi │ │ │ │ ├── tree_widget/ │ │ │ │ │ └── __init__.pyi │ │ │ │ └── utils.pyi │ │ │ └── utils/ │ │ │ ├── __init__.pyi │ │ │ ├── export_session.pyi │ │ │ ├── import_session.pyi │ │ │ ├── misc.pyi │ │ │ └── temp_dir.pyi │ │ ├── system/ │ │ │ ├── __init__.pyi │ │ │ ├── _finalise.pyi │ │ │ ├── _modo_contexts.pyi │ │ │ ├── _modo_session.pyi │ │ │ ├── _modo_ui.pyi │ │ │ ├── _modo_utils.pyi │ │ │ ├── _modosock.pyi │ │ │ ├── _ocio_toolbar.pyi │ │ │ ├── _particle_channel_transfer.pyi │ │ │ ├── _particle_layer_transfer.pyi │ │ │ ├── _particle_ops.pyi │ │ │ ├── _particle_transfer.pyi │ │ │ ├── _setup.pyi │ │ │ ├── _test.pyi │ │ │ ├── bake_new_layer.pyi │ │ │ ├── base_item_model.pyi │ │ │ ├── batch_export_dialog.pyi │ │ │ ├── enable_server_connection.pyi │ │ │ ├── material_ingest.pyi │ │ │ ├── material_ingest_dialog.pyi │ │ │ ├── megascans.pyi │ │ │ ├── megascans_parser.pyi │ │ │ ├── modo_bridge.pyi │ │ │ ├── nuke_bridge.pyi │ │ │ ├── snapshots.pyi │ │ │ └── textureSets.pyi │ │ └── utils/ │ │ ├── __init__.pyi │ │ ├── misc.pyi │ │ ├── node_generator.pyi │ │ ├── ocio.pyi │ │ ├── redirector.pyi │ │ ├── show_help.pyi │ │ ├── signal_helpers.pyi │ │ └── ui.pyi │ └── symbols.txt ├── maya/ │ ├── .interpreter │ ├── moon.yml │ ├── pyproject.toml │ ├── stubgen_maya.py │ └── stubs/ │ ├── maya-stubs/ │ │ ├── OpenMaya.pyi │ │ ├── OpenMayaAnim.pyi │ │ ├── OpenMayaMPx.pyi │ │ ├── OpenMayaRender.pyi │ │ ├── OpenMayaUI.pyi │ │ ├── __init__.pyi │ │ ├── api/ │ │ │ ├── MDGContextGuard.pyi │ │ │ ├── OpenMaya.pyi │ │ │ ├── OpenMayaAnim.pyi │ │ │ ├── OpenMayaRender.pyi │ │ │ ├── OpenMayaUI.pyi │ │ │ ├── _OpenMayaAnim_py2.pyi │ │ │ ├── _OpenMayaRender_py2.pyi │ │ │ ├── _OpenMayaUI_py2.pyi │ │ │ ├── _OpenMaya_py2.pyi │ │ │ └── __init__.pyi │ │ ├── cmds/ │ │ │ └── __init__.pyi │ │ ├── mel/ │ │ │ └── __init__.pyi │ │ ├── py.typed │ │ └── standalone.pyi │ └── ufe-stubs/ │ ├── __init__.pyi │ └── py.typed ├── moon.yml ├── nox-requirements.txt ├── noxfile.py ├── nuke/ │ ├── README.md │ ├── moon.yml │ ├── nukepy │ ├── pyproject.toml │ ├── stubgen_nuke.sh │ └── stubs/ │ └── nuke-stubs/ │ ├── __init__.pyi │ ├── _curveknob.pyi │ ├── _curvelib.pyi │ ├── _geo.pyi │ ├── _localization.pyi │ ├── _nuke.pyi │ ├── _nuke_color.pyi │ ├── _splinewarp.pyi │ ├── callbacks.pyi │ ├── colorspaces.pyi │ ├── curveknob.pyi │ ├── curvelib.pyi │ ├── executeInMain.pyi │ ├── geo.pyi │ ├── localization.pyi │ ├── overrides.pyi │ ├── rotopaint.pyi │ ├── scripts.pyi │ ├── splinewarp.pyi │ └── utils.pyi ├── ocio/ │ ├── README.md │ ├── moon.yml │ ├── pyproject.toml │ ├── stubgen_ocio.py │ ├── stubgen_ocio.sh │ └── stubs/ │ └── PyOpenColorIO-stubs/ │ ├── __init__.pyi │ ├── command_line.pyi │ └── py.typed ├── openexr/ │ ├── moon.yml │ ├── pyproject.toml │ ├── stubgen_openexr.py │ ├── stubgen_openexr.sh │ └── stubs/ │ └── OpenEXR/ │ ├── __init__.pyi │ └── py.typed ├── otio/ │ ├── README.md │ ├── pyproject.toml │ ├── stubgen_otio.sh │ └── stubs/ │ └── opentimelineio-stubs/ │ ├── __init__.pyi │ ├── _opentime.pyi │ ├── _otio.pyi │ ├── adapters/ │ │ ├── __init__.pyi │ │ ├── adapter.pyi │ │ ├── file_bundle_utils.pyi │ │ ├── otio_json.pyi │ │ ├── otiod.pyi │ │ └── otioz.pyi │ ├── algorithms/ │ │ ├── __init__.pyi │ │ ├── filter.pyi │ │ ├── stack_algo.pyi │ │ ├── timeline_algo.pyi │ │ └── track_algo.pyi │ ├── console/ │ │ ├── __init__.pyi │ │ ├── autogen_plugin_documentation.pyi │ │ ├── autogen_serialized_datamodel.pyi │ │ ├── autogen_version_map.pyi │ │ ├── console_utils.pyi │ │ ├── otiocat.pyi │ │ ├── otioconvert.pyi │ │ ├── otiopluginfo.pyi │ │ ├── otiostat.pyi │ │ └── otiotool.pyi │ ├── core/ │ │ ├── __init__.pyi │ │ ├── _core_utils.pyi │ │ ├── composable.pyi │ │ ├── composition.pyi │ │ ├── item.pyi │ │ └── mediaReference.pyi │ ├── exceptions.pyi │ ├── hooks.pyi │ ├── media_linker.pyi │ ├── opentime.pyi │ ├── plugins/ │ │ ├── __init__.pyi │ │ ├── manifest.pyi │ │ └── python_plugin.pyi │ ├── py.typed │ ├── schema/ │ │ ├── __init__.pyi │ │ ├── box2d.pyi │ │ ├── clip.pyi │ │ ├── effect.pyi │ │ ├── external_reference.pyi │ │ ├── generator_reference.pyi │ │ ├── image_sequence_reference.pyi │ │ ├── marker.pyi │ │ ├── schemadef.pyi │ │ ├── serializable_collection.pyi │ │ ├── timeline.pyi │ │ ├── transition.pyi │ │ └── v2d.pyi │ ├── schemadef/ │ │ └── __init__.pyi │ ├── url_utils.pyi │ └── versioning.pyi ├── pyproject.toml ├── pyside/ │ ├── .python-version │ ├── README.md │ ├── moon.yml │ ├── pyproject.toml │ ├── stubgen_pyside.py │ ├── stubs/ │ │ ├── PySide2-stubs/ │ │ │ ├── Qt3DAnimation.pyi │ │ │ ├── Qt3DCore.pyi │ │ │ ├── Qt3DExtras.pyi │ │ │ ├── Qt3DInput.pyi │ │ │ ├── Qt3DLogic.pyi │ │ │ ├── Qt3DRender.pyi │ │ │ ├── QtCharts.pyi │ │ │ ├── QtConcurrent.pyi │ │ │ ├── QtCore.pyi │ │ │ ├── QtDataVisualization.pyi │ │ │ ├── QtGui.pyi │ │ │ ├── QtHelp.pyi │ │ │ ├── QtLocation.pyi │ │ │ ├── QtMacExtras.pyi │ │ │ ├── QtMultimedia.pyi │ │ │ ├── QtMultimediaWidgets.pyi │ │ │ ├── QtNetwork.pyi │ │ │ ├── QtOpenGL.pyi │ │ │ ├── QtOpenGLFunctions.pyi │ │ │ ├── QtPositioning.pyi │ │ │ ├── QtPrintSupport.pyi │ │ │ ├── QtQml.pyi │ │ │ ├── QtQuick.pyi │ │ │ ├── QtQuickControls2.pyi │ │ │ ├── QtQuickWidgets.pyi │ │ │ ├── QtRemoteObjects.pyi │ │ │ ├── QtScript.pyi │ │ │ ├── QtScriptTools.pyi │ │ │ ├── QtScxml.pyi │ │ │ ├── QtSensors.pyi │ │ │ ├── QtSerialPort.pyi │ │ │ ├── QtSql.pyi │ │ │ ├── QtSvg.pyi │ │ │ ├── QtTest.pyi │ │ │ ├── QtTextToSpeech.pyi │ │ │ ├── QtUiTools.pyi │ │ │ ├── QtWebChannel.pyi │ │ │ ├── QtWebEngine.pyi │ │ │ ├── QtWebEngineCore.pyi │ │ │ ├── QtWebEngineWidgets.pyi │ │ │ ├── QtWebSockets.pyi │ │ │ ├── QtWidgets.pyi │ │ │ ├── QtXml.pyi │ │ │ ├── QtXmlPatterns.pyi │ │ │ ├── __init__.pyi │ │ │ ├── _config.pyi │ │ │ ├── _git_pyside_version.pyi │ │ │ ├── py.typed │ │ │ ├── scripts/ │ │ │ │ ├── __init__.pyi │ │ │ │ └── pyside_tool.pyi │ │ │ └── support/ │ │ │ ├── __init__.pyi │ │ │ ├── deprecated.pyi │ │ │ └── generate_pyi.pyi │ │ └── shiboken2-stubs/ │ │ ├── __init__.pyi │ │ ├── _config.pyi │ │ ├── _git_shiboken_module_version.pyi │ │ ├── py.typed │ │ └── shiboken2.pyi │ ├── tests/ │ │ ├── conftest.py │ │ ├── qlineedit.py │ │ ├── qmenu.py │ │ ├── test_general.py │ │ ├── test_qflag.py │ │ └── test_slot.py │ └── tox.ini ├── pyside6/ │ ├── .python-version │ ├── README.md │ ├── pyproject.toml │ ├── stubgen_pyside6.py │ ├── stubs/ │ │ ├── PySide6-stubs/ │ │ │ ├── Qt3DAnimation.pyi │ │ │ ├── Qt3DCore.pyi │ │ │ ├── Qt3DExtras.pyi │ │ │ ├── Qt3DInput.pyi │ │ │ ├── Qt3DLogic.pyi │ │ │ ├── Qt3DRender.pyi │ │ │ ├── QtAsyncio/ │ │ │ │ ├── __init__.pyi │ │ │ │ ├── events.pyi │ │ │ │ ├── futures.pyi │ │ │ │ └── tasks.pyi │ │ │ ├── QtBluetooth.pyi │ │ │ ├── QtCharts.pyi │ │ │ ├── QtConcurrent.pyi │ │ │ ├── QtCore.pyi │ │ │ ├── QtDBus.pyi │ │ │ ├── QtDataVisualization.pyi │ │ │ ├── QtDesigner.pyi │ │ │ ├── QtGraphs.pyi │ │ │ ├── QtGraphsWidgets.pyi │ │ │ ├── QtGui.pyi │ │ │ ├── QtHelp.pyi │ │ │ ├── QtHttpServer.pyi │ │ │ ├── QtLocation.pyi │ │ │ ├── QtMultimedia.pyi │ │ │ ├── QtMultimediaWidgets.pyi │ │ │ ├── QtNetwork.pyi │ │ │ ├── QtNetworkAuth.pyi │ │ │ ├── QtNfc.pyi │ │ │ ├── QtOpenGL.pyi │ │ │ ├── QtOpenGLWidgets.pyi │ │ │ ├── QtPdf.pyi │ │ │ ├── QtPdfWidgets.pyi │ │ │ ├── QtPositioning.pyi │ │ │ ├── QtPrintSupport.pyi │ │ │ ├── QtQml.pyi │ │ │ ├── QtQuick.pyi │ │ │ ├── QtQuick3D.pyi │ │ │ ├── QtQuickControls2.pyi │ │ │ ├── QtQuickTest.pyi │ │ │ ├── QtQuickWidgets.pyi │ │ │ ├── QtRemoteObjects.pyi │ │ │ ├── QtScxml.pyi │ │ │ ├── QtSensors.pyi │ │ │ ├── QtSerialBus.pyi │ │ │ ├── QtSerialPort.pyi │ │ │ ├── QtSpatialAudio.pyi │ │ │ ├── QtSql.pyi │ │ │ ├── QtStateMachine.pyi │ │ │ ├── QtSvg.pyi │ │ │ ├── QtSvgWidgets.pyi │ │ │ ├── QtTest.pyi │ │ │ ├── QtTextToSpeech.pyi │ │ │ ├── QtUiTools.pyi │ │ │ ├── QtWebChannel.pyi │ │ │ ├── QtWebEngineCore.pyi │ │ │ ├── QtWebEngineQuick.pyi │ │ │ ├── QtWebEngineWidgets.pyi │ │ │ ├── QtWebSockets.pyi │ │ │ ├── QtWebView.pyi │ │ │ ├── QtWidgets.pyi │ │ │ ├── QtXml.pyi │ │ │ ├── __init__.pyi │ │ │ ├── _config.pyi │ │ │ ├── _git_pyside_version.pyi │ │ │ ├── py.typed │ │ │ ├── scripts/ │ │ │ │ ├── __init__.pyi │ │ │ │ ├── android_deploy.pyi │ │ │ │ ├── deploy.pyi │ │ │ │ ├── deploy_lib/ │ │ │ │ │ └── __init__.pyi │ │ │ │ ├── metaobjectdump.pyi │ │ │ │ ├── project.pyi │ │ │ │ ├── project_lib/ │ │ │ │ │ ├── __init__.pyi │ │ │ │ │ ├── design_studio_project.pyi │ │ │ │ │ ├── newproject.pyi │ │ │ │ │ ├── project_data.pyi │ │ │ │ │ ├── pyproject_json.pyi │ │ │ │ │ ├── pyproject_parse_result.pyi │ │ │ │ │ ├── pyproject_toml.pyi │ │ │ │ │ └── utils.pyi │ │ │ │ ├── pyside_tool.pyi │ │ │ │ ├── qml.pyi │ │ │ │ └── qtpy2cpp.pyi │ │ │ └── support/ │ │ │ ├── __init__.pyi │ │ │ ├── deprecated.pyi │ │ │ └── generate_pyi.pyi │ │ └── shiboken6-stubs/ │ │ ├── Shiboken.pyi │ │ ├── __init__.pyi │ │ ├── _config.pyi │ │ ├── _git_shiboken_module_version.pyi │ │ └── py.typed │ └── tests/ │ ├── conftest.py │ ├── qlineedit.py │ ├── qmenu.py │ ├── test_general.py │ ├── test_qflag.py │ └── test_slot.py ├── rez/ │ ├── README.md │ ├── moon.yml │ ├── pyproject.toml │ ├── stubgen_rez.sh │ └── stubs/ │ ├── rez-stubs/ │ │ ├── __init__.pyi │ │ ├── bind/ │ │ │ ├── PyQt.pyi │ │ │ ├── PySide.pyi │ │ │ ├── __init__.pyi │ │ │ ├── _pymodule.pyi │ │ │ ├── _utils.pyi │ │ │ ├── arch.pyi │ │ │ ├── cmake.pyi │ │ │ ├── gcc.pyi │ │ │ ├── hello_world.pyi │ │ │ ├── os.pyi │ │ │ ├── pip.pyi │ │ │ ├── platform.pyi │ │ │ ├── python.pyi │ │ │ ├── rez.pyi │ │ │ ├── rezgui.pyi │ │ │ ├── setuptools.pyi │ │ │ └── sip.pyi │ │ ├── build_process.pyi │ │ ├── build_system.pyi │ │ ├── bundle_context.pyi │ │ ├── cli/ │ │ │ ├── __init__.pyi │ │ │ ├── _complete_util.pyi │ │ │ ├── _entry_points.pyi │ │ │ ├── _main.pyi │ │ │ ├── _util.pyi │ │ │ ├── benchmark.pyi │ │ │ ├── bind.pyi │ │ │ ├── build.pyi │ │ │ ├── bundle.pyi │ │ │ ├── complete.pyi │ │ │ ├── config.pyi │ │ │ ├── context.pyi │ │ │ ├── cp.pyi │ │ │ ├── depends.pyi │ │ │ ├── diff.pyi │ │ │ ├── env.pyi │ │ │ ├── forward.pyi │ │ │ ├── gui.pyi │ │ │ ├── help.pyi │ │ │ ├── interpret.pyi │ │ │ ├── memcache.pyi │ │ │ ├── mv.pyi │ │ │ ├── pip.pyi │ │ │ ├── pkg-cache.pyi │ │ │ ├── pkg-ignore.pyi │ │ │ ├── plugins.pyi │ │ │ ├── python.pyi │ │ │ ├── release.pyi │ │ │ ├── rm.pyi │ │ │ ├── search.pyi │ │ │ ├── selftest.pyi │ │ │ ├── status.pyi │ │ │ ├── suite.pyi │ │ │ ├── view.pyi │ │ │ └── yaml2py.pyi │ │ ├── command.pyi │ │ ├── config.pyi │ │ ├── deprecations.pyi │ │ ├── developer_package.pyi │ │ ├── exceptions.pyi │ │ ├── package_bind.pyi │ │ ├── package_cache.pyi │ │ ├── package_copy.pyi │ │ ├── package_filter.pyi │ │ ├── package_help.pyi │ │ ├── package_maker.pyi │ │ ├── package_move.pyi │ │ ├── package_order.pyi │ │ ├── package_py_utils.pyi │ │ ├── package_remove.pyi │ │ ├── package_repository.pyi │ │ ├── package_resources.pyi │ │ ├── package_search.pyi │ │ ├── package_serialise.pyi │ │ ├── package_test.pyi │ │ ├── packages.pyi │ │ ├── pip.pyi │ │ ├── plugin_managers.pyi │ │ ├── py.typed │ │ ├── release_hook.pyi │ │ ├── release_vcs.pyi │ │ ├── resolved_context.pyi │ │ ├── resolver.pyi │ │ ├── rex.pyi │ │ ├── rex_bindings.pyi │ │ ├── rezconfig.pyi │ │ ├── serialise.pyi │ │ ├── shells.pyi │ │ ├── solver.pyi │ │ ├── status.pyi │ │ ├── suite.pyi │ │ ├── system.pyi │ │ ├── util.pyi │ │ ├── utils/ │ │ │ ├── __init__.pyi │ │ │ ├── _version.pyi │ │ │ ├── amqp.pyi │ │ │ ├── backcompat.pyi │ │ │ ├── base26.pyi │ │ │ ├── colorize.pyi │ │ │ ├── data_utils.pyi │ │ │ ├── diff_packages.pyi │ │ │ ├── elf.pyi │ │ │ ├── execution.pyi │ │ │ ├── filesystem.pyi │ │ │ ├── formatting.pyi │ │ │ ├── graph_utils.pyi │ │ │ ├── installer.pyi │ │ │ ├── lint_helper.pyi │ │ │ ├── logging_.pyi │ │ │ ├── memcached.pyi │ │ │ ├── patching.pyi │ │ │ ├── pip.pyi │ │ │ ├── platform_.pyi │ │ │ ├── platform_mapped.pyi │ │ │ ├── py_dist.pyi │ │ │ ├── resolve_graph.pyi │ │ │ ├── resources.pyi │ │ │ ├── schema.pyi │ │ │ ├── scope.pyi │ │ │ ├── sourcecode.pyi │ │ │ ├── typing.pyi │ │ │ ├── which.pyi │ │ │ └── yaml.pyi │ │ ├── version/ │ │ │ ├── __init__.pyi │ │ │ ├── _requirement.pyi │ │ │ ├── _util.pyi │ │ │ └── _version.pyi │ │ └── wrapper.pyi │ └── rezplugins-stubs/ │ ├── __init__.pyi │ ├── build_process/ │ │ ├── __init__.pyi │ │ ├── local.pyi │ │ ├── remote.pyi │ │ └── rezconfig.pyi │ ├── build_system/ │ │ ├── __init__.pyi │ │ ├── cmake.pyi │ │ ├── custom.pyi │ │ ├── make.pyi │ │ └── rezconfig.pyi │ ├── command/ │ │ └── __init__.pyi │ ├── package_repository/ │ │ ├── __init__.pyi │ │ ├── filesystem.pyi │ │ ├── memory.pyi │ │ └── rezconfig.pyi │ ├── py.typed │ ├── release_hook/ │ │ ├── __init__.pyi │ │ ├── amqp.pyi │ │ ├── command.pyi │ │ ├── emailer.pyi │ │ └── rezconfig.pyi │ ├── release_vcs/ │ │ ├── __init__.pyi │ │ ├── git.pyi │ │ ├── hg.pyi │ │ ├── rezconfig.pyi │ │ ├── stub.pyi │ │ └── svn.pyi │ └── shell/ │ ├── __init__.pyi │ ├── _utils/ │ │ ├── __init__.pyi │ │ ├── powershell_base.pyi │ │ └── windows.pyi │ ├── bash.pyi │ ├── cmd.pyi │ ├── csh.pyi │ ├── gitbash.pyi │ ├── powershell.pyi │ ├── pwsh.pyi │ ├── rezconfig.pyi │ ├── sh.pyi │ ├── tcsh.pyi │ └── zsh.pyi ├── runtests.sh ├── shotgun/ │ ├── .python-version │ ├── README.md │ ├── pyproject.toml │ ├── stubgen_shotgun.sh │ └── stubs/ │ └── shotgun_api3-stubs/ │ ├── __init__.pyi │ ├── lib/ │ │ ├── __init__.pyi │ │ ├── certifi/ │ │ │ ├── __init__.pyi │ │ │ └── core.pyi │ │ ├── httplib2/ │ │ │ ├── __init__.pyi │ │ │ ├── auth.pyi │ │ │ ├── certs.pyi │ │ │ ├── error.pyi │ │ │ ├── iri2uri.pyi │ │ │ └── socks.pyi │ │ ├── mimetypes.pyi │ │ ├── mockgun/ │ │ │ ├── __init__.pyi │ │ │ ├── errors.pyi │ │ │ ├── mockgun.pyi │ │ │ └── schema.pyi │ │ ├── pyparsing.pyi │ │ ├── sgsix.pyi │ │ ├── sgtimezone.pyi │ │ └── sgutils.pyi │ ├── py.typed │ └── shotgun.pyi ├── substance_painter/ │ ├── README.md │ ├── moon.yml │ ├── pyproject.toml │ ├── stubgen_substance_painter.py │ └── stubs/ │ ├── _substance_painter-stubs/ │ │ ├── __init__.pyi │ │ ├── analytics.pyi │ │ ├── application.pyi │ │ ├── async_utils.pyi │ │ ├── baking.pyi │ │ ├── colormanagement.pyi │ │ ├── data_tweak.pyi │ │ ├── display.pyi │ │ ├── event.pyi │ │ ├── exception.pyi │ │ ├── export.pyi │ │ ├── feature.pyi │ │ ├── fiber.pyi │ │ ├── interop.pyi │ │ ├── js.pyi │ │ ├── layerstack.pyi │ │ ├── levels.pyi │ │ ├── logging.pyi │ │ ├── project.pyi │ │ ├── py.typed │ │ ├── resource.pyi │ │ ├── source.pyi │ │ ├── textureset.pyi │ │ └── ui.pyi │ └── substance_painter-stubs/ │ ├── __init__.pyi │ ├── _executor.pyi │ ├── _utility.pyi │ ├── _version.pyi │ ├── application.pyi │ ├── async_utils.pyi │ ├── baking.pyi │ ├── colormanagement.pyi │ ├── display.pyi │ ├── event.pyi │ ├── exception.pyi │ ├── export.pyi │ ├── js.pyi │ ├── layerstack.pyi │ ├── levels.pyi │ ├── logging.pyi │ ├── project.pyi │ ├── properties.pyi │ ├── py.typed │ ├── resource.pyi │ ├── source.pyi │ ├── textureset.pyi │ └── ui.pyi ├── taskfile.common.yml ├── taskfile.yml ├── usd/ │ ├── .python-version │ ├── README.md │ ├── builddocs.sh │ ├── buildusd.sh │ ├── checkstubs.sh │ ├── comparedocs.sh │ ├── fixtures/ │ │ ├── destination_forwarding.usda │ │ ├── input.usda │ │ ├── invalid_1.usda │ │ ├── invalid_2.usda │ │ ├── invalid_2b.usda │ │ ├── invalid_2c.usda │ │ ├── invalid_2d.usda │ │ ├── over.usda │ │ ├── source_forwarding.usda │ │ ├── usd_resolve_info.usda │ │ ├── valid_1.usda │ │ ├── valid_2.usda │ │ ├── valid_3.usda │ │ ├── valid_4.usda │ │ └── valid_5.usda │ ├── moon.yml │ ├── pyproject.toml │ ├── runtests.sh │ ├── stubgen_usd.py │ ├── stubgen_usd.sh │ ├── stubs/ │ │ ├── Boost-stubs/ │ │ │ ├── Python.pyi │ │ │ ├── __init__.pyi │ │ │ └── py.typed │ │ └── pxr-stubs/ │ │ ├── Ar/ │ │ │ └── __init__.pyi │ │ ├── CameraUtil/ │ │ │ └── __init__.pyi │ │ ├── Garch/ │ │ │ └── __init__.pyi │ │ ├── GeomUtil/ │ │ │ └── __init__.pyi │ │ ├── Gf/ │ │ │ └── __init__.pyi │ │ ├── Glf/ │ │ │ └── __init__.pyi │ │ ├── Kind/ │ │ │ └── __init__.pyi │ │ ├── Ndr/ │ │ │ └── __init__.pyi │ │ ├── Pcp/ │ │ │ └── __init__.pyi │ │ ├── Plug/ │ │ │ └── __init__.pyi │ │ ├── PxOsd/ │ │ │ └── __init__.pyi │ │ ├── Sdf/ │ │ │ └── __init__.pyi │ │ ├── Sdr/ │ │ │ ├── __init__.pyi │ │ │ └── shaderParserTestUtils.pyi │ │ ├── SdrGlslfx/ │ │ │ └── __init__.pyi │ │ ├── Tf.pyi │ │ ├── Trace/ │ │ │ └── __init__.pyi │ │ ├── Ts/ │ │ │ ├── TsTest_Comparator.pyi │ │ │ ├── TsTest_CompareBaseline.pyi │ │ │ ├── TsTest_Grapher.pyi │ │ │ └── __init__.pyi │ │ ├── Usd/ │ │ │ └── __init__.pyi │ │ ├── UsdAppUtils/ │ │ │ ├── __init__.pyi │ │ │ ├── cameraArgs.pyi │ │ │ ├── colorArgs.pyi │ │ │ ├── complexityArgs.pyi │ │ │ ├── framesArgs.pyi │ │ │ └── rendererArgs.pyi │ │ ├── UsdBakeMtlx/ │ │ │ └── __init__.pyi │ │ ├── UsdGeom/ │ │ │ └── __init__.pyi │ │ ├── UsdHydra/ │ │ │ └── __init__.pyi │ │ ├── UsdImagingGL/ │ │ │ └── __init__.pyi │ │ ├── UsdLux/ │ │ │ └── __init__.pyi │ │ ├── UsdMedia/ │ │ │ └── __init__.pyi │ │ ├── UsdMtlx/ │ │ │ └── __init__.pyi │ │ ├── UsdPhysics/ │ │ │ └── __init__.pyi │ │ ├── UsdProc/ │ │ │ └── __init__.pyi │ │ ├── UsdRender/ │ │ │ └── __init__.pyi │ │ ├── UsdResolverExample/ │ │ │ └── __init__.pyi │ │ ├── UsdRi/ │ │ │ └── __init__.pyi │ │ ├── UsdSchemaExamples/ │ │ │ └── __init__.pyi │ │ ├── UsdShade/ │ │ │ └── __init__.pyi │ │ ├── UsdShaders/ │ │ │ └── __init__.pyi │ │ ├── UsdSkel/ │ │ │ └── __init__.pyi │ │ ├── UsdUI/ │ │ │ └── __init__.pyi │ │ ├── UsdUtils/ │ │ │ ├── __init__.pyi │ │ │ ├── complianceChecker.pyi │ │ │ ├── constantsGroup.pyi │ │ │ ├── fixBrokenPixarSchemas.pyi │ │ │ ├── toolPaths.pyi │ │ │ ├── updateSchemaWithSdrNode.pyi │ │ │ └── usdzUtils.pyi │ │ ├── UsdVol/ │ │ │ └── __init__.pyi │ │ ├── Usdviewq/ │ │ │ ├── __init__.pyi │ │ │ ├── adjustDefaultMaterial.pyi │ │ │ ├── adjustDefaultMaterialUI.pyi │ │ │ ├── adjustFreeCamera.pyi │ │ │ ├── adjustFreeCameraUI.pyi │ │ │ ├── appController.pyi │ │ │ ├── appEventFilter.pyi │ │ │ ├── arrayAttributeView.pyi │ │ │ ├── attributeValueEditor.pyi │ │ │ ├── attributeValueEditorUI.pyi │ │ │ ├── attributeViewContextMenu.pyi │ │ │ ├── common.pyi │ │ │ ├── configController.pyi │ │ │ ├── customAttributes.pyi │ │ │ ├── debugFlagsWidget.pyi │ │ │ ├── frameSlider.pyi │ │ │ ├── freeCamera.pyi │ │ │ ├── headerContextMenu.pyi │ │ │ ├── hydraSceneBrowser.pyi │ │ │ ├── layerStackContextMenu.pyi │ │ │ ├── legendUtil.pyi │ │ │ ├── mainWindowUI.pyi │ │ │ ├── overridableLineEdit.pyi │ │ │ ├── plugin.pyi │ │ │ ├── preferences.pyi │ │ │ ├── preferencesUI.pyi │ │ │ ├── prettyPrint.pyi │ │ │ ├── primContextMenu.pyi │ │ │ ├── primContextMenuItems.pyi │ │ │ ├── primLegend.pyi │ │ │ ├── primLegendUI.pyi │ │ │ ├── primTreeWidget.pyi │ │ │ ├── primViewItem.pyi │ │ │ ├── propertyLegend.pyi │ │ │ ├── propertyLegendUI.pyi │ │ │ ├── pythonInterpreter.pyi │ │ │ ├── qt.pyi │ │ │ ├── rootDataModel.pyi │ │ │ ├── scalarTypes.pyi │ │ │ ├── selectionDataModel.pyi │ │ │ ├── settings.pyi │ │ │ ├── stageView.pyi │ │ │ ├── usdviewApi.pyi │ │ │ ├── usdviewContextMenuItem.pyi │ │ │ ├── variantComboBox.pyi │ │ │ └── viewSettingsDataModel.pyi │ │ ├── Vt/ │ │ │ └── __init__.pyi │ │ ├── Work/ │ │ │ └── __init__.pyi │ │ ├── __init__.pyi │ │ └── py.typed │ └── tests/ │ ├── test_asset_info.py │ ├── test_batch_namespace_edit.py │ ├── test_bounding_box.py │ ├── test_cache_utils.py │ ├── test_caching.py │ ├── test_check.py │ ├── test_comment.py │ ├── test_debugging.py │ ├── test_destination_forwarding.py │ ├── test_edit.py │ ├── test_explicit.py │ ├── test_iter_contains.py │ ├── test_keyframe.py │ ├── test_kind.py │ ├── test_material.py │ ├── test_notice.py │ ├── test_notice_send_custom.py │ ├── test_notice_send_derived.py │ ├── test_notice_send_global.py │ ├── test_orphaned_over.py │ ├── test_purpose.py │ ├── test_reference_into_prim.py │ ├── test_sdf_change_block.py │ ├── test_shot.py │ ├── test_source_forwarding.py │ ├── test_specializes.py │ ├── test_template_and_explicit.py │ ├── test_uniquify.py │ ├── test_usd_resolve_info.py │ ├── test_usd_stubs.py │ ├── test_user.py │ ├── test_value_caching.py │ ├── test_variant_set.py │ ├── usd_resolve_info.usda │ ├── valid_1.usda │ ├── valid_2.usda │ ├── valid_3.usda │ ├── valid_4.usda │ └── valid_5.usda └── xrun.sh