godot/doc/classes
lawnjelly 451c3fc0fb GLES2 2D batching - item reordering, light joining and light modulate fix
Although 2D draws in painters order with strict ordering, in certain circumstances items can be reordered to increase batching / decrease state changes, without affecting the end result. This can be determined by an overlap test.

In situation with item:
A-B-A
providing the third item does not overlap the second, they can be reordered:
A-A-B

Items already contain an AABB which can be used for this overlap test.

1)
To utilise this, I have implemented item reordering (only for single rects for now), with the lookahead adjustable in project settings. This can increase performance in situations where items may not be grouped in the scene tree by texture. It can also be switched off (by setting lookahead to 0).

2)
This same trick can be used to help join items that are lit. Lit items previously would prevent joining completely, thus missing out on performance gains other than multi-command items such as tilemaps.

In this PR, lights are assigned as bits in a bitfield (up to 64, the optimization is disabled above this), and on each try_item (for joining), the bitfield for lights and shadows is constructed and compared with the previous items. If these match the 2 items can potentially be joined. However, this can only be done without changing the rendered result if an overlap test is successful.

This overlap test can be adjusted to join items up to a specific number of item references, selectable in project settings, or turned off.

3)
The legacy uniform single rect drawing routine seems to have been identified as the source of flicker, particularly on nvidia. However, it can also be up to 2x as fast. Because of the speed the batching contains a fallback where it can use the legacy single rect method, but I have now added a project setting to make this switchable. In most cases with batching it should not be necessary (as single rects are drawn less frequently) and thus the flickering can be totally avoided.

4)
This PR also fixes a color modulate bug when drawing light passes, in certain situations (particularly custom _draw routines with multiple rects).

