├── AssetManager ├── __init__.py ├── constants.py ├── delegate.py ├── model.py ├── nukeUtils.py ├── schema.py └── view.py ├── AssetManagerDemo.nk ├── AssetManagerScreenshot.png ├── LICENSE ├── README.md ├── SchemaManager ├── app_qt.py ├── constants.py ├── readme.md ├── schema.py ├── tests.py └── view.py └── menu.py /AssetManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManager/__init__.py -------------------------------------------------------------------------------- /AssetManager/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManager/constants.py -------------------------------------------------------------------------------- /AssetManager/delegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManager/delegate.py -------------------------------------------------------------------------------- /AssetManager/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManager/model.py -------------------------------------------------------------------------------- /AssetManager/nukeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManager/nukeUtils.py -------------------------------------------------------------------------------- /AssetManager/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManager/schema.py -------------------------------------------------------------------------------- /AssetManager/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManager/view.py -------------------------------------------------------------------------------- /AssetManagerDemo.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManagerDemo.nk -------------------------------------------------------------------------------- /AssetManagerScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/AssetManagerScreenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/README.md -------------------------------------------------------------------------------- /SchemaManager/app_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/SchemaManager/app_qt.py -------------------------------------------------------------------------------- /SchemaManager/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/SchemaManager/constants.py -------------------------------------------------------------------------------- /SchemaManager/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/SchemaManager/readme.md -------------------------------------------------------------------------------- /SchemaManager/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/SchemaManager/schema.py -------------------------------------------------------------------------------- /SchemaManager/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/SchemaManager/tests.py -------------------------------------------------------------------------------- /SchemaManager/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/SchemaManager/view.py -------------------------------------------------------------------------------- /menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artandmath/AssetManager/HEAD/menu.py --------------------------------------------------------------------------------