├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include └── playblastOIIO.h ├── plugin.map ├── scripts └── playblastOIIO.py └── src ├── playblastOIIO.cpp └── playblastOIIOMain.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/README.md -------------------------------------------------------------------------------- /include/playblastOIIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/include/playblastOIIO.h -------------------------------------------------------------------------------- /plugin.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/plugin.map -------------------------------------------------------------------------------- /scripts/playblastOIIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/scripts/playblastOIIO.py -------------------------------------------------------------------------------- /src/playblastOIIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/src/playblastOIIO.cpp -------------------------------------------------------------------------------- /src/playblastOIIOMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/david-cattermole/playblastOIIO-maya/HEAD/src/playblastOIIOMain.cpp --------------------------------------------------------------------------------