Autogen Class List

reduz 2014-05-30 07:00:25 -03:00
parent 2b2fbec54a
commit b975c3bd90
10 changed files with 242 additions and 137 deletions

14
class_animatedsprite3d.md Normal file

@ -0,0 +1,14 @@
# AnimatedSprite3D
####**Inherits:** [SpriteBase3D](class_spritebase3d)
####**Category:** Core
### Brief Description
### Member Functions
* void **[set_sprite_frames](#set_sprite_frames)** **(** [SpriteFrames](class_spriteframes) sprite_frames **)**
* [Texture](class_texture) **[get_sprite_frames](#get_sprite_frames)** **(** **)** const
* void **[set_frame](#set_frame)** **(** [int](class_int) frame **)**
* [int](class_int) **[get_frame](#get_frame)** **(** **)** const
### Member Function Description

@ -36,7 +36,7 @@ Base class of anything 2D.
* void **[draw_texture_rect_region](#draw_texture_rect_region)** **(** [Texture](class_texture) texture, [Rect2](class_rect2) rect, [Rect2](class_rect2) src_rect, [Color](class_color) modulate=Color(1,1,1,1) **)**
* 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_polygon](#draw_polygon)** **(** [Vector2Array](class_vector2array) points, [ColorArray](class_colorarray) colors, [Vector2Array](class_vector2array) uvs=Array(), [Texture](class_texture) texture=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) **)**
@ -201,7 +201,7 @@ Draw a styled rectangle.
Draw a custom primitive, 1 point for a point, 2 points for a line, 3 points for a triangle and 4 points for a quad.
#### <a name="draw_polygon">draw_polygon</a>
* void **draw&#95;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&#95;polygon** **(** [Vector2Array](class_vector2array) points, [ColorArray](class_colorarray) colors, [Vector2Array](class_vector2array) uvs=Array(), [Texture](class_texture) texture=Object() **)**
Draw a polygon of any amount of points, convex or concave.

@ -28,7 +28,8 @@
* **BG_PARAM_TEXTURE** = **1**
* **BG_PARAM_CUBEMAP** = **2**
* **BG_PARAM_ENERGY** = **3**
* **BG_PARAM_MAX** = **5**
* **BG_PARAM_GLOW** = **5**
* **BG_PARAM_MAX** = **6**
* **FX_FXAA** = **0**
* **FX_GLOW** = **1**
* **FX_DOF_BLUR** = **2**
@ -37,28 +38,34 @@
* **FX_BCS** = **5**
* **FX_GAMMA** = **6**
* **FX_MAX** = **7**
* **FX_BLUR_BLEND_MODE_ADDITIVE** = **0**
* **FX_BLUR_BLEND_MODE_SCREEN** = **1**
* **FX_BLUR_BLEND_MODE_SOFTLIGHT** = **2**
* **FX_PARAM_GLOW_BLUR_PASSES** = **0**
* **FX_PARAM_GLOW_BLOOM** = **1**
* **FX_PARAM_GLOW_BLOOM_TRESHOLD** = **2**
* **FX_PARAM_DOF_BLUR_PASSES** = **3**
* **FX_PARAM_DOF_BLUR_BEGIN** = **4**
* **FX_PARAM_DOF_BLUR_RANGE** = **5**
* **FX_PARAM_HDR_EXPOSURE** = **6**
* **FX_PARAM_HDR_SCALAR** = **7**
* **FX_PARAM_HDR_GLOW_TRESHOLD** = **8**
* **FX_PARAM_HDR_GLOW_SCALE** = **9**
* **FX_PARAM_HDR_MIN_LUMINANCE** = **10**
* **FX_PARAM_HDR_MAX_LUMINANCE** = **11**
* **FX_PARAM_HDR_EXPOSURE_ADJUST_SPEED** = **12**
* **FX_PARAM_FOG_BEGIN** = **13**
* **FX_PARAM_FOG_ATTENUATION** = **16**
* **FX_PARAM_FOG_BEGIN_COLOR** = **14**
* **FX_PARAM_FOG_END_COLOR** = **15**
* **FX_PARAM_FOG_BG** = **17**
* **FX_PARAM_BCS_BRIGHTNESS** = **18**
* **FX_PARAM_BCS_CONTRAST** = **19**
* **FX_PARAM_BCS_SATURATION** = **20**
* **FX_PARAM_GAMMA** = **21**
* **FX_PARAM_MAX** = **22**
* **FX_PARAM_GLOW_BLUR_SCALE** = **1**
* **FX_PARAM_GLOW_BLUR_STRENGTH** = **2**
* **FX_PARAM_GLOW_BLUR_BLEND_MODE** = **3**
* **FX_PARAM_GLOW_BLOOM** = **4**
* **FX_PARAM_GLOW_BLOOM_TRESHOLD** = **5**
* **FX_PARAM_DOF_BLUR_PASSES** = **6**
* **FX_PARAM_DOF_BLUR_BEGIN** = **7**
* **FX_PARAM_DOF_BLUR_RANGE** = **8**
* **FX_PARAM_HDR_EXPOSURE** = **9**
* **FX_PARAM_HDR_SCALAR** = **10**
* **FX_PARAM_HDR_GLOW_TRESHOLD** = **11**
* **FX_PARAM_HDR_GLOW_SCALE** = **12**
* **FX_PARAM_HDR_MIN_LUMINANCE** = **13**
* **FX_PARAM_HDR_MAX_LUMINANCE** = **14**
* **FX_PARAM_HDR_EXPOSURE_ADJUST_SPEED** = **15**
* **FX_PARAM_FOG_BEGIN** = **16**
* **FX_PARAM_FOG_ATTENUATION** = **19**
* **FX_PARAM_FOG_BEGIN_COLOR** = **17**
* **FX_PARAM_FOG_END_COLOR** = **18**
* **FX_PARAM_FOG_BG** = **20**
* **FX_PARAM_BCS_BRIGHTNESS** = **21**
* **FX_PARAM_BCS_CONTRAST** = **22**
* **FX_PARAM_BCS_SATURATION** = **23**
* **FX_PARAM_GAMMA** = **24**
* **FX_PARAM_MAX** = **25**
### Member Function Description

@ -38,6 +38,7 @@ Simple Material with a fixed parameter set.
* **FLAG_USE_ALPHA** = **0**
* **FLAG_USE_COLOR_ARRAY** = **1**
* **FLAG_USE_POINT_SIZE** = **2**
* **FLAG_DISCARD_ALPHA** = **3**
### Description
FixedMaterial is a simple type of material [Resource](class_resource), which contains a fixed amount of paramters. It is the only type of material supported in fixed-pipeline devices and APIs. It is also an often a better alternative to [ShaderMaterial](class_shadermaterial) for most simple use cases.

@ -0,0 +1,19 @@
# ImmediateGeometry
####**Inherits:** [GeometryInstance](class_geometryinstance)
####**Category:** Core
### Brief Description
### Member Functions
* void **[begin](#begin)** **(** [int](class_int) primitive, [Texture](class_texture) texture **)**
* void **[set&#95;normal](#set_normal)** **(** [Vector3](class_vector3) normal **)**
* void **[set&#95;tangent](#set_tangent)** **(** [Plane](class_plane) tangent **)**
* void **[set&#95;color](#set_color)** **(** [Color](class_color) color **)**
* void **[set&#95;uv](#set_uv)** **(** [Vector2](class_vector2) uv **)**
* void **[set&#95;uv2](#set_uv2)** **(** [Vector2](class_vector2) uv **)**
* void **[add&#95;vertex](#add_vertex)** **(** [Vector3](class_vector3) color **)**
* void **[end](#end)** **(** **)**
* void **[clear](#clear)** **(** **)**
### Member Function Description

@ -1,109 +1,111 @@
| | | | | | |
| --- | ------- | --- | ------- | --- | ------- |
| **@** | [@GDScript](class_@gdscript) | | [InputEventJoyMotion](class_inputeventjoymotion) | | [RichTextLabel](class_richtextlabel) |
| | [@Global Scope](class_@global scope) | | [InputEventKey](class_inputeventkey) | | [RigidBody](class_rigidbody) |
| **A** | [AABB](class_aabb) | | [InputEventMouseButton](class_inputeventmousebutton) | | [RigidBody2D](class_rigidbody2d) |
| | [AcceptDialog](class_acceptdialog) | | [InputEventMouseMotion](class_inputeventmousemotion) | | [Room](class_room) |
| | [AnimatedSprite](class_animatedsprite) | | [InputEventScreenDrag](class_inputeventscreendrag) | | [RoomBounds](class_roombounds) |
| | [Animation](class_animation) | | [InputEventScreenTouch](class_inputeventscreentouch) | **S** | [Sample](class_sample) |
| | [AnimationPlayer](class_animationplayer) | | [InputMap](class_inputmap) | | [SampleLibrary](class_samplelibrary) |
| | [AnimationTreePlayer](class_animationtreeplayer) | | [IntArray](class_intarray) | | [SamplePlayer](class_sampleplayer) |
| | [Area](class_area) | | [InterpolatedCamera](class_interpolatedcamera) | | [SamplePlayer2D](class_sampleplayer2d) |
| | [Area2D](class_area2d) | **J** | [Joint2D](class_joint2d) | | [SceneIO](class_sceneio) |
| | [Array](class_array) | **K** | [KinematicBody2D](class_kinematicbody2d) | | [SceneInteractiveLoader](class_sceneinteractiveloader) |
| | [AtlasTexture](class_atlastexture) | **L** | [Label](class_label) | | [SceneMainLoop](class_scenemainloop) |
| | [AudioServer](class_audioserver) | | [LargeTexture](class_largetexture) | | [ScenePreloader](class_scenepreloader) |
| | [AudioServerSW](class_audioserversw) | | [Light](class_light) | | [Script](class_script) |
| | [AudioStream](class_audiostream) | | [LineEdit](class_lineedit) | | [ScrollBar](class_scrollbar) |
| | [AudioStreamGibberish](class_audiostreamgibberish) | | [LineShape2D](class_lineshape2d) | | [ScrollContainer](class_scrollcontainer) |
| | [AudioStreamMPC](class_audiostreammpc) | **M** | [MainLoop](class_mainloop) | | [SegmentShape2D](class_segmentshape2d) |
| | [AudioStreamOGGVorbis](class_audiostreamoggvorbis) | | [MarginContainer](class_margincontainer) | | [Semaphore](class_semaphore) |
| | [AudioStreamResampled](class_audiostreamresampled) | | [Marshalls](class_marshalls) | | [Separator](class_separator) |
| | [AudioStreamSpeex](class_audiostreamspeex) | | [Material](class_material) | | [Shader](class_shader) |
| **B** | [BakedLight](class_bakedlight) | | [Matrix3](class_matrix3) | | [ShaderMaterial](class_shadermaterial) |
| | [BaseButton](class_basebutton) | | [Matrix32](class_matrix32) | | [Shape](class_shape) |
| | [BitMap](class_bitmap) | | [MenuButton](class_menubutton) | | [Shape2D](class_shape2d) |
| | [BoneAttachment](class_boneattachment) | | [Mesh](class_mesh) | | [Skeleton](class_skeleton) |
| | [BoxContainer](class_boxcontainer) | | [MeshDataTool](class_meshdatatool) | | [Slider](class_slider) |
| | [BoxShape](class_boxshape) | | [MeshInstance](class_meshinstance) | | [SoundPlayer2D](class_soundplayer2d) |
| | [Button](class_button) | | [MeshLibrary](class_meshlibrary) | | [SoundRoomParams](class_soundroomparams) |
| | [ButtonArray](class_buttonarray) | | [MultiMesh](class_multimesh) | | [Spatial](class_spatial) |
| | [ButtonGroup](class_buttongroup) | | [MultiMeshInstance](class_multimeshinstance) | | [SpatialPlayer](class_spatialplayer) |
| **C** | [Camera](class_camera) | | [Mutex](class_mutex) | | [SpatialSamplePlayer](class_spatialsampleplayer) |
| | [Camera2D](class_camera2d) | **N** | [Nil](class_nil) | | [SpatialSound2DServer](class_spatialsound2dserver) |
| | [CanvasItem](class_canvasitem) | | [Node](class_node) | | [SpatialSound2DServerSW](class_spatialsound2dserversw) |
| | [CanvasLayer](class_canvaslayer) | | [Node2D](class_node2d) | | [SpatialSoundServer](class_spatialsoundserver) |
| | [CapsuleShape](class_capsuleshape) | | [NodePath](class_nodepath) | | [SpatialSoundServerSW](class_spatialsoundserversw) |
| | [CapsuleShape2D](class_capsuleshape2d) | **O** | [OS](class_os) | | [SpatialStreamPlayer](class_spatialstreamplayer) |
| | [CarBody](class_carbody) | | [Object](class_object) | | [SphereShape](class_sphereshape) |
| | [CarWheel](class_carwheel) | | [OmniLight](class_omnilight) | | [SpinBox](class_spinbox) |
| | [CenterContainer](class_centercontainer) | | [OptionButton](class_optionbutton) | | [SplitContainer](class_splitcontainer) |
| | [CheckButton](class_checkbutton) | **P** | [PHashTranslation](class_phashtranslation) | | [SpotLight](class_spotlight) |
| | [CircleShape2D](class_circleshape2d) | | [PackedDataContainer](class_packeddatacontainer) | | [Sprite](class_sprite) |
| | [CollisionObject](class_collisionobject) | | [PackedDataContainerRef](class_packeddatacontainerref) | | [SpriteFrames](class_spriteframes) |
| | [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) | | [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) |
| **@** | [@GDScript](class_@gdscript) | | [InputEventJoyMotion](class_inputeventjoymotion) | | [RigidBody2D](class_rigidbody2d) |
| | [@Global Scope](class_@global scope) | | [InputEventKey](class_inputeventkey) | | [Room](class_room) |
| **A** | [AABB](class_aabb) | | [InputEventMouseButton](class_inputeventmousebutton) | | [RoomBounds](class_roombounds) |
| | [AcceptDialog](class_acceptdialog) | | [InputEventMouseMotion](class_inputeventmousemotion) | **S** | [Sample](class_sample) |
| | [AnimatedSprite](class_animatedsprite) | | [InputEventScreenDrag](class_inputeventscreendrag) | | [SampleLibrary](class_samplelibrary) |
| | [AnimatedSprite3D](class_animatedsprite3d) | | [InputEventScreenTouch](class_inputeventscreentouch) | | [SamplePlayer](class_sampleplayer) |
| | [Animation](class_animation) | | [InputMap](class_inputmap) | | [SamplePlayer2D](class_sampleplayer2d) |
| | [AnimationPlayer](class_animationplayer) | | [IntArray](class_intarray) | | [SceneIO](class_sceneio) |
| | [AnimationTreePlayer](class_animationtreeplayer) | | [InterpolatedCamera](class_interpolatedcamera) | | [SceneInteractiveLoader](class_sceneinteractiveloader) |
| | [Area](class_area) | **J** | [Joint2D](class_joint2d) | | [SceneMainLoop](class_scenemainloop) |
| | [Area2D](class_area2d) | **K** | [KinematicBody2D](class_kinematicbody2d) | | [ScenePreloader](class_scenepreloader) |
| | [Array](class_array) | **L** | [Label](class_label) | | [Script](class_script) |
| | [AtlasTexture](class_atlastexture) | | [LargeTexture](class_largetexture) | | [ScrollBar](class_scrollbar) |
| | [AudioServer](class_audioserver) | | [Light](class_light) | | [ScrollContainer](class_scrollcontainer) |
| | [AudioServerSW](class_audioserversw) | | [LineEdit](class_lineedit) | | [SegmentShape2D](class_segmentshape2d) |
| | [AudioStream](class_audiostream) | | [LineShape2D](class_lineshape2d) | | [Semaphore](class_semaphore) |
| | [AudioStreamGibberish](class_audiostreamgibberish) | **M** | [MainLoop](class_mainloop) | | [Separator](class_separator) |
| | [AudioStreamMPC](class_audiostreammpc) | | [MarginContainer](class_margincontainer) | | [Shader](class_shader) |
| | [AudioStreamOGGVorbis](class_audiostreamoggvorbis) | | [Marshalls](class_marshalls) | | [ShaderMaterial](class_shadermaterial) |
| | [AudioStreamResampled](class_audiostreamresampled) | | [Material](class_material) | | [Shape](class_shape) |
| | [AudioStreamSpeex](class_audiostreamspeex) | | [Matrix3](class_matrix3) | | [Shape2D](class_shape2d) |
| **B** | [BakedLight](class_bakedlight) | | [Matrix32](class_matrix32) | | [Skeleton](class_skeleton) |
| | [BaseButton](class_basebutton) | | [MenuButton](class_menubutton) | | [Slider](class_slider) |
| | [BitMap](class_bitmap) | | [Mesh](class_mesh) | | [SoundPlayer2D](class_soundplayer2d) |
| | [BoneAttachment](class_boneattachment) | | [MeshDataTool](class_meshdatatool) | | [SoundRoomParams](class_soundroomparams) |
| | [BoxContainer](class_boxcontainer) | | [MeshInstance](class_meshinstance) | | [Spatial](class_spatial) |
| | [BoxShape](class_boxshape) | | [MeshLibrary](class_meshlibrary) | | [SpatialPlayer](class_spatialplayer) |
| | [Button](class_button) | | [MultiMesh](class_multimesh) | | [SpatialSamplePlayer](class_spatialsampleplayer) |
| | [ButtonArray](class_buttonarray) | | [MultiMeshInstance](class_multimeshinstance) | | [SpatialSound2DServer](class_spatialsound2dserver) |
| | [ButtonGroup](class_buttongroup) | | [Mutex](class_mutex) | | [SpatialSound2DServerSW](class_spatialsound2dserversw) |
| **C** | [Camera](class_camera) | **N** | [Nil](class_nil) | | [SpatialSoundServer](class_spatialsoundserver) |
| | [Camera2D](class_camera2d) | | [Node](class_node) | | [SpatialSoundServerSW](class_spatialsoundserversw) |
| | [CanvasItem](class_canvasitem) | | [Node2D](class_node2d) | | [SpatialStreamPlayer](class_spatialstreamplayer) |
| | [CanvasLayer](class_canvaslayer) | | [NodePath](class_nodepath) | | [SphereShape](class_sphereshape) |
| | [CapsuleShape](class_capsuleshape) | **O** | [OS](class_os) | | [SpinBox](class_spinbox) |
| | [CapsuleShape2D](class_capsuleshape2d) | | [Object](class_object) | | [SplitContainer](class_splitcontainer) |
| | [CarBody](class_carbody) | | [OmniLight](class_omnilight) | | [SpotLight](class_spotlight) |
| | [CarWheel](class_carwheel) | | [OptionButton](class_optionbutton) | | [Sprite](class_sprite) |
| | [CenterContainer](class_centercontainer) | **P** | [PHashTranslation](class_phashtranslation) | | [Sprite3D](class_sprite3d) |
| | [CheckButton](class_checkbutton) | | [PackedDataContainer](class_packeddatacontainer) | | [SpriteBase3D](class_spritebase3d) |
| | [CircleShape2D](class_circleshape2d) | | [PackedDataContainerRef](class_packeddatacontainerref) | | [SpriteFrames](class_spriteframes) |
| | [CollisionObject](class_collisionobject) | | [PackedScene](class_packedscene) | | [StaticBody](class_staticbody) |
| | [CollisionObject2D](class_collisionobject2d) | | [PacketPeer](class_packetpeer) | | [StaticBody2D](class_staticbody2d) |
| | [CollisionPolygon2D](class_collisionpolygon2d) | | [PacketPeerStream](class_packetpeerstream) | | [StreamPeer](class_streampeer) |
| | [CollisionShape](class_collisionshape) | | [Panel](class_panel) | | [StreamPeerSSL](class_streampeerssl) |
| | [CollisionShape2D](class_collisionshape2d) | | [PanelContainer](class_panelcontainer) | | [StreamPeerTCP](class_streampeertcp) |
| | [Color](class_color) | | [ParallaxBackground](class_parallaxbackground) | | [StreamPlayer](class_streamplayer) |
| | [ColorArray](class_colorarray) | | [ParallaxLayer](class_parallaxlayer) | | [String](class_string) |
| | [ColorPicker](class_colorpicker) | | [ParticleAttractor2D](class_particleattractor2d) | | [StringArray](class_stringarray) |
| | [ColorPickerButton](class_colorpickerbutton) | | [ParticleSystemMaterial](class_particlesystemmaterial) | | [StyleBox](class_stylebox) |
| | [ConcavePolygonShape](class_concavepolygonshape) | | [Particles](class_particles) | | [StyleBoxEmpty](class_styleboxempty) |
| | [ConcavePolygonShape2D](class_concavepolygonshape2d) | | [Particles2D](class_particles2d) | | [StyleBoxFlat](class_styleboxflat) |
| | [ConfigFile](class_configfile) | | [Path](class_path) | | [StyleBoxImageMask](class_styleboximagemask) |
| | [ConfirmationDialog](class_confirmationdialog) | | [Path2D](class_path2d) | | [StyleBoxTexture](class_styleboxtexture) |
| | [Container](class_container) | | [PathFollow](class_pathfollow) | | [SurfaceTool](class_surfacetool) |
| | [Control](class_control) | | [PathRemap](class_pathremap) | **T** | [TCP_Server](class_tcp_server) |
| | [ConvexPolygonShape](class_convexpolygonshape) | | [Performance](class_performance) | | [TabContainer](class_tabcontainer) |
| | [ConvexPolygonShape2D](class_convexpolygonshape2d) | | [Physics2DDirectBodyState](class_physics2ddirectbodystate) | | [Tabs](class_tabs) |
| | [CubeMap](class_cubemap) | | [Physics2DDirectBodyStateSW](class_physics2ddirectbodystatesw) | | [TestCube](class_testcube) |
| | [Curve2D](class_curve2d) | | [Physics2DDirectSpaceState](class_physics2ddirectspacestate) | | [TextEdit](class_textedit) |
| | [Curve3D](class_curve3d) | | [Physics2DServer](class_physics2dserver) | | [Texture](class_texture) |
| **D** | [DampedSpringJoint2D](class_dampedspringjoint2d) | | [Physics2DServerSW](class_physics2dserversw) | | [TextureButton](class_texturebutton) |
| | [Dictionary](class_dictionary) | | [Physics2DShapeQueryResult](class_physics2dshapequeryresult) | | [TextureFrame](class_textureframe) |
| | [DirectionalLight](class_directionallight) | | [PhysicsBody](class_physicsbody) | | [TextureProgress](class_textureprogress) |
| | [Directory](class_directory) | | [PhysicsBody2D](class_physicsbody2d) | | [Theme](class_theme) |
| **E** | [EditableShape](class_editableshape) | | [PhysicsDirectBodyState](class_physicsdirectbodystate) | | [Thread](class_thread) |
| | [EditableSphere](class_editablesphere) | | [PhysicsDirectBodyStateSW](class_physicsdirectbodystatesw) | | [TileMap](class_tilemap) |
| | [EditorImportPlugin](class_editorimportplugin) | | [PhysicsDirectSpaceState](class_physicsdirectspacestate) | | [TileSet](class_tileset) |
| | [EditorPlugin](class_editorplugin) | | [PhysicsServer](class_physicsserver) | | [Timer](class_timer) |
| | [EditorScenePostImport](class_editorscenepostimport) | | [PhysicsServerSW](class_physicsserversw) | | [TouchScreenButton](class_touchscreenbutton) |
| | [EditorScript](class_editorscript) | | [PhysicsShapeQueryResult](class_physicsshapequeryresult) | | [Transform](class_transform) |
| | [EmptyControl](class_emptycontrol) | | [PinJoint2D](class_pinjoint2d) | | [Translation](class_translation) |
| | [Environment](class_environment) | | [Plane](class_plane) | | [TranslationServer](class_translationserver) |
| | [EventPlayer](class_eventplayer) | | [PlaneShape](class_planeshape) | | [Tree](class_tree) |
| | [EventStream](class_eventstream) | | [Popup](class_popup) | | [TreeItem](class_treeitem) |
| | [EventStreamChibi](class_eventstreamchibi) | | [PopupDialog](class_popupdialog) | **U** | [UnshadedMaterial](class_unshadedmaterial) |
| **F** | [File](class_file) | | [PopupMenu](class_popupmenu) | **V** | [VBoxContainer](class_vboxcontainer) |
| | [FileDialog](class_filedialog) | | [PopupPanel](class_popuppanel) | | [VButtonArray](class_vbuttonarray) |
| | [FixedMaterial](class_fixedmaterial) | | [Portal](class_portal) | | [VScrollBar](class_vscrollbar) |
| | [FollowCamera](class_followcamera) | | [Position2D](class_position2d) | | [VSeparator](class_vseparator) |
| | [Font](class_font) | | [Position3D](class_position3d) | | [VSlider](class_vslider) |
| | [FuncRef](class_funcref) | | [ProgressBar](class_progressbar) | | [VSplitContainer](class_vsplitcontainer) |
| **G** | [GDNativeClass](class_gdnativeclass) | | [ProximityGroup](class_proximitygroup) | | [Vector2](class_vector2) |
| | [GDScript](class_gdscript) | **Q** | [Quad](class_quad) | | [Vector2Array](class_vector2array) |
| | [Geometry](class_geometry) | | [Quat](class_quat) | | [Vector3](class_vector3) |
| | [GeometryInstance](class_geometryinstance) | **R** | [RID](class_rid) | | [Vector3Array](class_vector3array) |
| | [Globals](class_globals) | | [Range](class_range) | | [VideoPlayer](class_videoplayer) |
| | [GridContainer](class_gridcontainer) | | [RawArray](class_rawarray) | | [VideoStream](class_videostream) |
| | [GridMap](class_gridmap) | | [RayCast](class_raycast) | | [VideoStreamTheora](class_videostreamtheora) |
| | [GrooveJoint2D](class_groovejoint2d) | | [RayCast2D](class_raycast2d) | | [Viewport](class_viewport) |
| **H** | [HBoxContainer](class_hboxcontainer) | | [RayShape](class_rayshape) | | [ViewportSprite](class_viewportsprite) |
| | [HButtonArray](class_hbuttonarray) | | [RayShape2D](class_rayshape2d) | | [VisibilityEnabler](class_visibilityenabler) |
| | [HScrollBar](class_hscrollbar) | | [RealArray](class_realarray) | | [VisibilityEnabler2D](class_visibilityenabler2d) |
| | [HSeparator](class_hseparator) | | [Rect2](class_rect2) | | [VisibilityNotifier](class_visibilitynotifier) |
| | [HSlider](class_hslider) | | [RectangleShape2D](class_rectangleshape2d) | | [VisibilityNotifier2D](class_visibilitynotifier2d) |
| | [HSplitContainer](class_hsplitcontainer) | | [Reference](class_reference) | | [VisualInstance](class_visualinstance) |
| | [HTTPClient](class_httpclient) | | [ReferenceFrame](class_referenceframe) | | [VisualServer](class_visualserver) |
| **I** | [IP](class_ip) | | [RegEx](class_regex) | **W** | [WindowDialog](class_windowdialog) |
| | [IP_Unix](class_ip_unix) | | [RemoteTransform2D](class_remotetransform2d) | | [World](class_world) |
| | [Image](class_image) | | [RenderTargetTexture](class_rendertargettexture) | | [World2D](class_world2d) |
| | [ImagePathFinder](class_imagepathfinder) | | [Resource](class_resource) | | [WorldEnvironment](class_worldenvironment) |
| | [ImageTexture](class_imagetexture) | | [ResourceImportMetadata](class_resourceimportmetadata) | **X** | [XMLParser](class_xmlparser) |
| | [ImmediateGeometry](class_immediategeometry) | | [ResourceInteractiveLoader](class_resourceinteractiveloader) | **b** | [bool](class_bool) |
| | [Input](class_input) | | [ResourceLoader](class_resourceloader) | **f** | [float](class_float) |
| | [InputDefault](class_inputdefault) | | [ResourcePreloader](class_resourcepreloader) | **i** | [int](class_int) |
| | [InputEvent](class_inputevent) | | [ResourceSaver](class_resourcesaver) |
| | [InputEventAction](class_inputeventaction) | | [RichTextLabel](class_richtextlabel) |
| | [InputEventJoyButton](class_inputeventjoybutton) | | [RigidBody](class_rigidbody) |

@ -30,7 +30,8 @@ Abstract base [Resource](class_resource) for coloring and shading geometry.
* **HINT_OPAQUE_PRE_PASS** = **1**
* **HINT_NO_SHADOW** = **2**
* **HINT_NO_DEPTH_DRAW** = **3**
* **HINT_MAX** = **4**
* **HINT_NO_DEPTH_DRAW_FOR_ALPHA** = **4**
* **HINT_MAX** = **5**
* **SHADE_MODEL_LAMBERT** = **0**
* **SHADE_MODEL_LAMBERT_WRAP** = **1**
* **SHADE_MODEL_FRESNEL** = **2**

22
class_sprite3d.md Normal file

@ -0,0 +1,22 @@
# Sprite3D
####**Inherits:** [SpriteBase3D](class_spritebase3d)
####**Category:** Core
### Brief Description
### Member Functions
* void **[set&#95;texture](#set_texture)** **(** [Texture](class_texture) texture **)**
* [Texture](class_texture) **[get&#95;texture](#get_texture)** **(** **)** const
* void **[set&#95;region](#set_region)** **(** [bool](class_bool) enabled **)**
* [bool](class_bool) **[is&#95;region](#is_region)** **(** **)** const
* void **[set&#95;region&#95;rect](#set_region_rect)** **(** [Rect2](class_rect2) rect **)**
* [Rect2](class_rect2) **[get&#95;region&#95;rect](#get_region_rect)** **(** **)** const
* void **[set&#95;frame](#set_frame)** **(** [int](class_int) frame **)**
* [int](class_int) **[get&#95;frame](#get_frame)** **(** **)** const
* void **[set&#95;vframes](#set_vframes)** **(** [int](class_int) vframes **)**
* [int](class_int) **[get&#95;vframes](#get_vframes)** **(** **)** const
* void **[set&#95;hframes](#set_hframes)** **(** [int](class_int) hframes **)**
* [int](class_int) **[get&#95;hframes](#get_hframes)** **(** **)** const
### Member Function Description

39
class_spritebase3d.md Normal file

@ -0,0 +1,39 @@
# SpriteBase3D
####**Inherits:** [VisualInstance](class_visualinstance)
####**Category:** Core
### Brief Description
### Member Functions
* void **[set&#95;centered](#set_centered)** **(** [bool](class_bool) centered **)**
* [bool](class_bool) **[is&#95;centered](#is_centered)** **(** **)** const
* void **[set&#95;offset](#set_offset)** **(** [Vector2](class_vector2) offset **)**
* [Vector2](class_vector2) **[get&#95;offset](#get_offset)** **(** **)** const
* void **[set&#95;flip&#95;h](#set_flip_h)** **(** [bool](class_bool) flip_h **)**
* [bool](class_bool) **[is&#95;flipped&#95;h](#is_flipped_h)** **(** **)** const
* void **[set&#95;flip&#95;v](#set_flip_v)** **(** [bool](class_bool) flip_v **)**
* [bool](class_bool) **[is&#95;flipped&#95;v](#is_flipped_v)** **(** **)** const
* void **[set&#95;modulate](#set_modulate)** **(** [Color](class_color) modulate **)**
* [Color](class_color) **[get&#95;modulate](#get_modulate)** **(** **)** const
* void **[set&#95;opacity](#set_opacity)** **(** [float](class_float) opacity **)**
* [float](class_float) **[get&#95;opacity](#get_opacity)** **(** **)** const
* void **[set&#95;pixel&#95;size](#set_pixel_size)** **(** [float](class_float) pixel_size **)**
* [float](class_float) **[get&#95;pixel&#95;size](#get_pixel_size)** **(** **)** const
* void **[set&#95;axis](#set_axis)** **(** [int](class_int) axis **)**
* [int](class_int) **[get&#95;axis](#get_axis)** **(** **)** const
* void **[set&#95;draw&#95;flag](#set_draw_flag)** **(** [int](class_int) flag, [bool](class_bool) enabled **)**
* [bool](class_bool) **[get&#95;draw&#95;flag](#get_draw_flag)** **(** [int](class_int) flag **)** const
* void **[set&#95;alpha&#95;cut&#95;mode](#set_alpha_cut_mode)** **(** [int](class_int) mode **)**
* [int](class_int) **[get&#95;alpha&#95;cut&#95;mode](#get_alpha_cut_mode)** **(** **)** const
* [Rect2](class_rect2) **[get&#95;item&#95;rect](#get_item_rect)** **(** **)** const
### Numeric Constants
* **FLAG_TRANSPARENT** = **0**
* **FLAG_SHADED** = **1**
* **FLAG_MAX** = **2**
* **ALPHA_CUT_DISABLED** = **0**
* **ALPHA_CUT_DISCARD** = **1**
* **ALPHA_CUT_OPAQUE_PREPASS** = **2**
### Member Function Description

@ -266,11 +266,11 @@ Server for anything visible.
* **SCENARIO_DEBUG_OVERDRAW** = **2**
* **INSTANCE_MESH** = **1**
* **INSTANCE_MULTIMESH** = **2**
* **INSTANCE_PARTICLES** = **3**
* **INSTANCE_LIGHT** = **4**
* **INSTANCE_ROOM** = **5**
* **INSTANCE_PORTAL** = **6**
* **INSTANCE_GEOMETRY_MASK** = **14**
* **INSTANCE_PARTICLES** = **4**
* **INSTANCE_LIGHT** = **5**
* **INSTANCE_ROOM** = **6**
* **INSTANCE_PORTAL** = **7**
* **INSTANCE_GEOMETRY_MASK** = **30**
* **INFO_OBJECTS_IN_FRAME** = **0**
* **INFO_VERTICES_IN_FRAME** = **1**
* **INFO_MATERIAL_CHANGES_IN_FRAME** = **2**