Autogen Class List

reduz 2014-05-06 07:00:58 -03:00
parent dfcc953a32
commit d3d885f97a
13 changed files with 128 additions and 66 deletions

@ -17,6 +17,7 @@ Global scope constants and variables.
* [TranslationServer](class_translationserver) **TranslationServer**
* [TranslationServer](class_translationserver) **TS**
* [Input](class_input) **Input**
* [InputMap](class_inputmap) **InputMap**
* [SceneIO](class_sceneio) **SceneIO**
* [VisualServer](class_visualserver) **VisualServer**
* [VisualServer](class_visualserver) **VS**

@ -37,7 +37,7 @@ Base class of anything 2D.
* void **[draw_style_box](#draw_style_box)** **(** [StyleBox](class_stylebox) style_box, [Rect2](class_rect2) rect **)**
* void **[draw_primitive](#draw_primitive)** **(** [Vector2Array](class_vector2array) points, [ColorArray](class_colorarray) colors, [Vector2Array](class_vector2array) uvs=Array(), [Texture](class_texture) texture=Object(), [float](class_float) width=1 **)**
* void **[draw_polygon](#draw_polygon)** **(** [Vector2Array](class_vector2array) points, [ColorArray](class_colorarray) colors, [Vector2Array](class_vector2array) uvs, [Texture](class_texture) texture=Array(), [float](class_float) arg4=Object() **)**
* void **[draw_colored_polygon](#draw_colored_polygon)** **(** [Vector2Array](class_vector2array) points, [ColorArray](class_colorarray) color, [Vector2Array](class_vector2array) uvs, [Texture](class_texture) texture=Array(), [float](class_float) arg4=Object() **)**
* void **[draw_colored_polygon](#draw_colored_polygon)** **(** [Vector2Array](class_vector2array) points, [Color](class_color) color, [Vector2Array](class_vector2array) uvs=Array(), [Texture](class_texture) texture=Object() **)**
* void **[draw_string](#draw_string)** **(** [Font](class_font) font, [Vector2](class_vector2) pos, [String](class_string) text, [Color](class_color) modulate=Color(1,1,1,1), [int](class_int) clip_w=-1 **)**
* [float](class_float) **[draw_char](#draw_char)** **(** [Font](class_font) font, [Vector2](class_vector2) pos, [String](class_string) char, [String](class_string) next, [Color](class_color) modulate=Color(1,1,1,1) **)**
* void **[draw_set_transform](#draw_set_transform)** **(** [Vector2](class_vector2) pos, [float](class_float) rot, [Vector2](class_vector2) scale **)**
@ -205,7 +205,7 @@ Draw a custom primitive, 1 point for a point, 2 points for a line, 3 points for
Draw a polygon of any amount of points, convex or concave.
#### <a name="draw_colored_polygon">draw_colored_polygon</a>
* void **draw&#95;colored&#95;polygon** **(** [Vector2Array](class_vector2array) points, [ColorArray](class_colorarray) color, [Vector2Array](class_vector2array) uvs, [Texture](class_texture) texture=Array(), [float](class_float) arg4=Object() **)**
* void **draw&#95;colored&#95;polygon** **(** [Vector2Array](class_vector2array) points, [Color](class_color) color, [Vector2Array](class_vector2array) uvs=Array(), [Texture](class_texture) texture=Object() **)**
Draw a colored polygon of any amount of points, convex or concave.

@ -14,7 +14,8 @@ Directional Light, such as the Sun or the Moon.
### Numeric Constants
* **SHADOW_ORTHOGONAL** = **0**
* **SHADOW_PERSPECTIVE** = **1**
* **SHADOW_PARALLEL_SPLIT** = **2**
* **SHADOW_PARALLEL_2_SPLITS** = **2**
* **SHADOW_PARALLEL_4_SPLITS** = **3**
* **SHADOW_PARAM_MAX_DISTANCE** = **0**
* **SHADOW_PARAM_PSSM_SPLIT_WEIGHT** = **1**
* **SHADOW_PARAM_PSSM_ZOFFSET_SCALE** = **2**

@ -6,7 +6,7 @@
### Member Functions
* [int](class_int) **[connect](#connect)** **(** [String](class_string) host, [int](class_int) port **)**
* [int](class_int) **[connect](#connect)** **(** [String](class_string) host, [int](class_int) port, [bool](class_bool) use_ssl=false, [bool](class_bool) arg3=true **)**
* void **[set&#95;connection](#set_connection)** **(** [StreamPeer](class_streampeer) connection **)**
* [int](class_int) **[request](#request)** **(** [int](class_int) method, [String](class_string) url, [StringArray](class_stringarray) headers, [String](class_string) body="" **)**
* [int](class_int) **[send&#95;body&#95;text](#send_body_text)** **(** [String](class_string) body **)**
@ -19,6 +19,8 @@
* [Dictionary](class_dictionary) **[get&#95;response&#95;headers&#95;as&#95;dictionary](#get_response_headers_as_dictionary)** **(** **)**
* [int](class_int) **[get&#95;response&#95;body&#95;length](#get_response_body_length)** **(** **)** const
* [RawArray](class_rawarray) **[read&#95;response&#95;body&#95;chunk](#read_response_body_chunk)** **(** **)**
* void **[set&#95;blocking&#95;mode](#set_blocking_mode)** **(** [bool](class_bool) enabled **)**
* [bool](class_bool) **[is&#95;blocking&#95;mode&#95;enabled](#is_blocking_mode_enabled)** **(** **)** const
* [int](class_int) **[get&#95;status](#get_status)** **(** **)** const
* [int](class_int) **[poll](#poll)** **(** **)**
@ -41,6 +43,7 @@
* **STATUS_REQUESTING** = **6**
* **STATUS_BODY** = **7**
* **STATUS_CONNECTION_ERROR** = **8**
* **STATUS_SSL_HANDSHAKE_ERROR** = **9**
* **RESPONSE_CONTINUE** = **100**
* **RESPONSE_SWITCHING_PROTOCOLS** = **101**
* **RESPONSE_PROCESSING** = **102**

@ -5,5 +5,20 @@
### Brief Description
Singleton that manages actions.
### Member Functions
* [bool](class_bool) **[has&#95;action](#has_action)** **(** [String](class_string) action **)** const
* [int](class_int) **[get&#95;action&#95;id](#get_action_id)** **(** [String](class_string) action **)** const
* [String](class_string) **[get&#95;action&#95;from&#95;id](#get_action_from_id)** **(** [int](class_int) id **)** const
* void **[add&#95;action](#add_action)** **(** [String](class_string) action **)**
* void **[erase&#95;action](#erase_action)** **(** [String](class_string) action **)**
* void **[action&#95;add&#95;event](#action_add_event)** **(** [String](class_string) action, [InputEvent](class_inputevent) event **)**
* [bool](class_bool) **[action&#95;has&#95;event](#action_has_event)** **(** [String](class_string) action, [InputEvent](class_inputevent) event **)**
* void **[action&#95;erase&#95;event](#action_erase_event)** **(** [String](class_string) action, [InputEvent](class_inputevent) event **)**
* [bool](class_bool) **[get&#95;action&#95;list](#get_action_list)** **(** [String](class_string) action **)**
* [bool](class_bool) **[event&#95;is&#95;action](#event_is_action)** **(** [InputEvent](class_inputevent) event, [String](class_string) action **)** const
* void **[load&#95;from&#95;globals](#load_from_globals)** **(** **)**
### Description
Singleton that manages actions. InputMap has a list of the actions used in InputEvent, which can be modified.
### Member Function Description

@ -6,7 +6,9 @@
### Member Functions
* void **[add&#95;piece](#add_piece)** **(** [Vector2](class_vector2) ofs, [Texture](class_texture) texture **)**
* [int](class_int) **[add&#95;piece](#add_piece)** **(** [Vector2](class_vector2) ofs, [Texture](class_texture) texture **)**
* void **[set&#95;piece&#95;offset](#set_piece_offset)** **(** [int](class_int) idx, [Vector2](class_vector2) ofs **)**
* void **[set&#95;piece&#95;texture](#set_piece_texture)** **(** [int](class_int) idx, [Texture](class_texture) texture **)**
* void **[set&#95;size](#set_size)** **(** [Vector2](class_vector2) size **)**
* void **[clear](#clear)** **(** **)**
* [int](class_int) **[get&#95;piece&#95;count](#get_piece_count)** **(** **)** const

@ -44,66 +44,66 @@
| | [CollisionObject2D](class_collisionobject2d) | | [PackedScene](class_packedscene) | | [StaticBody](class_staticbody) |
| | [CollisionPolygon2D](class_collisionpolygon2d) | | [PacketPeer](class_packetpeer) | | [StaticBody2D](class_staticbody2d) |
| | [CollisionShape](class_collisionshape) | | [PacketPeerStream](class_packetpeerstream) | | [StreamPeer](class_streampeer) |
| | [CollisionShape2D](class_collisionshape2d) | | [Panel](class_panel) | | [StreamPeerTCP](class_streampeertcp) |
| | [Color](class_color) | | [PanelContainer](class_panelcontainer) | | [StreamPlayer](class_streamplayer) |
| | [ColorArray](class_colorarray) | | [ParallaxBackground](class_parallaxbackground) | | [String](class_string) |
| | [ColorPicker](class_colorpicker) | | [ParallaxLayer](class_parallaxlayer) | | [StringArray](class_stringarray) |
| | [ColorPickerButton](class_colorpickerbutton) | | [ParticleAttractor2D](class_particleattractor2d) | | [StyleBox](class_stylebox) |
| | [ConcavePolygonShape](class_concavepolygonshape) | | [ParticleSystemMaterial](class_particlesystemmaterial) | | [StyleBoxEmpty](class_styleboxempty) |
| | [ConcavePolygonShape2D](class_concavepolygonshape2d) | | [Particles](class_particles) | | [StyleBoxFlat](class_styleboxflat) |
| | [ConfigFile](class_configfile) | | [Particles2D](class_particles2d) | | [StyleBoxImageMask](class_styleboximagemask) |
| | [ConfirmationDialog](class_confirmationdialog) | | [Path](class_path) | | [StyleBoxTexture](class_styleboxtexture) |
| | [Container](class_container) | | [Path2D](class_path2d) | | [SurfaceTool](class_surfacetool) |
| | [Control](class_control) | | [PathFollow](class_pathfollow) | **T** | [TCP_Server](class_tcp_server) |
| | [ConvexPolygonShape](class_convexpolygonshape) | | [PathRemap](class_pathremap) | | [TabContainer](class_tabcontainer) |
| | [ConvexPolygonShape2D](class_convexpolygonshape2d) | | [Performance](class_performance) | | [Tabs](class_tabs) |
| | [CubeMap](class_cubemap) | | [Physics2DDirectBodyState](class_physics2ddirectbodystate) | | [TestCube](class_testcube) |
| | [Curve2D](class_curve2d) | | [Physics2DDirectBodyStateSW](class_physics2ddirectbodystatesw) | | [TextEdit](class_textedit) |
| | [Curve3D](class_curve3d) | | [Physics2DDirectSpaceState](class_physics2ddirectspacestate) | | [Texture](class_texture) |
| **D** | [DampedSpringJoint2D](class_dampedspringjoint2d) | | [Physics2DServer](class_physics2dserver) | | [TextureButton](class_texturebutton) |
| | [Dictionary](class_dictionary) | | [Physics2DServerSW](class_physics2dserversw) | | [TextureFrame](class_textureframe) |
| | [DirectionalLight](class_directionallight) | | [Physics2DShapeQueryResult](class_physics2dshapequeryresult) | | [TextureProgress](class_textureprogress) |
| | [Directory](class_directory) | | [PhysicsBody](class_physicsbody) | | [Theme](class_theme) |
| **E** | [EditableShape](class_editableshape) | | [PhysicsBody2D](class_physicsbody2d) | | [Thread](class_thread) |
| | [EditableSphere](class_editablesphere) | | [PhysicsDirectBodyState](class_physicsdirectbodystate) | | [TileMap](class_tilemap) |
| | [EditorImportPlugin](class_editorimportplugin) | | [PhysicsDirectBodyStateSW](class_physicsdirectbodystatesw) | | [TileSet](class_tileset) |
| | [EditorPlugin](class_editorplugin) | | [PhysicsDirectSpaceState](class_physicsdirectspacestate) | | [Timer](class_timer) |
| | [EditorScenePostImport](class_editorscenepostimport) | | [PhysicsServer](class_physicsserver) | | [TouchScreenButton](class_touchscreenbutton) |
| | [EditorScript](class_editorscript) | | [PhysicsServerSW](class_physicsserversw) | | [Transform](class_transform) |
| | [EmptyControl](class_emptycontrol) | | [PhysicsShapeQueryResult](class_physicsshapequeryresult) | | [Translation](class_translation) |
| | [Environment](class_environment) | | [PinJoint2D](class_pinjoint2d) | | [TranslationServer](class_translationserver) |
| | [EventPlayer](class_eventplayer) | | [Plane](class_plane) | | [Tree](class_tree) |
| | [EventStream](class_eventstream) | | [PlaneShape](class_planeshape) | | [TreeItem](class_treeitem) |
| | [EventStreamChibi](class_eventstreamchibi) | | [Popup](class_popup) | **U** | [UnshadedMaterial](class_unshadedmaterial) |
| **F** | [File](class_file) | | [PopupDialog](class_popupdialog) | **V** | [VBoxContainer](class_vboxcontainer) |
| | [FileDialog](class_filedialog) | | [PopupMenu](class_popupmenu) | | [VButtonArray](class_vbuttonarray) |
| | [FixedMaterial](class_fixedmaterial) | | [PopupPanel](class_popuppanel) | | [VScrollBar](class_vscrollbar) |
| | [FollowCamera](class_followcamera) | | [Portal](class_portal) | | [VSeparator](class_vseparator) |
| | [Font](class_font) | | [Position2D](class_position2d) | | [VSlider](class_vslider) |
| | [FuncRef](class_funcref) | | [Position3D](class_position3d) | | [VSplitContainer](class_vsplitcontainer) |
| **G** | [GDNativeClass](class_gdnativeclass) | | [ProgressBar](class_progressbar) | | [Vector2](class_vector2) |
| | [GDScript](class_gdscript) | | [ProximityGroup](class_proximitygroup) | | [Vector2Array](class_vector2array) |
| | [Geometry](class_geometry) | **Q** | [Quad](class_quad) | | [Vector3](class_vector3) |
| | [GeometryInstance](class_geometryinstance) | | [Quat](class_quat) | | [Vector3Array](class_vector3array) |
| | [Globals](class_globals) | **R** | [RID](class_rid) | | [VideoPlayer](class_videoplayer) |
| | [GridContainer](class_gridcontainer) | | [Range](class_range) | | [VideoStream](class_videostream) |
| | [GridMap](class_gridmap) | | [RawArray](class_rawarray) | | [VideoStreamTheora](class_videostreamtheora) |
| | [GrooveJoint2D](class_groovejoint2d) | | [RayCast](class_raycast) | | [Viewport](class_viewport) |
| **H** | [HBoxContainer](class_hboxcontainer) | | [RayCast2D](class_raycast2d) | | [ViewportSprite](class_viewportsprite) |
| | [HButtonArray](class_hbuttonarray) | | [RayShape](class_rayshape) | | [VisibilityEnabler](class_visibilityenabler) |
| | [HScrollBar](class_hscrollbar) | | [RayShape2D](class_rayshape2d) | | [VisibilityEnabler2D](class_visibilityenabler2d) |
| | [HSeparator](class_hseparator) | | [RealArray](class_realarray) | | [VisibilityNotifier](class_visibilitynotifier) |
| | [HSlider](class_hslider) | | [Rect2](class_rect2) | | [VisibilityNotifier2D](class_visibilitynotifier2d) |
| | [HSplitContainer](class_hsplitcontainer) | | [RectangleShape2D](class_rectangleshape2d) | | [VisualInstance](class_visualinstance) |
| | [HTTPClient](class_httpclient) | | [Reference](class_reference) | | [VisualServer](class_visualserver) |
| **I** | [IP](class_ip) | | [ReferenceFrame](class_referenceframe) | **W** | [WindowDialog](class_windowdialog) |
| | [IP_Unix](class_ip_unix) | | [RegEx](class_regex) | | [World](class_world) |
| | [Image](class_image) | | [RemoteTransform2D](class_remotetransform2d) | | [World2D](class_world2d) |
| | [ImagePathFinder](class_imagepathfinder) | | [RenderTargetTexture](class_rendertargettexture) | | [WorldEnvironment](class_worldenvironment) |
| | [ImageTexture](class_imagetexture) | | [Resource](class_resource) | **X** | [XMLParser](class_xmlparser) |
| | [Input](class_input) | | [ResourceImportMetadata](class_resourceimportmetadata) | **b** | [bool](class_bool) |
| | [InputDefault](class_inputdefault) | | [ResourceInteractiveLoader](class_resourceinteractiveloader) | **f** | [float](class_float) |
| | [InputEvent](class_inputevent) | | [ResourceLoader](class_resourceloader) | **i** | [int](class_int) |
| | [InputEventAction](class_inputeventaction) | | [ResourcePreloader](class_resourcepreloader) |
| | [CollisionShape2D](class_collisionshape2d) | | [Panel](class_panel) | | [StreamPeerSSL](class_streampeerssl) |
| | [Color](class_color) | | [PanelContainer](class_panelcontainer) | | [StreamPeerTCP](class_streampeertcp) |
| | [ColorArray](class_colorarray) | | [ParallaxBackground](class_parallaxbackground) | | [StreamPlayer](class_streamplayer) |
| | [ColorPicker](class_colorpicker) | | [ParallaxLayer](class_parallaxlayer) | | [String](class_string) |
| | [ColorPickerButton](class_colorpickerbutton) | | [ParticleAttractor2D](class_particleattractor2d) | | [StringArray](class_stringarray) |
| | [ConcavePolygonShape](class_concavepolygonshape) | | [ParticleSystemMaterial](class_particlesystemmaterial) | | [StyleBox](class_stylebox) |
| | [ConcavePolygonShape2D](class_concavepolygonshape2d) | | [Particles](class_particles) | | [StyleBoxEmpty](class_styleboxempty) |
| | [ConfigFile](class_configfile) | | [Particles2D](class_particles2d) | | [StyleBoxFlat](class_styleboxflat) |
| | [ConfirmationDialog](class_confirmationdialog) | | [Path](class_path) | | [StyleBoxImageMask](class_styleboximagemask) |
| | [Container](class_container) | | [Path2D](class_path2d) | | [StyleBoxTexture](class_styleboxtexture) |
| | [Control](class_control) | | [PathFollow](class_pathfollow) | | [SurfaceTool](class_surfacetool) |
| | [ConvexPolygonShape](class_convexpolygonshape) | | [PathRemap](class_pathremap) | **T** | [TCP_Server](class_tcp_server) |
| | [ConvexPolygonShape2D](class_convexpolygonshape2d) | | [Performance](class_performance) | | [TabContainer](class_tabcontainer) |
| | [CubeMap](class_cubemap) | | [Physics2DDirectBodyState](class_physics2ddirectbodystate) | | [Tabs](class_tabs) |
| | [Curve2D](class_curve2d) | | [Physics2DDirectBodyStateSW](class_physics2ddirectbodystatesw) | | [TestCube](class_testcube) |
| | [Curve3D](class_curve3d) | | [Physics2DDirectSpaceState](class_physics2ddirectspacestate) | | [TextEdit](class_textedit) |
| **D** | [DampedSpringJoint2D](class_dampedspringjoint2d) | | [Physics2DServer](class_physics2dserver) | | [Texture](class_texture) |
| | [Dictionary](class_dictionary) | | [Physics2DServerSW](class_physics2dserversw) | | [TextureButton](class_texturebutton) |
| | [DirectionalLight](class_directionallight) | | [Physics2DShapeQueryResult](class_physics2dshapequeryresult) | | [TextureFrame](class_textureframe) |
| | [Directory](class_directory) | | [PhysicsBody](class_physicsbody) | | [TextureProgress](class_textureprogress) |
| **E** | [EditableShape](class_editableshape) | | [PhysicsBody2D](class_physicsbody2d) | | [Theme](class_theme) |
| | [EditableSphere](class_editablesphere) | | [PhysicsDirectBodyState](class_physicsdirectbodystate) | | [Thread](class_thread) |
| | [EditorImportPlugin](class_editorimportplugin) | | [PhysicsDirectBodyStateSW](class_physicsdirectbodystatesw) | | [TileMap](class_tilemap) |
| | [EditorPlugin](class_editorplugin) | | [PhysicsDirectSpaceState](class_physicsdirectspacestate) | | [TileSet](class_tileset) |
| | [EditorScenePostImport](class_editorscenepostimport) | | [PhysicsServer](class_physicsserver) | | [Timer](class_timer) |
| | [EditorScript](class_editorscript) | | [PhysicsServerSW](class_physicsserversw) | | [TouchScreenButton](class_touchscreenbutton) |
| | [EmptyControl](class_emptycontrol) | | [PhysicsShapeQueryResult](class_physicsshapequeryresult) | | [Transform](class_transform) |
| | [Environment](class_environment) | | [PinJoint2D](class_pinjoint2d) | | [Translation](class_translation) |
| | [EventPlayer](class_eventplayer) | | [Plane](class_plane) | | [TranslationServer](class_translationserver) |
| | [EventStream](class_eventstream) | | [PlaneShape](class_planeshape) | | [Tree](class_tree) |
| | [EventStreamChibi](class_eventstreamchibi) | | [Popup](class_popup) | | [TreeItem](class_treeitem) |
| **F** | [File](class_file) | | [PopupDialog](class_popupdialog) | **U** | [UnshadedMaterial](class_unshadedmaterial) |
| | [FileDialog](class_filedialog) | | [PopupMenu](class_popupmenu) | **V** | [VBoxContainer](class_vboxcontainer) |
| | [FixedMaterial](class_fixedmaterial) | | [PopupPanel](class_popuppanel) | | [VButtonArray](class_vbuttonarray) |
| | [FollowCamera](class_followcamera) | | [Portal](class_portal) | | [VScrollBar](class_vscrollbar) |
| | [Font](class_font) | | [Position2D](class_position2d) | | [VSeparator](class_vseparator) |
| | [FuncRef](class_funcref) | | [Position3D](class_position3d) | | [VSlider](class_vslider) |
| **G** | [GDNativeClass](class_gdnativeclass) | | [ProgressBar](class_progressbar) | | [VSplitContainer](class_vsplitcontainer) |
| | [GDScript](class_gdscript) | | [ProximityGroup](class_proximitygroup) | | [Vector2](class_vector2) |
| | [Geometry](class_geometry) | **Q** | [Quad](class_quad) | | [Vector2Array](class_vector2array) |
| | [GeometryInstance](class_geometryinstance) | | [Quat](class_quat) | | [Vector3](class_vector3) |
| | [Globals](class_globals) | **R** | [RID](class_rid) | | [Vector3Array](class_vector3array) |
| | [GridContainer](class_gridcontainer) | | [Range](class_range) | | [VideoPlayer](class_videoplayer) |
| | [GridMap](class_gridmap) | | [RawArray](class_rawarray) | | [VideoStream](class_videostream) |
| | [GrooveJoint2D](class_groovejoint2d) | | [RayCast](class_raycast) | | [VideoStreamTheora](class_videostreamtheora) |
| **H** | [HBoxContainer](class_hboxcontainer) | | [RayCast2D](class_raycast2d) | | [Viewport](class_viewport) |
| | [HButtonArray](class_hbuttonarray) | | [RayShape](class_rayshape) | | [ViewportSprite](class_viewportsprite) |
| | [HScrollBar](class_hscrollbar) | | [RayShape2D](class_rayshape2d) | | [VisibilityEnabler](class_visibilityenabler) |
| | [HSeparator](class_hseparator) | | [RealArray](class_realarray) | | [VisibilityEnabler2D](class_visibilityenabler2d) |
| | [HSlider](class_hslider) | | [Rect2](class_rect2) | | [VisibilityNotifier](class_visibilitynotifier) |
| | [HSplitContainer](class_hsplitcontainer) | | [RectangleShape2D](class_rectangleshape2d) | | [VisibilityNotifier2D](class_visibilitynotifier2d) |
| | [HTTPClient](class_httpclient) | | [Reference](class_reference) | | [VisualInstance](class_visualinstance) |
| **I** | [IP](class_ip) | | [ReferenceFrame](class_referenceframe) | | [VisualServer](class_visualserver) |
| | [IP_Unix](class_ip_unix) | | [RegEx](class_regex) | **W** | [WindowDialog](class_windowdialog) |
| | [Image](class_image) | | [RemoteTransform2D](class_remotetransform2d) | | [World](class_world) |
| | [ImagePathFinder](class_imagepathfinder) | | [RenderTargetTexture](class_rendertargettexture) | | [World2D](class_world2d) |
| | [ImageTexture](class_imagetexture) | | [Resource](class_resource) | | [WorldEnvironment](class_worldenvironment) |
| | [Input](class_input) | | [ResourceImportMetadata](class_resourceimportmetadata) | **X** | [XMLParser](class_xmlparser) |
| | [InputDefault](class_inputdefault) | | [ResourceInteractiveLoader](class_resourceinteractiveloader) | **b** | [bool](class_bool) |
| | [InputEvent](class_inputevent) | | [ResourceLoader](class_resourceloader) | **f** | [float](class_float) |
| | [InputEventAction](class_inputeventaction) | | [ResourcePreloader](class_resourcepreloader) | **i** | [int](class_int) |
| | [InputEventJoyButton](class_inputeventjoybutton) | | [ResourceSaver](class_resourcesaver) |
| | [InputEventJoyMotion](class_inputeventjoymotion) | | [RichTextLabel](class_richtextlabel) |

@ -24,6 +24,8 @@ A [Resource](class_resource) that contains vertex-array based geometry.
* void **[surface&#95;set&#95;name](#surface_set_name)** **(** [int](class_int) surf_idx, [String](class_string) name **)**
* [String](class_string) **[surface&#95;get&#95;name](#surface_get_name)** **(** [int](class_int) surf_idx **)** const
* void **[center&#95;geometry](#center_geometry)** **(** **)**
* void **[set&#95;custom&#95;aabb](#set_custom_aabb)** **(** [AABB](class_aabb) aabb **)**
* [AABB](class_aabb) **[get&#95;custom&#95;aabb](#get_custom_aabb)** **(** **)** const
### Numeric Constants
* **NO_INDEX_ARRAY** = **-1** - Default value used for index_array_len when no indices are present.

@ -14,10 +14,12 @@ Base container control for popups and dialogs.
* [bool](class_bool) **[is&#95;exclusive](#is_exclusive)** **(** **)** const
### Signals
* **popup&#95;hide** **(** **)**
* **about&#95;to&#95;show** **(** **)**
### Numeric Constants
* **NOTIFICATION_POST_POPUP** = **80**
* **NOTIFICATION_POPUP_HIDE** = **81**
### Description
PopUp is a base [Control](class_control) used to show dialogs and popups. It's a subwindow and modal by default (see [Control](class_control)) and has helpers for custom popup behavior.

@ -5,5 +5,11 @@
### Brief Description
General purpose progres bar.
### Member Functions
* void **[set&#95;percent&#95;visible](#set_percent_visible)** **(** [bool](class_bool) visible **)**
* [bool](class_bool) **[is&#95;percent&#95;visible](#is_percent_visible)** **(** **)** const
### Description
General purpose progres bar. Shows fill percentage from right to left.
### Member Function Description

20
class_streampeerssl.md Normal file

@ -0,0 +1,20 @@
# StreamPeerSSL
####**Inherits:** [StreamPeer](class_streampeer)
####**Category:** Core
### Brief Description
### Member Functions
* [int](class_int) **[accept](#accept)** **(** [StreamPeer](class_streampeer) stream **)**
* [int](class_int) **[connect](#connect)** **(** [StreamPeer](class_streampeer) stream, [bool](class_bool) validate_certs=false, [String](class_string) for_hostname="" **)**
* [int](class_int) **[get&#95;status](#get_status)** **(** **)** const
* void **[disconnect](#disconnect)** **(** **)**
### Numeric Constants
* **STATUS_DISCONNECTED** = **0**
* **STATUS_CONNECTED** = **1**
* **STATUS_ERROR_NO_CERTIFICATE** = **2**
* **STATUS_ERROR_HOSTNAME_MISMATCH** = **3**
### Member Function Description

@ -8,10 +8,17 @@ TCP Stream peer.
### Member Functions
* [int](class_int) **[connect](#connect)** **(** [String](class_string) host, [int](class_int) ip **)**
* [bool](class_bool) **[is&#95;connected](#is_connected)** **(** **)** const
* [int](class_int) **[get&#95;status](#get_status)** **(** **)** const
* [String](class_string) **[get&#95;connected&#95;host](#get_connected_host)** **(** **)** const
* [int](class_int) **[get&#95;connected&#95;port](#get_connected_port)** **(** **)** const
* void **[disconnect](#disconnect)** **(** **)**
### Numeric Constants
* **STATUS_NONE** = **0**
* **STATUS_CONNECTING** = **1**
* **STATUS_CONNECTED** = **2**
* **STATUS_ERROR** = **3**
### Description
TCP Stream peer. This object can be used to connect to TCP servers, or also is returned by a tcp server.

@ -22,6 +22,9 @@ Node for 2D Tile-Based games.
* [bool](class_bool) **[is&#95;cell&#95;y&#95;flipped](#is_cell_y_flipped)** **(** [int](class_int) x, [int](class_int) y **)** const
* void **[clear](#clear)** **(** **)**
### Signals
* **settings&#95;changed** **(** **)**
### Numeric Constants
* **INVALID_CELL** = **-1** - Returned when a cell doesn't exist.