💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 新增物体 ``` var added_object_id = MyVirtualScene.api.object.add({ 'id' : '', 'name': '立方体 Cube', 'type': 'cube', 'style': { 'type' : 'Lambert', 'default' : 'CommonStyle_01-obj', 'emphasis': 'CommonStyle_01', 'shadow': { 'cast' : false, 'receive': false, }, }, 'property': { 'parent': '', 'group' : '', }, 'size': { 'x': 20, 'y': 20, 'z': 20, }, 'align': { 'center_point': 'bottom', // center,bottom,top,[] }, 'position': { 'x': 50, 'y': 60, 'z': 0, }, }) ``` * 根据物体数据,在场景中新增物体。 * 返回值为新增物体的ID,如果物体数据中为空,则系统会自动命名一个UID。 <br />