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

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