|
23323 | 23323 | "minimum": 0 |
23324 | 23324 | } |
23325 | 23325 | }, |
| 23326 | + { |
| 23327 | + "in": "query", |
| 23328 | + "name": "order_independent_transparency", |
| 23329 | + "description": "Enables nicer visuals for transparent surfaces. This slows down rendering, so it's off by default.", |
| 23330 | + "schema": { |
| 23331 | + "type": "boolean" |
| 23332 | + } |
| 23333 | + }, |
23326 | 23334 | { |
23327 | 23335 | "in": "query", |
23328 | 23336 | "name": "pool", |
|
26738 | 26746 | "type": "number", |
26739 | 26747 | "format": "money-usd" |
26740 | 26748 | }, |
26741 | | - "deleted": { |
26742 | | - "description": "Always true for a deleted object.", |
26743 | | - "default": false, |
26744 | | - "type": "boolean" |
26745 | | - }, |
26746 | 26749 | "id": { |
26747 | 26750 | "description": "Unique identifier for the object.", |
26748 | 26751 | "type": "string" |
|
30320 | 30323 | "enum": [ |
30321 | 30324 | "void" |
30322 | 30325 | ] |
| 30326 | + }, |
| 30327 | + { |
| 30328 | + "description": "Unknown.", |
| 30329 | + "type": "string", |
| 30330 | + "enum": [ |
| 30331 | + "unknown" |
| 30332 | + ] |
30323 | 30333 | } |
30324 | 30334 | ] |
30325 | 30335 | }, |
|
31252 | 31262 | "enum": [ |
31253 | 31263 | "bye" |
31254 | 31264 | ] |
| 31265 | + }, |
| 31266 | + { |
| 31267 | + "description": "Interrupt the current prompt that is being processed.", |
| 31268 | + "type": "string", |
| 31269 | + "enum": [ |
| 31270 | + "interrupt" |
| 31271 | + ] |
31255 | 31272 | } |
31256 | 31273 | ] |
31257 | 31274 | }, |
|
33740 | 33757 | "type": "number", |
33741 | 33758 | "format": "float" |
33742 | 33759 | }, |
| 33760 | + "backface_color": { |
| 33761 | + "nullable": true, |
| 33762 | + "description": "Color of the backface", |
| 33763 | + "allOf": [ |
| 33764 | + { |
| 33765 | + "$ref": "#/components/schemas/Color" |
| 33766 | + } |
| 33767 | + ] |
| 33768 | + }, |
33743 | 33769 | "color": { |
33744 | 33770 | "description": "Color of the new material", |
33745 | 33771 | "allOf": [ |
|
36122 | 36148 | "required": [ |
36123 | 36149 | "type" |
36124 | 36150 | ] |
| 36151 | + }, |
| 36152 | + { |
| 36153 | + "description": "Render transparent surfaces more accurately, but this might make rendering slower. Because it can interfere with runtime performance, it defaults to false.", |
| 36154 | + "type": "object", |
| 36155 | + "properties": { |
| 36156 | + "enabled": { |
| 36157 | + "nullable": true, |
| 36158 | + "description": "Enables or disables OIT. If not given, toggles it.", |
| 36159 | + "type": "boolean" |
| 36160 | + }, |
| 36161 | + "type": { |
| 36162 | + "type": "string", |
| 36163 | + "enum": [ |
| 36164 | + "set_order_independent_transparency" |
| 36165 | + ] |
| 36166 | + } |
| 36167 | + }, |
| 36168 | + "required": [ |
| 36169 | + "type" |
| 36170 | + ] |
36125 | 36171 | } |
36126 | 36172 | ] |
36127 | 36173 | }, |
|
38810 | 38856 | "data", |
38811 | 38857 | "type" |
38812 | 38858 | ] |
| 38859 | + }, |
| 38860 | + { |
| 38861 | + "type": "object", |
| 38862 | + "properties": { |
| 38863 | + "data": { |
| 38864 | + "$ref": "#/components/schemas/SetOrderIndependentTransparency" |
| 38865 | + }, |
| 38866 | + "type": { |
| 38867 | + "type": "string", |
| 38868 | + "enum": [ |
| 38869 | + "set_order_independent_transparency" |
| 38870 | + ] |
| 38871 | + } |
| 38872 | + }, |
| 38873 | + "required": [ |
| 38874 | + "data", |
| 38875 | + "type" |
| 38876 | + ] |
38813 | 38877 | } |
38814 | 38878 | ] |
38815 | 38879 | }, |
|
41034 | 41098 | "enum": [ |
41035 | 41099 | "year" |
41036 | 41100 | ] |
| 41101 | + }, |
| 41102 | + { |
| 41103 | + "description": "Don't use.", |
| 41104 | + "type": "string", |
| 41105 | + "enum": [ |
| 41106 | + "unknown" |
| 41107 | + ] |
41037 | 41108 | } |
41038 | 41109 | ] |
41039 | 41110 | }, |
|
42161 | 42232 | "description": "The response from the `SetObjectTransform` command.", |
42162 | 42233 | "type": "object" |
42163 | 42234 | }, |
| 42235 | + "SetOrderIndependentTransparency": { |
| 42236 | + "description": "The response from the 'SetOrderIndependentTransparency'.", |
| 42237 | + "type": "object", |
| 42238 | + "properties": { |
| 42239 | + "enabled": { |
| 42240 | + "description": "Is it now enabled, or disabled?", |
| 42241 | + "type": "boolean" |
| 42242 | + } |
| 42243 | + }, |
| 42244 | + "required": [ |
| 42245 | + "enabled" |
| 42246 | + ] |
| 42247 | + }, |
42164 | 42248 | "SetSceneUnits": { |
42165 | 42249 | "description": "The response from the `SetSceneUnits` endpoint.", |
42166 | 42250 | "type": "object" |
|
0 commit comments