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
23 lines
403 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");
|
|
|
|
$resContents = $response->getBody()->getContents();
|
|
|
|
$resData = json_decode($resContents);
|
|
|
|
print_r($resData->data->scene);
|
|
|
|
?>
|