Api session event editor customgeometry add: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
API Endpoint | API Endpoint: editorcustomgeometry/add. | ||
API Endpoint name is Api session event editor customgeometry add | API Endpoint name is Api session event editor customgeometry add. | ||
Use this endpoint to Add a [[Custom Geometry]] to render. | |||
{|class=wikitable | {|class=wikitable | ||
| Line 52: | Line 54: | ||
|} | |} | ||
===Example POST=== | ===Example POST=== | ||
Curl | Curl example POST: | ||
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorcustomgeometry/add/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ 1.0, 2.0 ], -65536, "Texture Name 1", true, true ]' | <syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorcustomgeometry/add/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ 1.0, 2.0 ], -65536, "Texture Name 1", true, true ]' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Curl | Curl example multi item POST: | ||
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorcustomgeometry/add/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ [ 1.0, 2.0 ], [ 3.0, 4.0 ], [ 5.0, 6.0 ] ], [ -65536, -16744448, -16776961 ], [ "Texture Name 1", "Texture Name 2", "Texture Name 3" ], [ true, false, true ], [ true, false, true ] ]' | <syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorcustomgeometry/add/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ [ 1.0, 2.0 ], [ 3.0, 4.0 ], [ 5.0, 6.0 ] ], [ -65536, -16744448, -16776961 ], [ "Texture Name 1", "Texture Name 2", "Texture Name 3" ], [ true, false, true ], [ true, false, true ] ]' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
JavaScript | JavaScript example POST: | ||
<syntaxhighlight lang="text" copy>var options = { | <syntaxhighlight lang="text" copy>var options = { | ||
| Line 73: | Line 75: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{article end|seealso=*[[Api session event editor customgeometry]] | {{article end|seealso=*[[Api session event editor customgeometry]] | ||
}} | }} | ||
[[Category:API]] | [[Category:API]] | ||
Revision as of 11:23, 10 April 2026
API Endpoint: editorcustomgeometry/add.
API Endpoint name is Api session event editor customgeometry add.
Use this endpoint to Add a Custom Geometry to render.
| Name | Importance | Type | Description | Values |
|---|---|---|---|---|
| 0 | REQUIRED | (Floating point number or multiple values in array [1.0, 2.0, 3.0] or matrix [[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]) | 3D Data array | |
| 1 | REQUIRED | (TColor or multiple values in array [a, b, c]) | Color | |
| 2 | REQUIRED | (String or multiple values in array ["a", "b", "c"]) | Texture Names | |
| 3 | REQUIRED | (boolean or multiple values in array [a, b, c]) | Use absolute height from 3D Data array | |
| 4 | REQUIRED | (boolean or multiple values in array [a, b, c]) | Render both the front and back face |
Response Codes
| Response Code: | Description |
|---|---|
| 200 | Integer[] (Integer array) |
| 300-600 | Codes Overview |
Example POST
Curl example POST:
curl 'https://engine.tygron.com/api/session/event/editorcustomgeometry/add/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ 1.0, 2.0 ], -65536, "Texture Name 1", true, true ]'Curl example multi item POST:
curl 'https://engine.tygron.com/api/session/event/editorcustomgeometry/add/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ [ 1.0, 2.0 ], [ 3.0, 4.0 ], [ 5.0, 6.0 ] ], [ -65536, -16744448, -16776961 ], [ "Texture Name 1", "Texture Name 2", "Texture Name 3" ], [ true, false, true ], [ true, false, true ] ]'JavaScript example POST:
var options = {
method: "POST",
headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
body: '[ [ 1.0, 2.0 ], -65536, "Texture Name 1", true, true ]'
};
fetch("https://engine.tygron.com/api/session/event/editorcustomgeometry/add/", options)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));