Api session items particleemitters: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (23 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
API Endpoint: /api/session/items/particleemitters/ | |||
Default Query: | Default Query: | ||
| Line 11: | Line 9: | ||
"id" : 4, | "id" : 4, | ||
"name" : "Chimney Smoke (Medium)", | "name" : "Chimney Smoke (Medium)", | ||
"version" : | "version" : 1, | ||
"wind" : true, | "wind" : true, | ||
"zBuffer" : false | "zBuffer" : false | ||
| Line 19: | Line 17: | ||
"id" : 5, | "id" : 5, | ||
"name" : "Chimney Smoke (Large)", | "name" : "Chimney Smoke (Large)", | ||
"version" : | "version" : 2, | ||
"wind" : true, | "wind" : true, | ||
"zBuffer" : false | "zBuffer" : false | ||
| Line 26: | Line 24: | ||
version=100: | version=100: | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/?version=100&token=API_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/?version=100&token=API_TOKEN</syntaxhighlight> | ||
== | ==Get Queries== | ||
attributes: | |||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/attributes/?token=API_TOKEN</syntaxhighlight> | |||
max version: | max version: | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/version/?token=API_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/version/?token=API_TOKEN</syntaxhighlight> | ||
count: | |||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/ | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/count/?token=API_TOKEN</syntaxhighlight> | ||
==Formats== | ==Formats== | ||
HTML: | HTML: | ||
| Line 46: | Line 46: | ||
ZIPSMILE: | ZIPSMILE: | ||
<syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/?f=ZIPSMILE&token=API_TOKEN</syntaxhighlight> | <syntaxhighlight lang="text" copy>https://engine.tygron.com/api/session/items/particleemitters/?f=ZIPSMILE&token=API_TOKEN</syntaxhighlight> | ||
==Api Model ParticleEmitterModel== | |||
API Model description of ParticleEmitterModel | |||
{|class=wikitable | |||
!Name | |||
!Type | |||
!Description | |||
|- | |||
| fileName | |||
| String | |||
| | |||
|- | |||
| hidden | |||
| boolean | |||
| | |||
|- | |||
| id | |||
| int | |||
| | |||
|- | |||
| name | |||
| String | |||
| | |||
|- | |||
| version | |||
| int | |||
| | |||
|- | |||
| wind | |||
| boolean | |||
| | |||
|- | |||
| zBuffer | |||
| boolean | |||
| | |||
|} | |||
{{article end|seealso=*[[Api Content Items]] | {{article end|seealso=*[[Api Content Items]] | ||
*[[Api session event editor ]] | *[[Api session event editor]] | ||
}} | }} | ||
[[Category:API]] | [[Category:API]] | ||
[[Category:Items]] | |||
Latest revision as of 07:14, 7 July 2026
API Endpoint: /api/session/items/particleemitters/
Default Query:
https://engine.tygron.com/api/session/items/particleemitters/?f=JSON&token=API_TOKENExample Response:
[ {
"fileName" : "mediumChimneySmoke",
"hidden" : false,
"id" : 4,
"name" : "Chimney Smoke (Medium)",
"version" : 1,
"wind" : true,
"zBuffer" : false
}, {
"fileName" : "largeChimneySmoke",
"hidden" : false,
"id" : 5,
"name" : "Chimney Smoke (Large)",
"version" : 2,
"wind" : true,
"zBuffer" : false
} ]Limit Queries
version=100:
https://engine.tygron.com/api/session/items/particleemitters/?version=100&token=API_TOKENGet Queries
attributes:
https://engine.tygron.com/api/session/items/particleemitters/attributes/?token=API_TOKENmax version:
https://engine.tygron.com/api/session/items/particleemitters/version/?token=API_TOKENcount:
https://engine.tygron.com/api/session/items/particleemitters/count/?token=API_TOKENFormats
HTML:
https://engine.tygron.com/api/session/items/particleemitters/?f=HTML&token=API_TOKENJSON:
https://engine.tygron.com/api/session/items/particleemitters/?f=JSON&token=API_TOKENCSV:
https://engine.tygron.com/api/session/items/particleemitters/?f=CSV&token=API_TOKENSSV:
https://engine.tygron.com/api/session/items/particleemitters/?f=SSV&token=API_TOKENSMILE:
https://engine.tygron.com/api/session/items/particleemitters/?f=SMILE&token=API_TOKENZIPJSON:
https://engine.tygron.com/api/session/items/particleemitters/?f=ZIPJSON&token=API_TOKENZIPSMILE:
https://engine.tygron.com/api/session/items/particleemitters/?f=ZIPSMILE&token=API_TOKENApi Model ParticleEmitterModel
API Model description of ParticleEmitterModel
| Name | Type | Description |
|---|---|---|
| fileName | String | |
| hidden | boolean | |
| id | int | |
| name | String | |
| version | int | |
| wind | boolean | |
| zBuffer | boolean |