5)
This PR also fixes #38291, a bug in the legacy renderer where light passes could draw rects in wrong position.
2020-05-01 07:47:33 +01:00
..
@GlobalScope.xml Core: Change _Marshall class inherit from Reference to Object 2020-03-04 12:40:14 +01:00
AABB.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AcceptDialog.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimatedSprite3D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimatedSprite.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimatedTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Animation.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationNode.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeAdd2.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeAdd3.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeAnimation.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeBlend2.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeBlend3.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeBlendSpace1D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeBlendSpace2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeBlendTree.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationNodeOneShot.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationNodeOutput.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationNodeStateMachine.xml Sync classref with current source 2020-03-25 11:42:15 +01:00
AnimationNodeStateMachinePlayback.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeStateMachineTransition.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationNodeTimeScale.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationNodeTimeSeek.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationNodeTransition.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationPlayer.xml doc: Add a short AnimationPlayer versus Tween comparison 2020-02-06 13:02:08 +01:00
AnimationRootNode.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationTrackEditPlugin.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AnimationTree.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AnimationTreePlayer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Area2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Area.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Array.xml DocData: Fix serialization of Variant default values 2020-03-09 11:36:57 +01:00
ArrayMesh.xml Improve the procedural geometry class documentations 2020-04-27 10:14:42 +02:00
ARVRAnchor.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ARVRCamera.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ARVRController.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ARVRInterface.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ARVROrigin.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ARVRPositionalTracker.xml Exposing get_tracker_id for ARVRPositionalTracker to GDScript 2020-03-04 12:52:47 +01:00
ARVRServer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AStar2D.xml Implements estimate/compute_cost for AStar2D 2020-04-16 11:35:52 +02:00
AStar.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AtlasTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioBusLayout.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffect.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectAmplify.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectBandLimitFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectBandPassFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectChorus.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectCompressor.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectDelay.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectDistortion.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectEQ6.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectEQ10.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectEQ21.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectEQ.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectHighPassFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectHighShelfFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectInstance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectLimiter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectLowPassFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectLowShelfFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectNotchFilter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectPanner.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectPhaser.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectPitchShift.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectRecord.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
AudioEffectReverb.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectSpectrumAnalyzer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectSpectrumAnalyzerInstance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioEffectStereoEnhance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioServer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStream.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStreamGenerator.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStreamGeneratorPlayback.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStreamMicrophone.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStreamPlayback.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStreamPlaybackResampled.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStreamPlayer2D.xml Improve pitch_scale descriptions in AudioStreamPlayer documentation 2020-04-27 10:18:41 +02:00
AudioStreamPlayer3D.xml Improve pitch_scale descriptions in AudioStreamPlayer documentation 2020-04-27 10:18:41 +02:00
AudioStreamPlayer.xml Improve pitch_scale descriptions in AudioStreamPlayer documentation 2020-04-27 10:18:41 +02:00
AudioStreamRandomPitch.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
AudioStreamSample.xml Improve the AudioStreamSample class documentation 2020-04-16 12:57:22 +02:00
BackBufferCopy.xml Document how to workaround UI anchor issues when using BackBufferCopy 2020-04-21 14:11:29 +02:00
BakedLightmap.xml Finish documenting BakedLightmap and TextureLayered 2020-02-06 13:02:08 +01:00
BakedLightmapData.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
BaseButton.xml Mention keep_pressed_outside caveat in the BaseButton documentation 2020-04-16 12:57:22 +02:00
Basis.xml DocData: Fix serialization of Variant default values 2020-03-09 11:36:57 +01:00
BitMap.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
BitmapFont.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Bone2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
BoneAttachment.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
bool.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
BoxContainer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
BoxShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Button.xml Document theme_items of multiple classes 2020-01-27 02:15:37 +01:00
ButtonGroup.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Camera2D.xml Improve Camera2D documentation 2020-04-16 12:57:22 +02:00
Camera.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CameraFeed.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CameraServer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CameraTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CanvasItem.xml Clarify that angles must be specified as radians in the documentation 2020-04-20 11:53:40 +02:00
CanvasItemMaterial.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CanvasLayer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CanvasModulate.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CapsuleMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CapsuleShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CapsuleShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CenterContainer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CharFXTransform.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
CheckBox.xml Improve the CheckBox and CheckButton class documentations 2020-02-06 13:02:08 +01:00
CheckButton.xml Improve the CheckBox and CheckButton class documentations 2020-02-06 13:02:08 +01:00
CircleShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ClassDB.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ClippedCamera.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CollisionObject2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CollisionObject.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CollisionPolygon2D.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
CollisionPolygon.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CollisionShape2D.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
CollisionShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Color.xml Add reference of Color8 function to Color class documentation 2020-04-16 12:47:18 +02:00
ColorPicker.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
ColorPickerButton.xml Completes doc for button classes 2020-02-06 13:02:08 +01:00
ColorRect.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ConcavePolygonShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ConcavePolygonShape.xml add a precision about the intended use of the ConcavePolygonShape 2020-03-04 14:12:19 +01:00
ConeTwistJoint.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ConfigFile.xml ConfigFile: Improve error messages and complete docs 2020-03-06 23:51:26 +01:00
ConfirmationDialog.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Container.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Control.xml Clarify documentation and indicate that rect_clip_content affects only CanvasItem based nodes. 2020-04-16 12:47:18 +02:00
ConvexPolygonShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ConvexPolygonShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CPUParticles2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CPUParticles.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Crypto.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CryptoKey.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CubeMap.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CubeMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Curve2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Curve3D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Curve.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CurveTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CylinderMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
CylinderShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
DampedSpringJoint2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Dictionary.xml Correct the addition of a key and the duplication of a variable name 2020-04-20 11:55:31 +02:00
DirectionalLight.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Directory.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
DynamicFont.xml DocData: Skip unexposed classes 2020-04-21 14:15:34 +02:00
DynamicFontData.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorExportPlugin.xml doc: Sync classref with current source 2020-04-16 13:02:36 +02:00
EditorFeatureProfile.xml Check for errors when saving in the ResourceSaver example documentation 2020-04-21 14:11:15 +02:00
EditorFileDialog.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
EditorFileSystem.xml Document how some editor classes should be accessed as singletons only 2020-04-27 10:11:53 +02:00
EditorFileSystemDirectory.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorImportPlugin.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorInspector.xml Document how some editor classes should be accessed as singletons only 2020-04-27 10:11:53 +02:00
EditorInspectorPlugin.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorInterface.xml Document how some editor classes should be accessed as singletons only 2020-04-27 10:11:53 +02:00
EditorNavigationMeshGenerator.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorPlugin.xml Document EditorPlugin get_plugin_icon and get_plugin_name 2020-03-06 23:51:25 +01:00
EditorProperty.xml Merge pull request #35589 from akien-mga/doc-drop-category-property 2020-01-26 16:34:13 +01:00
EditorResourceConversionPlugin.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorResourcePreview.xml Document how some editor classes should be accessed as singletons only 2020-04-27 10:11:53 +02:00
EditorResourcePreviewGenerator.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorSceneImporter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorSceneImporterAssimp.xml Update EditorSceneImporterAssimp description to reflect current status 2020-02-12 15:05:16 +01:00
EditorScenePostImport.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorScript.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorSelection.xml Document how some editor classes should be accessed as singletons only 2020-04-27 10:11:53 +02:00
EditorSettings.xml Document how some editor classes should be accessed as singletons only 2020-04-27 10:11:53 +02:00
EditorSpatialGizmo.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorSpatialGizmoPlugin.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorSpinSlider.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EditorVCSInterface.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
EncodedObjectAsID.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Engine.xml Improve documentation related to fixed physics processing 2020-03-04 12:40:14 +01:00
Environment.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Expression.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ExternalTexture.xml Sync classref with current source 2020-03-25 11:42:15 +01:00
File.xml Improve the File.store_{8,16,32,64}() documentation 2020-04-16 11:44:58 +02:00
FileDialog.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
FileSystemDock.xml Sync classref with current source 2020-03-25 11:42:15 +01:00
float.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Font.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
FuncRef.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Generic6DOFJoint.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Geometry.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
GeometryInstance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
GIProbe.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
GIProbeData.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Gradient.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
GradientTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
GraphEdit.xml Sync classref with current source 2020-04-17 13:43:43 +02:00
GraphNode.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
GridContainer.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
GrooveJoint2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
HashingContext.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
HBoxContainer.xml Document theme_items of multiple classes 2020-01-27 02:15:37 +01:00
HeightMapShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
HingeJoint.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
HScrollBar.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
HSeparator.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
HSlider.xml doc: Sync classref with current source 2020-04-16 13:02:36 +02:00
HSplitContainer.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
HTTPClient.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
HTTPRequest.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Image.xml Document image size limits 2020-04-20 11:54:47 +02:00
ImageTexture.xml Document image size limits 2020-04-20 11:54:47 +02:00
ImmediateGeometry.xml Improve the procedural geometry class documentations 2020-04-27 10:14:42 +02:00
Input.xml Improve the Input.set_use_accumulated_input() documentation 2020-03-25 11:38:53 +01:00
InputEvent.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventAction.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventGesture.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
InputEventJoypadButton.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventJoypadMotion.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventKey.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventMagnifyGesture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventMIDI.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventMouse.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventMouseButton.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventMouseMotion.xml Doc edit at InputEventMouseMotion 2020-03-25 11:38:53 +01:00
InputEventPanGesture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventScreenDrag.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventScreenTouch.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputEventWithModifiers.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InputMap.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InstancePlaceholder.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
int.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
InterpolatedCamera.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
IP.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ItemList.xml Completes doc for ItemList and Tree 2020-02-12 15:05:02 +01:00
JavaClass.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
JavaClassWrapper.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
JavaScript.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
JNISingleton.xml doc: Sync classref with current source 2020-04-16 13:02:36 +02:00
Joint2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Joint.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
JSON.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
JSONParseResult.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
JSONRPC.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
KinematicBody2D.xml Edited the KinematicBody and KinematicBody2D docs 2020-03-06 23:54:56 +01:00
KinematicBody.xml Edited the KinematicBody and KinematicBody2D docs 2020-03-06 23:54:56 +01:00
KinematicCollision2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
KinematicCollision.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Label.xml Document theme_items of multiple classes 2020-01-27 02:15:37 +01:00
LargeTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Light2D.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
Light.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
LightOccluder2D.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
Line2D.xml Mention 2D polygon limits and how to increase them in the documentation 2020-01-28 22:04:29 +01:00
LineEdit.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
LineShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
LinkButton.xml Completes doc for button classes 2020-02-06 13:02:08 +01:00
Listener.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
MainLoop.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
MarginContainer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Marshalls.xml Core: Change _Marshall class inherit from Reference to Object 2020-03-04 12:40:14 +01:00
Material.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
MenuButton.xml Completes doc for button classes 2020-02-06 13:02:08 +01:00
Mesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
MeshDataTool.xml Improve the procedural geometry class documentations 2020-04-27 10:14:42 +02:00
MeshInstance2D.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
MeshInstance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
MeshLibrary.xml Allow using MeshLibrary.get_item_preview() in non-editor builds again 2020-03-04 12:40:13 +01:00
MeshTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
MultiMesh.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
MultiMeshInstance2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
MultiMeshInstance.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
MultiplayerAPI.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Mutex.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Navigation2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Navigation.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
NavigationMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
NavigationMeshInstance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
NavigationPolygon.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
NavigationPolygonInstance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
NetworkedMultiplayerPeer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
NinePatchRect.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Node2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Node.xml Minor fix in Node class documentation 2020-03-04 12:40:15 +01:00
NodePath.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Object.xml Added has_signal method for Object 2020-03-25 09:36:41 +01:00
OccluderPolygon2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
OmniLight.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
OptionButton.xml Fix OptionButton docs godotengine#36803 2020-04-16 11:45:19 +02:00
OS.xml Allow per pixel transparency in javascript platform 2020-02-14 16:07:03 +01:00
PackedDataContainer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PackedDataContainerRef.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
PackedScene.xml Check for errors when saving in the ResourceSaver example documentation 2020-04-21 14:11:15 +02:00
PacketPeer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PacketPeerStream.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PacketPeerUDP.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Panel.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
PanelContainer.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
PanoramaSky.xml Improve the PanoramaSky class documentation 2020-02-20 08:01:18 +01:00
ParallaxBackground.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ParallaxLayer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Particles2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Particles.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
ParticlesMaterial.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Path2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Path.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PathFollow2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PathFollow.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PCKPacker.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Performance.xml Add frame diagnostics for GLES2 Batch renderer 2020-04-17 08:54:33 +01:00
PHashTranslation.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicalBone.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Physics2DDirectBodyState.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Physics2DDirectSpaceState.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Physics2DServer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Physics2DShapeQueryParameters.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Physics2DShapeQueryResult.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Physics2DTestMotionResult.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsBody2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsBody.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsDirectBodyState.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsDirectSpaceState.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsMaterial.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsServer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsShapeQueryParameters.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PhysicsShapeQueryResult.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PinJoint2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PinJoint.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
Plane.xml DocData: Fix serialization of Variant default values 2020-03-09 11:36:57 +01:00
PlaneMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PlaneShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PointMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Polygon2D.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
PolygonPathFinder.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PoolByteArray.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PoolColorArray.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PoolIntArray.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PoolRealArray.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PoolStringArray.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PoolVector2Array.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PoolVector3Array.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Popup.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PopupDialog.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PopupMenu.xml Document theme_items of multiple classes 2020-01-27 02:15:37 +01:00
PopupPanel.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
Position2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Position3D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PrimitiveMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
PrismMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ProceduralSky.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ProgressBar.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
ProjectSettings.xml GLES2 2D batching - item reordering, light joining and light modulate fix 2020-05-01 07:47:33 +01:00
ProximityGroup.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ProxyTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
QuadMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Quat.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RandomNumberGenerator.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Range.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RayCast2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RayCast.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RayShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RayShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Rect2.xml DocData: Fix serialization of Variant default values 2020-03-09 11:36:57 +01:00
RectangleShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Reference.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ReferenceRect.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ReflectionProbe.xml Make note of 16 probe limit 2020-04-05 04:41:00 -04:00
RemoteTransform2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RemoteTransform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Resource.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ResourceFormatLoader.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ResourceFormatSaver.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ResourceImporter.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ResourceInteractiveLoader.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ResourceLoader.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ResourcePreloader.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ResourceSaver.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RichTextEffect.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
RichTextLabel.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
RID.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RigidBody2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
RigidBody.xml More details in Rigid Body add_force documentation 2020-04-16 12:57:22 +02:00
RootMotionView.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SceneState.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SceneTree.xml Merge pull request #35589 from akien-mga/doc-drop-category-property 2020-01-26 16:34:13 +01:00
SceneTreeTimer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Script.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
ScriptCreateDialog.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ScriptEditor.xml Document how some editor classes should be accessed as singletons only 2020-04-27 10:11:53 +02:00
ScrollBar.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ScrollContainer.xml Document theme_items of multiple classes 2020-01-27 02:15:37 +01:00
SegmentShape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Semaphore.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Separator.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Shader.xml Sync classref with current source 2020-03-25 11:42:15 +01:00
ShaderMaterial.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
Shape2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Shape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ShortCut.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Skeleton2D.xml i18n: Sync translations with Weblate 2020-02-14 17:51:56 +01:00
Skeleton.xml doc: Sync classref with current source 2020-04-16 13:02:36 +02:00
SkeletonIK.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Skin.xml doc: Sync classref with current source 2020-03-09 10:07:59 +01:00
SkinReference.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Sky.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Slider.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SliderJoint.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SoftBody.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Spatial.xml Clarify that angles must be specified as radians in the documentation 2020-04-20 11:53:40 +02:00
SpatialGizmo.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SpatialMaterial.xml updated description of metallic in SpatialMaterial 2020-02-12 15:05:49 +01:00
SpatialVelocityTracker.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SphereMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SphereShape.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SpinBox.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SplitContainer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SpotLight.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SpringArm.xml Document that SpringArm exclusions only work with PhysicsBody objects 2020-03-04 12:40:15 +01:00
Sprite3D.xml Document known performance issues with Sprite3D 2020-03-25 09:40:09 +01:00
Sprite.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SpriteBase3D.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
SpriteFrames.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StaticBody2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StaticBody.xml doc: Remove mention of nonexistent StaticBody simulated motion mode 2020-01-26 20:18:22 +01:00
StreamPeer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StreamPeerBuffer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StreamPeerSSL.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
StreamPeerTCP.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StreamTexture.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
String.xml DocData: Fix serialization of Variant default values 2020-03-09 11:36:57 +01:00
StyleBox.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StyleBoxEmpty.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StyleBoxFlat.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StyleBoxLine.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
StyleBoxTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
SurfaceTool.xml Improve the procedural geometry class documentations 2020-04-27 10:14:42 +02:00
TabContainer.xml Fix incorrect TabContainer documentation for 'get_tab_control()' 2020-04-16 12:57:22 +02:00
Tabs.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
TCP_Server.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
TextEdit.xml Update TextEdit docs - explaining 'override_selected_font_color' role 2020-04-20 11:55:47 +02:00
TextFile.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Texture3D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Texture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
TextureArray.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
TextureButton.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
TextureLayered.xml Finish documenting BakedLightmap and TextureLayered 2020-02-06 13:02:08 +01:00
TextureProgress.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
TextureRect.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Theme.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Thread.xml Clarify docs for Thread.start() godotengine#36032 2020-04-06 18:17:43 +02:00
TileMap.xml clarify autotile_coord in docs 2020-04-16 12:47:18 +02:00
TileSet.xml doc: Sync classref with current source 2020-01-28 10:58:48 +01:00
Timer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ToolButton.xml Completes doc for button classes 2020-02-06 13:02:08 +01:00
TouchScreenButton.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Transform2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Transform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Translation.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
TranslationServer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Tree.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
TreeItem.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
TriangleMesh.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Tween.xml Add an easing/transition type cheatsheet to the Tween documentation 2020-04-27 10:12:11 +02:00
UndoRedo.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Variant.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VBoxContainer.xml Document theme_items of multiple classes 2020-01-27 02:15:37 +01:00
Vector2.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Vector3.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VehicleBody.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VehicleWheel.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VideoPlayer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VideoStream.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
Viewport.xml Add frame diagnostics for GLES2 Batch renderer 2020-04-17 08:54:33 +01:00
ViewportContainer.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
ViewportTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisibilityEnabler2D.xml Improve the VisibilityEnabler and VisibilityNotifier documentations 2020-04-21 14:10:50 +02:00
VisibilityEnabler.xml Improve the VisibilityEnabler and VisibilityNotifier documentations 2020-04-21 14:10:50 +02:00
VisibilityNotifier2D.xml Improve the VisibilityEnabler and VisibilityNotifier documentations 2020-04-21 14:10:50 +02:00
VisibilityNotifier.xml Improve the VisibilityEnabler and VisibilityNotifier documentations 2020-04-21 14:10:50 +02:00
VisualInstance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualServer.xml Add frame diagnostics for GLES2 Batch renderer 2020-04-17 08:54:33 +01:00
VisualShader.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
VisualShaderNode.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
VisualShaderNodeBooleanConstant.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeBooleanUniform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeColorConstant.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeColorFunc.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeColorOp.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeColorUniform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeCompare.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeCubeMap.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeCubeMapUniform.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeCustom.xml Fix some URLs to use HTTPS when available 2020-01-29 02:48:10 +01:00
VisualShaderNodeDeterminant.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeDotProduct.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeExpression.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeFaceForward.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeFresnel.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeGlobalExpression.xml doc: Sync classref with current source 2020-01-28 10:58:48 +01:00
VisualShaderNodeGroupBase.xml Docs for some nodes in visual shader(part 2) 2020-01-28 12:16:09 +03:00
VisualShaderNodeIf.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeInput.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeIs.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeOuterProduct.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeOutput.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarClamp.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarConstant.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarDerivativeFunc.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarFunc.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarInterp.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarOp.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarSmoothStep.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarSwitch.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeScalarUniform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeSwitch.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTexture.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTextureUniform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTextureUniformTriplanar.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTransformCompose.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTransformConstant.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTransformDecompose.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTransformFunc.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTransformMult.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTransformUniform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeTransformVecMult.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeUniform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVec3Constant.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVec3Uniform.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorClamp.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorCompose.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorDecompose.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorDerivativeFunc.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorDistance.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorFunc.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorInterp.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorLen.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorOp.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorRefract.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorScalarMix.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorScalarSmoothStep.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorScalarStep.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VisualShaderNodeVectorSmoothStep.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VScrollBar.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
VSeparator.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
VSlider.xml doc: Sync classref with current source 2020-04-16 13:02:36 +02:00
VSplitContainer.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
WeakRef.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
WindowDialog.xml Add LOTS of missing docs 2020-03-13 17:26:30 +01:00
World2D.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
World.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
WorldEnvironment.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
X509Certificate.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
XMLParser.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00
YSort.xml doc: Drop unused 'category' property from header 2020-01-26 16:02:39 +01:00