├── CMakeLists.txt ├── license.txt ├── readme.txt ├── vrayGolaem ├── CMakeLists.txt ├── glm_crowd.h ├── glm_crowd_io.h ├── instance.cpp ├── instance.h ├── json.h ├── miniz.c ├── pluginenumcallbacks.h ├── resource.h ├── vrayGolaem.def ├── vraygolaem.cpp ├── vraygolaem.dsp ├── vraygolaem.h ├── vraygolaem.py └── vraygolaem.rc ├── vrayGolaemHSL ├── CMakeLists.txt ├── bmp00001.bmp ├── bmp00002.bmp ├── plugin.def ├── resource.h ├── texicon.bmp ├── texiconmask.bmp ├── vraygolaemHSL.cpp ├── vraygolaemHSL.h ├── vraygolaemHSL.rc └── vraygolaemHSL_impl.h └── vrayGolaemSwitch ├── CMakeLists.txt ├── bmp00001.bmp ├── bmp00002.bmp ├── plugin.def ├── resource.h ├── texicon.bmp ├── texiconmask.bmp ├── vraygolaemSwitch.cpp ├── vraygolaemSwitch.h ├── vraygolaemSwitch.rc └── vraygolaemSwitch_impl.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/license.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/readme.txt -------------------------------------------------------------------------------- /vrayGolaem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/CMakeLists.txt -------------------------------------------------------------------------------- /vrayGolaem/glm_crowd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/glm_crowd.h -------------------------------------------------------------------------------- /vrayGolaem/glm_crowd_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/glm_crowd_io.h -------------------------------------------------------------------------------- /vrayGolaem/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/instance.cpp -------------------------------------------------------------------------------- /vrayGolaem/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/instance.h -------------------------------------------------------------------------------- /vrayGolaem/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/json.h -------------------------------------------------------------------------------- /vrayGolaem/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/miniz.c -------------------------------------------------------------------------------- /vrayGolaem/pluginenumcallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/pluginenumcallbacks.h -------------------------------------------------------------------------------- /vrayGolaem/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/resource.h -------------------------------------------------------------------------------- /vrayGolaem/vrayGolaem.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/vrayGolaem.def -------------------------------------------------------------------------------- /vrayGolaem/vraygolaem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/vraygolaem.cpp -------------------------------------------------------------------------------- /vrayGolaem/vraygolaem.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/vraygolaem.dsp -------------------------------------------------------------------------------- /vrayGolaem/vraygolaem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/vraygolaem.h -------------------------------------------------------------------------------- /vrayGolaem/vraygolaem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/vraygolaem.py -------------------------------------------------------------------------------- /vrayGolaem/vraygolaem.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaem/vraygolaem.rc -------------------------------------------------------------------------------- /vrayGolaemHSL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/CMakeLists.txt -------------------------------------------------------------------------------- /vrayGolaemHSL/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/bmp00001.bmp -------------------------------------------------------------------------------- /vrayGolaemHSL/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/bmp00002.bmp -------------------------------------------------------------------------------- /vrayGolaemHSL/plugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/plugin.def -------------------------------------------------------------------------------- /vrayGolaemHSL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/resource.h -------------------------------------------------------------------------------- /vrayGolaemHSL/texicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/texicon.bmp -------------------------------------------------------------------------------- /vrayGolaemHSL/texiconmask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/texiconmask.bmp -------------------------------------------------------------------------------- /vrayGolaemHSL/vraygolaemHSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/vraygolaemHSL.cpp -------------------------------------------------------------------------------- /vrayGolaemHSL/vraygolaemHSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/vraygolaemHSL.h -------------------------------------------------------------------------------- /vrayGolaemHSL/vraygolaemHSL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/vraygolaemHSL.rc -------------------------------------------------------------------------------- /vrayGolaemHSL/vraygolaemHSL_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemHSL/vraygolaemHSL_impl.h -------------------------------------------------------------------------------- /vrayGolaemSwitch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/CMakeLists.txt -------------------------------------------------------------------------------- /vrayGolaemSwitch/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/bmp00001.bmp -------------------------------------------------------------------------------- /vrayGolaemSwitch/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/bmp00002.bmp -------------------------------------------------------------------------------- /vrayGolaemSwitch/plugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/plugin.def -------------------------------------------------------------------------------- /vrayGolaemSwitch/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/resource.h -------------------------------------------------------------------------------- /vrayGolaemSwitch/texicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/texicon.bmp -------------------------------------------------------------------------------- /vrayGolaemSwitch/texiconmask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/texiconmask.bmp -------------------------------------------------------------------------------- /vrayGolaemSwitch/vraygolaemSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/vraygolaemSwitch.cpp -------------------------------------------------------------------------------- /vrayGolaemSwitch/vraygolaemSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/vraygolaemSwitch.h -------------------------------------------------------------------------------- /vrayGolaemSwitch/vraygolaemSwitch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/vraygolaemSwitch.rc -------------------------------------------------------------------------------- /vrayGolaemSwitch/vraygolaemSwitch_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vraygolaem_max/HEAD/vrayGolaemSwitch/vraygolaemSwitch_impl.h --------------------------------------------------------------------------------