Compare commits

...

18 Commits

Author SHA1 Message Date
Hein-Pieter van Braam
b116a45f07 Add changelog for 3.0.4 2018-06-23 16:45:07 +02:00
Hein-Pieter van Braam
d91613592b Godot 3.0.4-stable 'brown paper bag' 2018-06-22 15:33:45 +02:00
Rémi Verschelde
e6df472e8f doc: Remove extraneous empty lines in descriptions 2018-06-22 14:51:59 +02:00
Mel Collins
f6abffdb4a Add longer description to ViewportTexture doc
(cherry picked from commit cf63abac36)
2018-06-22 14:47:09 +02:00
Max Hilbrunner
a1930b1772 [DOCS] Builtin keywords because search is terribad
(cherry picked from commit 5002db6be1)
2018-06-22 14:46:48 +02:00
Max Hilbrunner
9530ce9d3f [DOCS] TreeItem: Small fix for remove_child()
(cherry picked from commit 25b5242d9f)
2018-06-22 14:46:35 +02:00
Max Hilbrunner
3d8e49d9e8 [DOCS] InputEventMouseButton: Factor
(cherry picked from commit 03250259d3)
2018-06-22 14:46:17 +02:00
Mel Collins
64419a2ea1 Add a little to ViewportTexture docs
(cherry picked from commit b820056b38)
2018-06-22 14:45:44 +02:00
letheed
34eabc0602 Fix Vector2 doc of floor, add ceil doc
(cherry picked from commit d759d25aca)
2018-06-22 14:45:18 +02:00
tagcup
ade470352c Added some details in skeleton docs.
Workaround for #19551.

(cherry picked from commit 195e963613)
2018-06-22 14:44:53 +02:00
unknown
ae48b1b94a Added description for abs function in Rect2
(cherry picked from commit d1b3f36eab)
2018-06-22 14:44:34 +02:00
clayjohn
394838901d updated Viewport docs to correct wrong information and fill out empty sections
(cherry picked from commit 650ebdc832)
2018-06-22 14:44:06 +02:00
Bastiaan Olij
f49fcc960b Added some documentation to particles
(cherry picked from commit c4dfef58d9)
2018-06-22 14:43:45 +02:00
Rhody Lugo
2f3e4c1a7a add NoCache wrapper to Command
(cherry picked from commit 920224a535)
2018-06-22 14:42:14 +02:00
Rémi Verschelde
d04cc2855a i18n: Sync translations with Weblate 2018-06-22 10:57:15 +02:00
Rémi Verschelde
909eaede4c Disable threading in Asset Library
Threaded HTTPRequest appears to be crashy on 3.0.x.
Fixes #19336.
2018-06-22 09:30:17 +02:00
Marc Gilleron
4d7aa0b762 Make heightmap shape usable from PhysicsServer
- Fixed bad size check
- Fixed bad member initialization
- Removed unused cell_size (Bullet expects us to use localScaling)
- Accept precomputed min/max height, will be calculated if not provided

(cherry picked from commit a66e1af168)
2018-06-14 15:50:15 +00:00
Hein-Pieter van Braam
98609279b6 Bump version to 3.0.4
And onwards!
2018-06-14 15:37:51 +00:00
536 changed files with 2355 additions and 2205 deletions

View File

@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
## [3.0.4] - 2018-07-23
### Added
- Fix for Bullet's heightmap collider.
- Several documentation fixes.
### Fixed
- Threading problem causing asset library to crash on low threadcount systems.
## [3.0.3] - 2018-07-13
### Added

View File

@@ -125,6 +125,7 @@ env_base.__class__.split_lib = methods.split_lib
env_base.__class__.add_shared_library = methods.add_shared_library
env_base.__class__.add_library = methods.add_library
env_base.__class__.add_program = methods.add_program
env_base.__class__.CommandNoCache = methods.CommandNoCache
env_base["x86_libtheora_opt_gcc"] = False
env_base["x86_libtheora_opt_vc"] = False

View File

