{ "Drawing": { "id": 3, "documentation": "\n\nProvides functionality for drawing objects in the flight scene.\n\n\nFor drawing and interacting with the user interface, see the UI service.\n\n", "procedures": { "AddLine": { "id": 1, "parameters": [ { "name": "start", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } }, { "name": "end", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } }, { "name": "referenceFrame", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } }, { "name": "visible", "type": { "code": "BOOL" }, "default_value": "AQ==" } ], "return_type": { "code": "CLASS", "service": "Drawing", "name": "Line" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nDraw a line in the scene.\n\nPosition of the start of the line.\nPosition of the end of the line.\nReference frame that the positions are in.\nWhether the line is visible.\n" }, "AddDirection": { "id": 2, "parameters": [ { "name": "direction", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } }, { "name": "referenceFrame", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } }, { "name": "length", "type": { "code": "FLOAT" }, "default_value": "AAAgQQ==" }, { "name": "visible", "type": { "code": "BOOL" }, "default_value": "AQ==" } ], "return_type": { "code": "CLASS", "service": "Drawing", "name": "Line" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nDraw a direction vector in the scene, starting from the origin of the given reference frame.\n\nDirection to draw the line in.\nReference frame that the direction is in and defines the start position.\nThe length of the line.\nWhether the line is visible.\n" }, "AddDirectionFromCom": { "id": 3, "parameters": [ { "name": "direction", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } }, { "name": "referenceFrame", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } }, { "name": "length", "type": { "code": "FLOAT" }, "default_value": "AAAgQQ==" }, { "name": "visible", "type": { "code": "BOOL" }, "default_value": "AQ==" } ], "return_type": { "code": "CLASS", "service": "Drawing", "name": "Line" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nDraw a direction vector in the scene, from the center of mass of the active vessel.\n\nDirection to draw the line in.\nReference frame that the direction is in.\nThe length of the line.\nWhether the line is visible.\n" }, "AddPolygon": { "id": 4, "parameters": [ { "name": "vertices", "type": { "code": "LIST", "types": [ { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } ] } }, { "name": "referenceFrame", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } }, { "name": "visible", "type": { "code": "BOOL" }, "default_value": "AQ==" } ], "return_type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nDraw a polygon in the scene, defined by a list of vertices.\n\nVertices of the polygon.\nReference frame that the vertices are in.\nWhether the polygon is visible.\n" }, "AddText": { "id": 5, "parameters": [ { "name": "text", "type": { "code": "STRING" } }, { "name": "referenceFrame", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } }, { "name": "position", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } }, { "name": "rotation", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } }, { "name": "visible", "type": { "code": "BOOL" }, "default_value": "AQ==" } ], "return_type": { "code": "CLASS", "service": "Drawing", "name": "Text" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nDraw text in the scene.\n\nThe string to draw.\nReference frame that the text position is in.\nPosition of the text.\nRotation of the text, as a quaternion.\nWhether the text is visible.\n" }, "Clear": { "id": 6, "parameters": [ { "name": "clientOnly", "type": { "code": "BOOL" }, "default_value": "AA==" } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nRemove all objects being drawn.\n\nIf true, only remove objects created by the calling client.\n" }, "Line_Remove": { "id": 7, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nRemove the object.\n\n" }, "Line_get_Start": { "id": 8, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "return_type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nStart position of the line.\n\n" }, "Line_set_Start": { "id": 9, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } }, { "name": "value", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nStart position of the line.\n\n" }, "Line_get_End": { "id": 10, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "return_type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nEnd position of the line.\n\n" }, "Line_set_End": { "id": 11, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } }, { "name": "value", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nEnd position of the line.\n\n" }, "Line_get_Color": { "id": 12, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "return_type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the color\n\n" }, "Line_set_Color": { "id": 13, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } }, { "name": "value", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the color\n\n" }, "Line_get_Thickness": { "id": 14, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "return_type": { "code": "FLOAT" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the thickness\n\n" }, "Line_set_Thickness": { "id": 15, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } }, { "name": "value", "type": { "code": "FLOAT" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the thickness\n\n" }, "Line_get_ReferenceFrame": { "id": 16, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "return_type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nReference frame for the positions of the object.\n\n" }, "Line_set_ReferenceFrame": { "id": 17, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } }, { "name": "value", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nReference frame for the positions of the object.\n\n" }, "Line_get_Visible": { "id": 18, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "return_type": { "code": "BOOL" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nWhether the object is visible.\n\n" }, "Line_set_Visible": { "id": 19, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } }, { "name": "value", "type": { "code": "BOOL" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nWhether the object is visible.\n\n" }, "Line_get_Material": { "id": 20, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } } ], "return_type": { "code": "STRING" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nMaterial used to render the object.\nCreates the material from a shader with the given name.\n\n" }, "Line_set_Material": { "id": 21, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Line" } }, { "name": "value", "type": { "code": "STRING" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nMaterial used to render the object.\nCreates the material from a shader with the given name.\n\n" }, "Polygon_Remove": { "id": 22, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nRemove the object.\n\n" }, "Polygon_get_Vertices": { "id": 23, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } } ], "return_type": { "code": "LIST", "types": [ { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nVertices for the polygon.\n\n" }, "Polygon_set_Vertices": { "id": 24, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } }, { "name": "value", "type": { "code": "LIST", "types": [ { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nVertices for the polygon.\n\n" }, "Polygon_get_Color": { "id": 25, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } } ], "return_type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the color\n\n" }, "Polygon_set_Color": { "id": 26, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } }, { "name": "value", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the color\n\n" }, "Polygon_get_Thickness": { "id": 27, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } } ], "return_type": { "code": "FLOAT" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the thickness\n\n" }, "Polygon_set_Thickness": { "id": 28, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } }, { "name": "value", "type": { "code": "FLOAT" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the thickness\n\n" }, "Polygon_get_ReferenceFrame": { "id": 29, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } } ], "return_type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nReference frame for the positions of the object.\n\n" }, "Polygon_set_ReferenceFrame": { "id": 30, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } }, { "name": "value", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nReference frame for the positions of the object.\n\n" }, "Polygon_get_Visible": { "id": 31, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } } ], "return_type": { "code": "BOOL" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nWhether the object is visible.\n\n" }, "Polygon_set_Visible": { "id": 32, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } }, { "name": "value", "type": { "code": "BOOL" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nWhether the object is visible.\n\n" }, "Polygon_get_Material": { "id": 33, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } } ], "return_type": { "code": "STRING" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nMaterial used to render the object.\nCreates the material from a shader with the given name.\n\n" }, "Polygon_set_Material": { "id": 34, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Polygon" } }, { "name": "value", "type": { "code": "STRING" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nMaterial used to render the object.\nCreates the material from a shader with the given name.\n\n" }, "Text_static_AvailableFonts": { "id": 35, "parameters": [], "return_type": { "code": "LIST", "types": [ { "code": "STRING" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nA list of all available fonts.\n\n" }, "Text_Remove": { "id": 36, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nRemove the object.\n\n" }, "Text_get_Position": { "id": 37, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nPosition of the text.\n\n" }, "Text_set_Position": { "id": 38, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nPosition of the text.\n\n" }, "Text_get_Rotation": { "id": 39, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nRotation of the text as a quaternion.\n\n" }, "Text_set_Rotation": { "id": 40, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nRotation of the text as a quaternion.\n\n" }, "Text_get_Content": { "id": 41, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "STRING" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nThe text string\n\n" }, "Text_set_Content": { "id": 42, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "STRING" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nThe text string\n\n" }, "Text_get_Font": { "id": 43, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "STRING" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nName of the font\n\n" }, "Text_set_Font": { "id": 44, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "STRING" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nName of the font\n\n" }, "Text_get_Size": { "id": 45, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "SINT32" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nFont size.\n\n" }, "Text_set_Size": { "id": 46, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "SINT32" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nFont size.\n\n" }, "Text_get_CharacterSize": { "id": 47, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "FLOAT" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nCharacter size.\n\n" }, "Text_set_CharacterSize": { "id": 48, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "FLOAT" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nCharacter size.\n\n" }, "Text_get_Style": { "id": 49, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "ENUMERATION", "service": "UI", "name": "FontStyle" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nFont style.\n\n" }, "Text_set_Style": { "id": 50, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "ENUMERATION", "service": "UI", "name": "FontStyle" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nFont style.\n\n" }, "Text_get_Alignment": { "id": 51, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "ENUMERATION", "service": "UI", "name": "TextAlignment" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nAlignment.\n\n" }, "Text_set_Alignment": { "id": 52, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "ENUMERATION", "service": "UI", "name": "TextAlignment" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nAlignment.\n\n" }, "Text_get_LineSpacing": { "id": 53, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "FLOAT" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nLine spacing.\n\n" }, "Text_set_LineSpacing": { "id": 54, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "FLOAT" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nLine spacing.\n\n" }, "Text_get_Anchor": { "id": 55, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "ENUMERATION", "service": "UI", "name": "TextAnchor" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nAnchor.\n\n" }, "Text_set_Anchor": { "id": 56, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "ENUMERATION", "service": "UI", "name": "TextAnchor" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nAnchor.\n\n" }, "Text_get_Color": { "id": 57, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the color\n\n" }, "Text_set_Color": { "id": 58, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "TUPLE", "types": [ { "code": "DOUBLE" }, { "code": "DOUBLE" }, { "code": "DOUBLE" } ] } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nSet the color\n\n" }, "Text_get_ReferenceFrame": { "id": 59, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nReference frame for the positions of the object.\n\n" }, "Text_set_ReferenceFrame": { "id": 60, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "CLASS", "service": "SpaceCenter", "name": "ReferenceFrame" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nReference frame for the positions of the object.\n\n" }, "Text_get_Visible": { "id": 61, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "BOOL" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nWhether the object is visible.\n\n" }, "Text_set_Visible": { "id": 62, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "BOOL" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nWhether the object is visible.\n\n" }, "Text_get_Material": { "id": 63, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } } ], "return_type": { "code": "STRING" }, "return_is_nullable": false, "game_scenes": [ "FLIGHT" ], "documentation": "\n\nMaterial used to render the object.\nCreates the material from a shader with the given name.\n\n" }, "Text_set_Material": { "id": 64, "parameters": [ { "name": "this", "type": { "code": "CLASS", "service": "Drawing", "name": "Text" } }, { "name": "value", "type": { "code": "STRING" } } ], "game_scenes": [ "FLIGHT" ], "documentation": "\n\nMaterial used to render the object.\nCreates the material from a shader with the given name.\n\n" } }, "classes": { "Line": { "documentation": "\n\nA line. Created using .\n\n" }, "Polygon": { "documentation": "\n\nA polygon. Created using .\n\n" }, "Text": { "documentation": "\n\nText. Created using .\n\n" } }, "enumerations": {}, "exceptions": {} } }