├── .gitignore ├── README.md ├── SConstruct ├── setup.bat ├── setup.sh ├── src ├── ImageRegion.kl ├── ImageRegion_functions.cpp ├── RenderElement.kl ├── RenderElement_functions.cpp ├── RenderElements.kl ├── RenderElements_functions.cpp ├── RendererOptions.kl ├── RendererOptions_functions.cpp ├── SConscript ├── VRayEnums.kl ├── VRayError.kl ├── VRayError_functions.cpp ├── VRayImage.kl ├── VRayImage_functions.cpp ├── VRayInit.kl ├── VRayInit_functions.cpp ├── VRayPlugin.kl ├── VRayPluginMeta.kl ├── VRayPluginMeta_functions.cpp ├── VRayPlugin_functions.cpp ├── VRayPropertyMeta.kl ├── VRayPropertyMeta_functions.cpp ├── VRayPropertyRuntimeMeta.kl ├── VRayPropertyRuntimeMeta_functions.cpp ├── VRayRenderer.kl ├── VRayRenderer_functions.cpp ├── VRayTypes.kl ├── VRayValue.kl ├── VRayValue_functions.cpp ├── VRayVersion.kl ├── VRayVersion_functions.cpp ├── conversions.h ├── exceptions.h ├── extension.cpp └── vrayforfabric.fpm.json └── test ├── test.canvas ├── test.kl └── test.vrscene /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/SConstruct -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/setup.bat -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/setup.sh -------------------------------------------------------------------------------- /src/ImageRegion.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/ImageRegion.kl -------------------------------------------------------------------------------- /src/ImageRegion_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/ImageRegion_functions.cpp -------------------------------------------------------------------------------- /src/RenderElement.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/RenderElement.kl -------------------------------------------------------------------------------- /src/RenderElement_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/RenderElement_functions.cpp -------------------------------------------------------------------------------- /src/RenderElements.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/RenderElements.kl -------------------------------------------------------------------------------- /src/RenderElements_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/RenderElements_functions.cpp -------------------------------------------------------------------------------- /src/RendererOptions.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/RendererOptions.kl -------------------------------------------------------------------------------- /src/RendererOptions_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/RendererOptions_functions.cpp -------------------------------------------------------------------------------- /src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/SConscript -------------------------------------------------------------------------------- /src/VRayEnums.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayEnums.kl -------------------------------------------------------------------------------- /src/VRayError.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayError.kl -------------------------------------------------------------------------------- /src/VRayError_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayError_functions.cpp -------------------------------------------------------------------------------- /src/VRayImage.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayImage.kl -------------------------------------------------------------------------------- /src/VRayImage_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayImage_functions.cpp -------------------------------------------------------------------------------- /src/VRayInit.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayInit.kl -------------------------------------------------------------------------------- /src/VRayInit_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayInit_functions.cpp -------------------------------------------------------------------------------- /src/VRayPlugin.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPlugin.kl -------------------------------------------------------------------------------- /src/VRayPluginMeta.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPluginMeta.kl -------------------------------------------------------------------------------- /src/VRayPluginMeta_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPluginMeta_functions.cpp -------------------------------------------------------------------------------- /src/VRayPlugin_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPlugin_functions.cpp -------------------------------------------------------------------------------- /src/VRayPropertyMeta.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPropertyMeta.kl -------------------------------------------------------------------------------- /src/VRayPropertyMeta_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPropertyMeta_functions.cpp -------------------------------------------------------------------------------- /src/VRayPropertyRuntimeMeta.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPropertyRuntimeMeta.kl -------------------------------------------------------------------------------- /src/VRayPropertyRuntimeMeta_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayPropertyRuntimeMeta_functions.cpp -------------------------------------------------------------------------------- /src/VRayRenderer.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayRenderer.kl -------------------------------------------------------------------------------- /src/VRayRenderer_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayRenderer_functions.cpp -------------------------------------------------------------------------------- /src/VRayTypes.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayTypes.kl -------------------------------------------------------------------------------- /src/VRayValue.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayValue.kl -------------------------------------------------------------------------------- /src/VRayValue_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayValue_functions.cpp -------------------------------------------------------------------------------- /src/VRayVersion.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayVersion.kl -------------------------------------------------------------------------------- /src/VRayVersion_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/VRayVersion_functions.cpp -------------------------------------------------------------------------------- /src/conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/conversions.h -------------------------------------------------------------------------------- /src/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/exceptions.h -------------------------------------------------------------------------------- /src/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/extension.cpp -------------------------------------------------------------------------------- /src/vrayforfabric.fpm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/src/vrayforfabric.fpm.json -------------------------------------------------------------------------------- /test/test.canvas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/test/test.canvas -------------------------------------------------------------------------------- /test/test.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/test/test.kl -------------------------------------------------------------------------------- /test/test.vrscene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChaosGroup/vray-for-fabric/HEAD/test/test.vrscene --------------------------------------------------------------------------------