Blender渲染
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
502 B

  1. <?php
  2. namespace Blobt\Luxcore\scene;
  3. include dirname(dirname(__FILE__)) . "/vendor/autoload.php";
  4. //设置打印渲染引擎的配置参数
  5. $renderEngine = new RenderEngine();
  6. echo $renderEngine;
  7. //设置打印GPU渲染设备的配置参数
  8. $openCL = new OpenCL();
  9. echo $openCL;
  10. //设置打印GPU渲染设备的配置参数
  11. $native = new Native(['threadsCount' => 64]);
  12. echo $native;
  13. //设置打印光线跟踪的配置参数
  14. $path = new Path(['glossinessthreshold' => 0.999]);
  15. echo $path;
  16. ?>