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.

23 lines
403 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  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. $resContents = $response->getBody()->getContents();
  10. $resData = json_decode($resContents);
  11. print_r($resData->data->scene);
  12. ?>