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
471 B

  1. <?php
  2. namespace Blobt\Luxcore\scene;
  3. use GuzzleHttp\Client;
  4. include dirname(dirname(__FILE__)) . "/vendor/autoload.php";
  5. // 创建一个场景
  6. // $scene = new Scene();
  7. $client = new Client();
  8. $response = $client->get("deep3d.backend-api.dev.com/test/render-task");
  9. // echo $response->getBody()->getContents();
  10. $resStr = $response->getBody()->getContents();
  11. $resContents = json_decode($resStr);
  12. print_r($resContents->data->scene->model->childsParams[0]);
  13. ?>