@@ -93,7 +93,7 @@ env.add_source_files(env.core_sources, "*.cpp")
# Make binders
import make_binders
env.Command(['method_bind.gen.inc', 'method_bind_ext.gen.inc'], 'make_binders.py', make_binders.run)
env.CommandNoCache(['method_bind.gen.inc', 'method_bind_ext.gen.inc'], 'make_binders.py', make_binders.run)
# Chain load SCsubs

View File

@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="@GDScript" category="Core" version="3.0.3">
<class name="@GDScript" category="Core" version="3.0.4">
<brief_description>
Built-in GDScript functions.
</brief_description>
<description>
This contains the list of built-in gdscript functions. Mostly math functions and other utilities. Everything else is expanded by objects.
List of core built-in GDScript functions. Math functions and other utilities. Everything else is provided by objects. (Keywords: builtin, built in, global functions.)
</description>
<tutorials>
</tutorials>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="@GlobalScope" category="Core" version="3.0.3">
<class name="@GlobalScope" category="Core" version="3.0.4">
<brief_description>
Global scope constants and variables.
</brief_description>
@@ -30,7 +30,6 @@
[Geometry] singleton
</member>
<member name="GodotSharp" type="GodotSharp" setter="" getter="">
[GodotSharp] singleton
</member>
<member name="IP" type="IP" setter="" getter="">
[IP] singleton

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="@NativeScript" category="Core" version="3.0.3">
<class name="@NativeScript" category="Core" version="3.0.4">
<brief_description>
</brief_description>
<description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="@VisualScript" category="Core" version="3.0.3">
<class name="@VisualScript" category="Core" version="3.0.4">
<brief_description>
Built-in visual script functions.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AABB" category="Built-In Types" version="3.0.3">
<class name="AABB" category="Built-In Types" version="3.0.4">
<brief_description>
Axis-Aligned Bounding Box.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ARVRAnchor" inherits="Spatial" category="Core" version="3.0.3">
<class name="ARVRAnchor" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
Anchor point in AR Space.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ARVRCamera" inherits="Camera" category="Core" version="3.0.3">
<class name="ARVRCamera" inherits="Camera" category="Core" version="3.0.4">
<brief_description>
A camera node with a few overrules for AR/VR applied such as location tracking.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ARVRController" inherits="Spatial" category="Core" version="3.0.3">
<class name="ARVRController" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
A spatial node representing a spatially tracked controller.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ARVRInterface" inherits="Reference" category="Core" version="3.0.3">
<class name="ARVRInterface" inherits="Reference" category="Core" version="3.0.4">
<brief_description>
Base class for ARVR interface implementation.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ARVROrigin" inherits="Spatial" category="Core" version="3.0.3">
<class name="ARVROrigin" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
Our origin point in AR/VR.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ARVRPositionalTracker" inherits="Object" category="Core" version="3.0.3">
<class name="ARVRPositionalTracker" inherits="Object" category="Core" version="3.0.4">
<brief_description>
A tracked object
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ARVRServer" inherits="Object" category="Core" version="3.0.3">
<class name="ARVRServer" inherits="Object" category="Core" version="3.0.4">
<brief_description>
This is our AR/VR Server.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AStar" inherits="Reference" category="Core" version="3.0.3">
<class name="AStar" inherits="Reference" category="Core" version="3.0.4">
<brief_description>
AStar class representation that uses vectors as edges.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AcceptDialog" inherits="WindowDialog" category="Core" version="3.0.3">
<class name="AcceptDialog" inherits="WindowDialog" category="Core" version="3.0.4">
<brief_description>
Base dialog for user notification.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AnimatedSprite" inherits="Node2D" category="Core" version="3.0.3">
<class name="AnimatedSprite" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Sprite node that can use multiple textures for animation.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AnimatedSprite3D" inherits="SpriteBase3D" category="Core" version="3.0.3">
<class name="AnimatedSprite3D" inherits="SpriteBase3D" category="Core" version="3.0.4">
<brief_description>
2D sprite node in 3D world, that can use multiple 2D textures for animation.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Animation" inherits="Resource" category="Core" version="3.0.3">
<class name="Animation" inherits="Resource" category="Core" version="3.0.4">
<brief_description>
Contains data used to animate everything in the engine.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AnimationPlayer" inherits="Node" category="Core" version="3.0.3">
<class name="AnimationPlayer" inherits="Node" category="Core" version="3.0.4">
<brief_description>
Container and player of [Animation] resources.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AnimationTreePlayer" inherits="Node" category="Core" version="3.0.3">
<class name="AnimationTreePlayer" inherits="Node" category="Core" version="3.0.4">
<brief_description>
Animation Player that uses a node graph for blending Animations.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Area" inherits="CollisionObject" category="Core" version="3.0.3">
<class name="Area" inherits="CollisionObject" category="Core" version="3.0.4">
<brief_description>
General purpose area node for detection and 3D physics influence.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Area2D" inherits="CollisionObject2D" category="Core" version="3.0.3">
<class name="Area2D" inherits="CollisionObject2D" category="Core" version="3.0.4">
<brief_description>
2D area for detection and 2D physics influence.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Array" category="Built-In Types" version="3.0.3">
<class name="Array" category="Built-In Types" version="3.0.4">
<brief_description>
Generic array datatype.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ArrayMesh" inherits="Mesh" category="Core" version="3.0.3">
<class name="ArrayMesh" inherits="Mesh" category="Core" version="3.0.4">
<brief_description>
</brief_description>
<description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AtlasTexture" inherits="Texture" category="Core" version="3.0.3">
<class name="AtlasTexture" inherits="Texture" category="Core" version="3.0.4">
<brief_description>
Packs multiple small textures in a single, bigger one. Helps to optimize video memory costs and render calls.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioBusLayout" inherits="Resource" category="Core" version="3.0.3">
<class name="AudioBusLayout" inherits="Resource" category="Core" version="3.0.4">
<brief_description>
Stores information about the audiobusses.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffect" inherits="Resource" category="Core" version="3.0.3">
<class name="AudioEffect" inherits="Resource" category="Core" version="3.0.4">
<brief_description>
Audio Effect For Audio.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectAmplify" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectAmplify" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Amplify audio effect to an Audio bus.
Increases or decreases the volume of the selected audio bus.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectBandLimitFilter" inherits="AudioEffectFilter" category="Core" version="3.0.3">
<class name="AudioEffectBandLimitFilter" inherits="AudioEffectFilter" category="Core" version="3.0.4">
<brief_description>
Adds a band limit filter to the Audio Bus.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectBandPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.3">
<class name="AudioEffectBandPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.4">
<brief_description>
Adds a band pass filter to the Audio Bus.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectChorus" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectChorus" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a chorus audio effect.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectCompressor" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectCompressor" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Compressor audio effect to an Audio bus.
Reduces sounds that exceed a certain threshold level, smooths out the dynamics and increases the overall volume.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectDelay" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectDelay" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Delay audio effect to an Audio bus. Plays input signal back after a period of time.
Two tap delay and feedback options.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectDistortion" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectDistortion" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Distortion audio effect to an Audio bus.
Modify the sound to make it dirty.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectEQ" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectEQ" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Base class for audio equalizers. Gives you control over frequencies.
Use it to create a custom equalizer if [AudioEffectEQ6], [AudioEffectEQ10] or [AudioEffectEQ21] don't fit your needs.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectEQ10" inherits="AudioEffectEQ" category="Core" version="3.0.3">
<class name="AudioEffectEQ10" inherits="AudioEffectEQ" category="Core" version="3.0.4">
<brief_description>
Adds a 10-band equalizer audio effect to an Audio bus. Gives you control over frequencies from 31 Hz to 16000 Hz.
Each frequency can be modulated between -60/+24 dB.
@@ -16,7 +16,6 @@
Band 8 : 4000 Hz
Band 9 : 8000 Hz
Band 10 : 16000 Hz
See also [AudioEffectEQ], [AudioEffectEQ6], [AudioEffectEQ21].
</description>
<tutorials>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectEQ21" inherits="AudioEffectEQ" category="Core" version="3.0.3">
<class name="AudioEffectEQ21" inherits="AudioEffectEQ" category="Core" version="3.0.4">
<brief_description>
Adds a 21-band equalizer audio effect to an Audio bus. Gives you control over frequencies from 22 Hz to 22000 Hz.
Each frequency can be modulated between -60/+24 dB.
@@ -27,7 +27,6 @@
Band 19 : 11000 Hz
Band 20 : 16000 Hz
Band 21 : 22000 Hz
See also [AudioEffectEQ], [AudioEffectEQ6], [AudioEffectEQ10].
</description>
<tutorials>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectEQ6" inherits="AudioEffectEQ" category="Core" version="3.0.3">
<class name="AudioEffectEQ6" inherits="AudioEffectEQ" category="Core" version="3.0.4">
<brief_description>
Adds a 6-band equalizer audio effect to an Audio bus. Gives you control over frequencies from 32 Hz to 10000 Hz.
Each frequency can be modulated between -60/+24 dB.
@@ -12,7 +12,6 @@
Band 4 : 1000 Hz
Band 5 : 3200 Hz
Band 6 : 10000 Hz
See also [AudioEffectEQ], [AudioEffectEQ10], [AudioEffectEQ21].
</description>
<tutorials>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectFilter" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectFilter" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a filter to the Audio Bus.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectHighPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.3">
<class name="AudioEffectHighPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.4">
<brief_description>
Adds a high pass filter to the Audio Bus.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectHighShelfFilter" inherits="AudioEffectFilter" category="Core" version="3.0.3">
<class name="AudioEffectHighShelfFilter" inherits="AudioEffectFilter" category="Core" version="3.0.4">
<brief_description>
</brief_description>
<description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectLimiter" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectLimiter" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a soft clip Limiter audio effect to an Audio bus.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectLowPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.3">
<class name="AudioEffectLowPassFilter" inherits="AudioEffectFilter" category="Core" version="3.0.4">
<brief_description>
Adds a low pass filter to the Audio Bus.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectLowShelfFilter" inherits="AudioEffectFilter" category="Core" version="3.0.3">
<class name="AudioEffectLowShelfFilter" inherits="AudioEffectFilter" category="Core" version="3.0.4">
<brief_description>
</brief_description>
<description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectNotchFilter" inherits="AudioEffectFilter" category="Core" version="3.0.3">
<class name="AudioEffectNotchFilter" inherits="AudioEffectFilter" category="Core" version="3.0.4">
<brief_description>
Adds a notch filter to the Audio Bus.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectPanner" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectPanner" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Panner audio effect to an Audio bus. Pans sound left or right.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectPhaser" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectPhaser" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Phaser audio effect to an Audio bus.
Combines the original signal with a copy that is slightly out of phase with the original.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectPitchShift" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectPitchShift" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Pitch shift audio effect to an Audio bus.
Raises or lowers the pitch of original sound.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectReverb" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectReverb" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
Adds a Reverb audio effect to an Audio bus.
Simulates the sound of acoustic environments such as rooms, concert halls, caverns, or an open spaces.

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioEffectStereoEnhance" inherits="AudioEffect" category="Core" version="3.0.3">
<class name="AudioEffectStereoEnhance" inherits="AudioEffect" category="Core" version="3.0.4">
<brief_description>
</brief_description>
<description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioServer" inherits="Object" category="Core" version="3.0.3">
<class name="AudioServer" inherits="Object" category="Core" version="3.0.4">
<brief_description>
Server interface for low level audio access.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioStream" inherits="Resource" category="Core" version="3.0.3">
<class name="AudioStream" inherits="Resource" category="Core" version="3.0.4">
<brief_description>
Base class for audio streams.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioStreamPlayback" inherits="Reference" category="Core" version="3.0.3">
<class name="AudioStreamPlayback" inherits="Reference" category="Core" version="3.0.4">
<brief_description>
Meta class for playing back audio.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioStreamPlayer" inherits="Node" category="Core" version="3.0.3">
<class name="AudioStreamPlayer" inherits="Node" category="Core" version="3.0.4">
<brief_description>
Plays back audio.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioStreamPlayer2D" inherits="Node2D" category="Core" version="3.0.3">
<class name="AudioStreamPlayer2D" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Plays audio in 2D.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioStreamPlayer3D" inherits="Spatial" category="Core" version="3.0.3">
<class name="AudioStreamPlayer3D" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
Plays 3D sound in 3D space.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioStreamRandomPitch" inherits="AudioStream" category="Core" version="3.0.3">
<class name="AudioStreamRandomPitch" inherits="AudioStream" category="Core" version="3.0.4">
<brief_description>
Plays audio with random pitch tweaking.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="AudioStreamSample" inherits="AudioStream" category="Core" version="3.0.3">
<class name="AudioStreamSample" inherits="AudioStream" category="Core" version="3.0.4">
<brief_description>
Plays audio.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BackBufferCopy" inherits="Node2D" category="Core" version="3.0.3">
<class name="BackBufferCopy" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Copies a region of the screen (or the whole screen) to a buffer so it can be accessed with the texscreen() shader instruction.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BakedLightmap" inherits="VisualInstance" category="Core" version="3.0.3">
<class name="BakedLightmap" inherits="VisualInstance" category="Core" version="3.0.4">
<brief_description>
</brief_description>
<description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BakedLightmapData" inherits="Resource" category="Core" version="3.0.3">
<class name="BakedLightmapData" inherits="Resource" category="Core" version="3.0.4">
<brief_description>
</brief_description>
<description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BaseButton" inherits="Control" category="Core" version="3.0.3">
<class name="BaseButton" inherits="Control" category="Core" version="3.0.4">
<brief_description>
Base class for different kinds of buttons.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Basis" category="Built-In Types" version="3.0.3">
<class name="Basis" category="Built-In Types" version="3.0.4">
<brief_description>
3x3 matrix datatype.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BitMap" inherits="Resource" category="Core" version="3.0.3">
<class name="BitMap" inherits="Resource" category="Core" version="3.0.4">
<brief_description>
Boolean matrix.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BitmapFont" inherits="Font" category="Core" version="3.0.3">
<class name="BitmapFont" inherits="Font" category="Core" version="3.0.4">
<brief_description>
Renders text using [code]*.fnt[/code] fonts.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BoneAttachment" inherits="Spatial" category="Core" version="3.0.3">
<class name="BoneAttachment" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
A node that will attach to a bone.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BoxContainer" inherits="Container" category="Core" version="3.0.3">
<class name="BoxContainer" inherits="Container" category="Core" version="3.0.4">
<brief_description>
Base class for box containers.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="BoxShape" inherits="Shape" category="Core" version="3.0.3">
<class name="BoxShape" inherits="Shape" category="Core" version="3.0.4">
<brief_description>
Box shape resource.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Button" inherits="BaseButton" category="Core" version="3.0.3">
<class name="Button" inherits="BaseButton" category="Core" version="3.0.4">
<brief_description>
Standard themed Button.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ButtonGroup" inherits="Resource" category="Core" version="3.0.3">
<class name="ButtonGroup" inherits="Resource" category="Core" version="3.0.4">
<brief_description>
Group of Buttons.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Camera" inherits="Spatial" category="Core" version="3.0.3">
<class name="Camera" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
Camera node, displays from a point of view.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Camera2D" inherits="Node2D" category="Core" version="3.0.3">
<class name="Camera2D" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Camera node for 2D scenes.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CanvasItem" inherits="Node" category="Core" version="3.0.3">
<class name="CanvasItem" inherits="Node" category="Core" version="3.0.4">
<brief_description>
Base class of anything 2D.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CanvasItemMaterial" inherits="Material" category="Core" version="3.0.3">
<class name="CanvasItemMaterial" inherits="Material" category="Core" version="3.0.4">
<brief_description>
A material for [CanvasItem]s.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CanvasLayer" inherits="Node" category="Core" version="3.0.3">
<class name="CanvasLayer" inherits="Node" category="Core" version="3.0.4">
<brief_description>
Canvas drawing layer.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CanvasModulate" inherits="Node2D" category="Core" version="3.0.3">
<class name="CanvasModulate" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Tint the entire canvas.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CapsuleMesh" inherits="PrimitiveMesh" category="Core" version="3.0.3">
<class name="CapsuleMesh" inherits="PrimitiveMesh" category="Core" version="3.0.4">
<brief_description>
Class representing a capsule-shaped [PrimitiveMesh].
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CapsuleShape" inherits="Shape" category="Core" version="3.0.3">
<class name="CapsuleShape" inherits="Shape" category="Core" version="3.0.4">
<brief_description>
Capsule shape for collisions.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CapsuleShape2D" inherits="Shape2D" category="Core" version="3.0.3">
<class name="CapsuleShape2D" inherits="Shape2D" category="Core" version="3.0.4">
<brief_description>
Capsule shape for 2D collisions.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CenterContainer" inherits="Container" category="Core" version="3.0.3">
<class name="CenterContainer" inherits="Container" category="Core" version="3.0.4">
<brief_description>
Keeps children controls centered.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CheckBox" inherits="Button" category="Core" version="3.0.3">
<class name="CheckBox" inherits="Button" category="Core" version="3.0.4">
<brief_description>
Binary choice user interface widget.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CheckButton" inherits="Button" category="Core" version="3.0.3">
<class name="CheckButton" inherits="Button" category="Core" version="3.0.4">
<brief_description>
Checkable button.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CircleShape2D" inherits="Shape2D" category="Core" version="3.0.3">
<class name="CircleShape2D" inherits="Shape2D" category="Core" version="3.0.4">
<brief_description>
Circular shape for 2D collisions.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ClassDB" inherits="Object" category="Core" version="3.0.3">
<class name="ClassDB" inherits="Object" category="Core" version="3.0.4">
<brief_description>
Class information repository.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CollisionObject" inherits="Spatial" category="Core" version="3.0.3">
<class name="CollisionObject" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
Base node for collision objects.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CollisionObject2D" inherits="Node2D" category="Core" version="3.0.3">
<class name="CollisionObject2D" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Base node for 2D collision objects.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CollisionPolygon" inherits="Spatial" category="Core" version="3.0.3">
<class name="CollisionPolygon" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
Editor-only class for defining a collision polygon in 3D space.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CollisionPolygon2D" inherits="Node2D" category="Core" version="3.0.3">
<class name="CollisionPolygon2D" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Defines a 2D collision polygon.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CollisionShape" inherits="Spatial" category="Core" version="3.0.3">
<class name="CollisionShape" inherits="Spatial" category="Core" version="3.0.4">
<brief_description>
Node that represents collision shape data in 3D space.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CollisionShape2D" inherits="Node2D" category="Core" version="3.0.3">
<class name="CollisionShape2D" inherits="Node2D" category="Core" version="3.0.4">
<brief_description>
Node that represents collision shape data in 2D space.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="Color" category="Built-In Types" version="3.0.3">
<class name="Color" category="Built-In Types" version="3.0.4">
<brief_description>
Color in RGBA format with some support for ARGB format.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ColorPicker" inherits="BoxContainer" category="Core" version="3.0.3">
<class name="ColorPicker" inherits="BoxContainer" category="Core" version="3.0.4">
<brief_description>
Color picker control.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ColorPickerButton" inherits="Button" category="Core" version="3.0.3">
<class name="ColorPickerButton" inherits="Button" category="Core" version="3.0.4">
<brief_description>
Button that pops out a [ColorPicker].
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ColorRect" inherits="Control" category="Core" version="3.0.3">
<class name="ColorRect" inherits="Control" category="Core" version="3.0.4">
<brief_description>
Colored rect for canvas.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ConcavePolygonShape" inherits="Shape" category="Core" version="3.0.3">
<class name="ConcavePolygonShape" inherits="Shape" category="Core" version="3.0.4">
<brief_description>
Concave polygon shape.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ConcavePolygonShape2D" inherits="Shape2D" category="Core" version="3.0.3">
<class name="ConcavePolygonShape2D" inherits="Shape2D" category="Core" version="3.0.4">
<brief_description>
Concave polygon 2D shape resource for physics.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ConeTwistJoint" inherits="Joint" category="Core" version="3.0.3">
<class name="ConeTwistJoint" inherits="Joint" category="Core" version="3.0.4">
<brief_description>
A twist joint between two 3D bodies.
</brief_description>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ConfigFile" inherits="Reference" category="Core" version="3.0.3">
<class name="ConfigFile" inherits="Reference" category="Core" version="3.0.4">
<brief_description>
Helper class to handle INI-style files.
</brief_description>

Some files were not shown because too many files have changed in this diff Show More