tencentcloud-sdk-python-ai3d 3.1.91__tar.gz → 3.1.101__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/setup.py +1 -1
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud/ai3d/v20250513/ai3d_client.py +48 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud/ai3d/v20250513/ai3d_client_async.py +38 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud/ai3d/v20250513/models.py +225 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud_sdk_python_ai3d.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ai3d-3.1.101/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ai3d-3.1.91/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/README.rst +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud/ai3d/__init__.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud/ai3d/v20250513/__init__.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud/ai3d/v20250513/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud_sdk_python_ai3d.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud_sdk_python_ai3d.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.91 → tencentcloud_sdk_python_ai3d-3.1.101}/tencentcloud_sdk_python_ai3d.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ai3d
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.101
|
|
4
4
|
Summary: Tencent Cloud Ai3d SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ai3d',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.101,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ai3d SDK for Python',
|
|
@@ -49,6 +49,30 @@ class Ai3dClient(AbstractClient):
|
|
|
49
49
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
50
50
|
|
|
51
51
|
|
|
52
|
+
def DescribeAutoRiggingJob(self, request):
|
|
53
|
+
r"""3D模型绑骨蒙皮接口,基于混元大模型,根据输入的人物或动物模型进行绑骨蒙皮,输出带骨骼信息的3D模型。
|
|
54
|
+
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
55
|
+
|
|
56
|
+
:param request: Request instance for DescribeAutoRiggingJob.
|
|
57
|
+
:type request: :class:`tencentcloud.ai3d.v20250513.models.DescribeAutoRiggingJobRequest`
|
|
58
|
+
:rtype: :class:`tencentcloud.ai3d.v20250513.models.DescribeAutoRiggingJobResponse`
|
|
59
|
+
|
|
60
|
+
"""
|
|
61
|
+
try:
|
|
62
|
+
params = request._serialize()
|
|
63
|
+
headers = request.headers
|
|
64
|
+
body = self.call("DescribeAutoRiggingJob", params, headers=headers)
|
|
65
|
+
response = json.loads(body)
|
|
66
|
+
model = models.DescribeAutoRiggingJobResponse()
|
|
67
|
+
model._deserialize(response["Response"])
|
|
68
|
+
return model
|
|
69
|
+
except Exception as e:
|
|
70
|
+
if isinstance(e, TencentCloudSDKException):
|
|
71
|
+
raise
|
|
72
|
+
else:
|
|
73
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
74
|
+
|
|
75
|
+
|
|
52
76
|
def DescribeHunyuanTo3DMotionJob(self, request):
|
|
53
77
|
r"""查询组件生成任务。
|
|
54
78
|
|
|
@@ -238,6 +262,30 @@ class Ai3dClient(AbstractClient):
|
|
|
238
262
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
239
263
|
|
|
240
264
|
|
|
265
|
+
def SubmitAutoRiggingJob(self, request):
|
|
266
|
+
r"""3D模型绑骨蒙皮接口,基于混元大模型,根据输入的人物或动物模型进行绑骨蒙皮,输出带骨骼信息的3D模型。
|
|
267
|
+
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
268
|
+
|
|
269
|
+
:param request: Request instance for SubmitAutoRiggingJob.
|
|
270
|
+
:type request: :class:`tencentcloud.ai3d.v20250513.models.SubmitAutoRiggingJobRequest`
|
|
271
|
+
:rtype: :class:`tencentcloud.ai3d.v20250513.models.SubmitAutoRiggingJobResponse`
|
|
272
|
+
|
|
273
|
+
"""
|
|
274
|
+
try:
|
|
275
|
+
params = request._serialize()
|
|
276
|
+
headers = request.headers
|
|
277
|
+
body = self.call("SubmitAutoRiggingJob", params, headers=headers)
|
|
278
|
+
response = json.loads(body)
|
|
279
|
+
model = models.SubmitAutoRiggingJobResponse()
|
|
280
|
+
model._deserialize(response["Response"])
|
|
281
|
+
return model
|
|
282
|
+
except Exception as e:
|
|
283
|
+
if isinstance(e, TencentCloudSDKException):
|
|
284
|
+
raise
|
|
285
|
+
else:
|
|
286
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
287
|
+
|
|
288
|
+
|
|
241
289
|
def SubmitHunyuan3DPartJob(self, request):
|
|
242
290
|
r"""输入3D模型文件后,根据模型结构自动进行组件识别生成。
|
|
243
291
|
|
|
@@ -43,6 +43,25 @@ class Ai3dClient(AbstractClient):
|
|
|
43
43
|
|
|
44
44
|
return await self.call_and_deserialize(**kwargs)
|
|
45
45
|
|
|
46
|
+
async def DescribeAutoRiggingJob(
|
|
47
|
+
self,
|
|
48
|
+
request: models.DescribeAutoRiggingJobRequest,
|
|
49
|
+
opts: Dict = None,
|
|
50
|
+
) -> models.DescribeAutoRiggingJobResponse:
|
|
51
|
+
"""
|
|
52
|
+
3D模型绑骨蒙皮接口,基于混元大模型,根据输入的人物或动物模型进行绑骨蒙皮,输出带骨骼信息的3D模型。
|
|
53
|
+
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
kwargs = {}
|
|
57
|
+
kwargs["action"] = "DescribeAutoRiggingJob"
|
|
58
|
+
kwargs["params"] = request._serialize()
|
|
59
|
+
kwargs["resp_cls"] = models.DescribeAutoRiggingJobResponse
|
|
60
|
+
kwargs["headers"] = request.headers
|
|
61
|
+
kwargs["opts"] = opts or {}
|
|
62
|
+
|
|
63
|
+
return await self.call_and_deserialize(**kwargs)
|
|
64
|
+
|
|
46
65
|
async def DescribeHunyuanTo3DMotionJob(
|
|
47
66
|
self,
|
|
48
67
|
request: models.DescribeHunyuanTo3DMotionJobRequest,
|
|
@@ -192,6 +211,25 @@ class Ai3dClient(AbstractClient):
|
|
|
192
211
|
|
|
193
212
|
return await self.call_and_deserialize(**kwargs)
|
|
194
213
|
|
|
214
|
+
async def SubmitAutoRiggingJob(
|
|
215
|
+
self,
|
|
216
|
+
request: models.SubmitAutoRiggingJobRequest,
|
|
217
|
+
opts: Dict = None,
|
|
218
|
+
) -> models.SubmitAutoRiggingJobResponse:
|
|
219
|
+
"""
|
|
220
|
+
3D模型绑骨蒙皮接口,基于混元大模型,根据输入的人物或动物模型进行绑骨蒙皮,输出带骨骼信息的3D模型。
|
|
221
|
+
默认提供1个并发,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后,才能开始处理下一个任务。
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
kwargs = {}
|
|
225
|
+
kwargs["action"] = "SubmitAutoRiggingJob"
|
|
226
|
+
kwargs["params"] = request._serialize()
|
|
227
|
+
kwargs["resp_cls"] = models.SubmitAutoRiggingJobResponse
|
|
228
|
+
kwargs["headers"] = request.headers
|
|
229
|
+
kwargs["opts"] = opts or {}
|
|
230
|
+
|
|
231
|
+
return await self.call_and_deserialize(**kwargs)
|
|
232
|
+
|
|
195
233
|
async def SubmitHunyuan3DPartJob(
|
|
196
234
|
self,
|
|
197
235
|
request: models.SubmitHunyuan3DPartJobRequest,
|
|
@@ -112,6 +112,135 @@ class Convert3DFormatResponse(AbstractModel):
|
|
|
112
112
|
self._RequestId = params.get("RequestId")
|
|
113
113
|
|
|
114
114
|
|
|
115
|
+
class DescribeAutoRiggingJobRequest(AbstractModel):
|
|
116
|
+
r"""DescribeAutoRiggingJob请求参数结构体
|
|
117
|
+
|
|
118
|
+
"""
|
|
119
|
+
|
|
120
|
+
def __init__(self):
|
|
121
|
+
r"""
|
|
122
|
+
:param _JobId: <p>任务ID。</p>
|
|
123
|
+
:type JobId: str
|
|
124
|
+
"""
|
|
125
|
+
self._JobId = None
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
def JobId(self):
|
|
129
|
+
r"""<p>任务ID。</p>
|
|
130
|
+
:rtype: str
|
|
131
|
+
"""
|
|
132
|
+
return self._JobId
|
|
133
|
+
|
|
134
|
+
@JobId.setter
|
|
135
|
+
def JobId(self, JobId):
|
|
136
|
+
self._JobId = JobId
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
def _deserialize(self, params):
|
|
140
|
+
self._JobId = params.get("JobId")
|
|
141
|
+
memeber_set = set(params.keys())
|
|
142
|
+
for name, value in vars(self).items():
|
|
143
|
+
property_name = name[1:]
|
|
144
|
+
if property_name in memeber_set:
|
|
145
|
+
memeber_set.remove(property_name)
|
|
146
|
+
if len(memeber_set) > 0:
|
|
147
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
class DescribeAutoRiggingJobResponse(AbstractModel):
|
|
152
|
+
r"""DescribeAutoRiggingJob返回参数结构体
|
|
153
|
+
|
|
154
|
+
"""
|
|
155
|
+
|
|
156
|
+
def __init__(self):
|
|
157
|
+
r"""
|
|
158
|
+
:param _Status: <p>任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功 示例值:RUN。</p>
|
|
159
|
+
:type Status: str
|
|
160
|
+
:param _ErrorCode: <p>错误码。</p>
|
|
161
|
+
:type ErrorCode: str
|
|
162
|
+
:param _ErrorMessage: <p>错误信息。</p>
|
|
163
|
+
:type ErrorMessage: str
|
|
164
|
+
:param _ResultFile3Ds: <p>生成文件的URL地址,有效期1天。</p>
|
|
165
|
+
:type ResultFile3Ds: list of File3D
|
|
166
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
167
|
+
:type RequestId: str
|
|
168
|
+
"""
|
|
169
|
+
self._Status = None
|
|
170
|
+
self._ErrorCode = None
|
|
171
|
+
self._ErrorMessage = None
|
|
172
|
+
self._ResultFile3Ds = None
|
|
173
|
+
self._RequestId = None
|
|
174
|
+
|
|
175
|
+
@property
|
|
176
|
+
def Status(self):
|
|
177
|
+
r"""<p>任务状态。WAIT:等待中,RUN:执行中,FAIL:任务失败,DONE:任务成功 示例值:RUN。</p>
|
|
178
|
+
:rtype: str
|
|
179
|
+
"""
|
|
180
|
+
return self._Status
|
|
181
|
+
|
|
182
|
+
@Status.setter
|
|
183
|
+
def Status(self, Status):
|
|
184
|
+
self._Status = Status
|
|
185
|
+
|
|
186
|
+
@property
|
|
187
|
+
def ErrorCode(self):
|
|
188
|
+
r"""<p>错误码。</p>
|
|
189
|
+
:rtype: str
|
|
190
|
+
"""
|
|
191
|
+
return self._ErrorCode
|
|
192
|
+
|
|
193
|
+
@ErrorCode.setter
|
|
194
|
+
def ErrorCode(self, ErrorCode):
|
|
195
|
+
self._ErrorCode = ErrorCode
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
def ErrorMessage(self):
|
|
199
|
+
r"""<p>错误信息。</p>
|
|
200
|
+
:rtype: str
|
|
201
|
+
"""
|
|
202
|
+
return self._ErrorMessage
|
|
203
|
+
|
|
204
|
+
@ErrorMessage.setter
|
|
205
|
+
def ErrorMessage(self, ErrorMessage):
|
|
206
|
+
self._ErrorMessage = ErrorMessage
|
|
207
|
+
|
|
208
|
+
@property
|
|
209
|
+
def ResultFile3Ds(self):
|
|
210
|
+
r"""<p>生成文件的URL地址,有效期1天。</p>
|
|
211
|
+
:rtype: list of File3D
|
|
212
|
+
"""
|
|
213
|
+
return self._ResultFile3Ds
|
|
214
|
+
|
|
215
|
+
@ResultFile3Ds.setter
|
|
216
|
+
def ResultFile3Ds(self, ResultFile3Ds):
|
|
217
|
+
self._ResultFile3Ds = ResultFile3Ds
|
|
218
|
+
|
|
219
|
+
@property
|
|
220
|
+
def RequestId(self):
|
|
221
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
222
|
+
:rtype: str
|
|
223
|
+
"""
|
|
224
|
+
return self._RequestId
|
|
225
|
+
|
|
226
|
+
@RequestId.setter
|
|
227
|
+
def RequestId(self, RequestId):
|
|
228
|
+
self._RequestId = RequestId
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
def _deserialize(self, params):
|
|
232
|
+
self._Status = params.get("Status")
|
|
233
|
+
self._ErrorCode = params.get("ErrorCode")
|
|
234
|
+
self._ErrorMessage = params.get("ErrorMessage")
|
|
235
|
+
if params.get("ResultFile3Ds") is not None:
|
|
236
|
+
self._ResultFile3Ds = []
|
|
237
|
+
for item in params.get("ResultFile3Ds"):
|
|
238
|
+
obj = File3D()
|
|
239
|
+
obj._deserialize(item)
|
|
240
|
+
self._ResultFile3Ds.append(obj)
|
|
241
|
+
self._RequestId = params.get("RequestId")
|
|
242
|
+
|
|
243
|
+
|
|
115
244
|
class DescribeHunyuanTo3DMotionJobRequest(AbstractModel):
|
|
116
245
|
r"""DescribeHunyuanTo3DMotionJob请求参数结构体
|
|
117
246
|
|
|
@@ -1342,6 +1471,102 @@ class QueryHunyuanTo3DRapidJobResponse(AbstractModel):
|
|
|
1342
1471
|
self._RequestId = params.get("RequestId")
|
|
1343
1472
|
|
|
1344
1473
|
|
|
1474
|
+
class SubmitAutoRiggingJobRequest(AbstractModel):
|
|
1475
|
+
r"""SubmitAutoRiggingJob请求参数结构体
|
|
1476
|
+
|
|
1477
|
+
"""
|
|
1478
|
+
|
|
1479
|
+
def __init__(self):
|
|
1480
|
+
r"""
|
|
1481
|
+
:param _File3D: <p>人形角色需采用标准姿态(A Pose 或 T Pose),尽量保持无动作状态。<br>模型中不应包含人体以外的组件(如武器、坐骑、翅膀等),避免松散衣物、配饰及复杂发型。<br>非人形角色建议上传二足、四足、鸟类等单一生命体模型,姿态应尽量简洁,无夸张或复杂动作,且不支持动作模版生成。3D模型文件必选其一,参考值:<br>FBX:3D模型文件,格式为FBX,文件大小不超过60Mb;<br>GLB:3D模型文件,格式为GLB,文件大小不超过60Mb;</p>
|
|
1482
|
+
:type File3D: :class:`tencentcloud.ai3d.v20250513.models.InputFile3D`
|
|
1483
|
+
:param _MotionType: <p>预设动作类型,参考值:</p><ol><li>回旋踢 </li><li>左勾拳 </li><li>蓄力攻击 </li><li>蓄力出拳 </li><li>二连击打 </li><li>二连击打-2 </li><li>后撤 </li><li>受击 </li><li>受击-2 </li><li>受击-3 </li><li>受击倒地-1 </li><li>受击倒地-2 </li><li>落地 </li><li>沮丧 </li><li>割喉 </li><li>刺拳 </li><li>连续击打 </li><li>踢腿 </li><li>侧踢 </li><li>打太极 </li><li>后空翻 </li><li>蹲姿转体 </li><li>走路-1 </li><li>走路-2 </li><li>走路-3 </li><li>待机-1 </li><li>待机-2 </li><li>街舞 </li><li>扭扭舞 </li><li>左转弯 </li><li>右转弯 </li><li>慢跑 </li><li>慢跑-2 </li><li>奔跑 </li><li>冲刺跑-1 </li><li>冲刺跑-2 </li><li>冲刺跑-3 </li><li>原地跳-1 </li><li>滑铲 </li><li>向前大跳 </li><li>向前大跳-2 </li><li>跨越 </li><li>恐吓 </li><li>向前跌倒 </li><li>右转 </li><li>原地跳-2 </li><li>转身 </li><li>发送冲击波</li></ol>
|
|
1484
|
+
:type MotionType: int
|
|
1485
|
+
"""
|
|
1486
|
+
self._File3D = None
|
|
1487
|
+
self._MotionType = None
|
|
1488
|
+
|
|
1489
|
+
@property
|
|
1490
|
+
def File3D(self):
|
|
1491
|
+
r"""<p>人形角色需采用标准姿态(A Pose 或 T Pose),尽量保持无动作状态。<br>模型中不应包含人体以外的组件(如武器、坐骑、翅膀等),避免松散衣物、配饰及复杂发型。<br>非人形角色建议上传二足、四足、鸟类等单一生命体模型,姿态应尽量简洁,无夸张或复杂动作,且不支持动作模版生成。3D模型文件必选其一,参考值:<br>FBX:3D模型文件,格式为FBX,文件大小不超过60Mb;<br>GLB:3D模型文件,格式为GLB,文件大小不超过60Mb;</p>
|
|
1492
|
+
:rtype: :class:`tencentcloud.ai3d.v20250513.models.InputFile3D`
|
|
1493
|
+
"""
|
|
1494
|
+
return self._File3D
|
|
1495
|
+
|
|
1496
|
+
@File3D.setter
|
|
1497
|
+
def File3D(self, File3D):
|
|
1498
|
+
self._File3D = File3D
|
|
1499
|
+
|
|
1500
|
+
@property
|
|
1501
|
+
def MotionType(self):
|
|
1502
|
+
r"""<p>预设动作类型,参考值:</p><ol><li>回旋踢 </li><li>左勾拳 </li><li>蓄力攻击 </li><li>蓄力出拳 </li><li>二连击打 </li><li>二连击打-2 </li><li>后撤 </li><li>受击 </li><li>受击-2 </li><li>受击-3 </li><li>受击倒地-1 </li><li>受击倒地-2 </li><li>落地 </li><li>沮丧 </li><li>割喉 </li><li>刺拳 </li><li>连续击打 </li><li>踢腿 </li><li>侧踢 </li><li>打太极 </li><li>后空翻 </li><li>蹲姿转体 </li><li>走路-1 </li><li>走路-2 </li><li>走路-3 </li><li>待机-1 </li><li>待机-2 </li><li>街舞 </li><li>扭扭舞 </li><li>左转弯 </li><li>右转弯 </li><li>慢跑 </li><li>慢跑-2 </li><li>奔跑 </li><li>冲刺跑-1 </li><li>冲刺跑-2 </li><li>冲刺跑-3 </li><li>原地跳-1 </li><li>滑铲 </li><li>向前大跳 </li><li>向前大跳-2 </li><li>跨越 </li><li>恐吓 </li><li>向前跌倒 </li><li>右转 </li><li>原地跳-2 </li><li>转身 </li><li>发送冲击波</li></ol>
|
|
1503
|
+
:rtype: int
|
|
1504
|
+
"""
|
|
1505
|
+
return self._MotionType
|
|
1506
|
+
|
|
1507
|
+
@MotionType.setter
|
|
1508
|
+
def MotionType(self, MotionType):
|
|
1509
|
+
self._MotionType = MotionType
|
|
1510
|
+
|
|
1511
|
+
|
|
1512
|
+
def _deserialize(self, params):
|
|
1513
|
+
if params.get("File3D") is not None:
|
|
1514
|
+
self._File3D = InputFile3D()
|
|
1515
|
+
self._File3D._deserialize(params.get("File3D"))
|
|
1516
|
+
self._MotionType = params.get("MotionType")
|
|
1517
|
+
memeber_set = set(params.keys())
|
|
1518
|
+
for name, value in vars(self).items():
|
|
1519
|
+
property_name = name[1:]
|
|
1520
|
+
if property_name in memeber_set:
|
|
1521
|
+
memeber_set.remove(property_name)
|
|
1522
|
+
if len(memeber_set) > 0:
|
|
1523
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1524
|
+
|
|
1525
|
+
|
|
1526
|
+
|
|
1527
|
+
class SubmitAutoRiggingJobResponse(AbstractModel):
|
|
1528
|
+
r"""SubmitAutoRiggingJob返回参数结构体
|
|
1529
|
+
|
|
1530
|
+
"""
|
|
1531
|
+
|
|
1532
|
+
def __init__(self):
|
|
1533
|
+
r"""
|
|
1534
|
+
:param _JobId: <p>任务ID(有效期24小时)</p>
|
|
1535
|
+
:type JobId: str
|
|
1536
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1537
|
+
:type RequestId: str
|
|
1538
|
+
"""
|
|
1539
|
+
self._JobId = None
|
|
1540
|
+
self._RequestId = None
|
|
1541
|
+
|
|
1542
|
+
@property
|
|
1543
|
+
def JobId(self):
|
|
1544
|
+
r"""<p>任务ID(有效期24小时)</p>
|
|
1545
|
+
:rtype: str
|
|
1546
|
+
"""
|
|
1547
|
+
return self._JobId
|
|
1548
|
+
|
|
1549
|
+
@JobId.setter
|
|
1550
|
+
def JobId(self, JobId):
|
|
1551
|
+
self._JobId = JobId
|
|
1552
|
+
|
|
1553
|
+
@property
|
|
1554
|
+
def RequestId(self):
|
|
1555
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1556
|
+
:rtype: str
|
|
1557
|
+
"""
|
|
1558
|
+
return self._RequestId
|
|
1559
|
+
|
|
1560
|
+
@RequestId.setter
|
|
1561
|
+
def RequestId(self, RequestId):
|
|
1562
|
+
self._RequestId = RequestId
|
|
1563
|
+
|
|
1564
|
+
|
|
1565
|
+
def _deserialize(self, params):
|
|
1566
|
+
self._JobId = params.get("JobId")
|
|
1567
|
+
self._RequestId = params.get("RequestId")
|
|
1568
|
+
|
|
1569
|
+
|
|
1345
1570
|
class SubmitHunyuan3DPartJobRequest(AbstractModel):
|
|
1346
1571
|
r"""SubmitHunyuan3DPartJob请求参数结构体
|
|
1347
1572
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ai3d
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.101
|
|
4
4
|
Summary: Tencent Cloud Ai3d SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.91
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|