doc: Replace some more "val" with "value" + sync

This commit is contained in:
Rémi Verschelde 2018-01-17 10:43:23 +01:00
parent ff59c562f7
commit 6c46787749
58 changed files with 82 additions and 83 deletions

View file

@ -375,18 +375,18 @@ void StreamPeer::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_big_endian", "enable"), &StreamPeer::set_big_endian);
ClassDB::bind_method(D_METHOD("is_big_endian_enabled"), &StreamPeer::is_big_endian_enabled);
ClassDB::bind_method(D_METHOD("put_8", "val"), &StreamPeer::put_8);
ClassDB::bind_method(D_METHOD("put_u8", "val"), &StreamPeer::put_u8);
ClassDB::bind_method(D_METHOD("put_16", "val"), &StreamPeer::put_16);
ClassDB::bind_method(D_METHOD("put_u16", "val"), &StreamPeer::put_u16);
ClassDB::bind_method(D_METHOD("put_32", "val"), &StreamPeer::put_32);
ClassDB::bind_method(D_METHOD("put_u32", "val"), &StreamPeer::put_u32);
ClassDB::bind_method(D_METHOD("put_64", "val"), &StreamPeer::put_64);
ClassDB::bind_method(D_METHOD("put_u64", "val"), &StreamPeer::put_u64);
ClassDB::bind_method(D_METHOD("put_float", "val"), &StreamPeer::put_float);
ClassDB::bind_method(D_METHOD("put_double", "val"), &StreamPeer::put_double);
ClassDB::bind_method(D_METHOD("put_utf8_string", "val"), &StreamPeer::put_utf8_string);
ClassDB::bind_method(D_METHOD("put_var", "val"), &StreamPeer::put_var);
ClassDB::bind_method(D_METHOD("put_8", "value"), &StreamPeer::put_8);
ClassDB::bind_method(D_METHOD("put_u8", "value"), &StreamPeer::put_u8);
ClassDB::bind_method(D_METHOD("put_16", "value"), &StreamPeer::put_16);
ClassDB::bind_method(D_METHOD("put_u16", "value"), &StreamPeer::put_u16);
ClassDB::bind_method(D_METHOD("put_32", "value"), &StreamPeer::put_32);
ClassDB::bind_method(D_METHOD("put_u32", "value"), &StreamPeer::put_u32);
ClassDB::bind_method(D_METHOD("put_64", "value"), &StreamPeer::put_64);
ClassDB::bind_method(D_METHOD("put_u64", "value"), &StreamPeer::put_u64);
ClassDB::bind_method(D_METHOD("put_float", "value"), &StreamPeer::put_float);
ClassDB::bind_method(D_METHOD("put_double", "value"), &StreamPeer::put_double);
ClassDB::bind_method(D_METHOD("put_utf8_string", "value"), &StreamPeer::put_utf8_string);
ClassDB::bind_method(D_METHOD("put_var", "value"), &StreamPeer::put_var);
ClassDB::bind_method(D_METHOD("get_8"), &StreamPeer::get_8);
ClassDB::bind_method(D_METHOD("get_u8"), &StreamPeer::get_u8);
@ -418,7 +418,6 @@ void StreamPeerBuffer::_bind_methods() {
ClassDB::bind_method(D_METHOD("duplicate"), &StreamPeerBuffer::duplicate);
ADD_PROPERTY(PropertyInfo(Variant::POOL_BYTE_ARRAY, "data_array"), "set_data_array", "get_data_array");
}
Error StreamPeerBuffer::put_data(const uint8_t *p_data, int p_bytes) {

View file

@ -466,7 +466,7 @@
</argument>
<argument index="1" name="to" type="float">
</argument>
<argument index="2" name="value" type="float">
<argument index="2" name="weight" type="float">
</argument>
<description>
Returns a normalized value considering the given range.

View file

@ -7,7 +7,7 @@
AABB consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
</tutorials>
<demos>
</demos>

View file

@ -8,7 +8,7 @@
Animations are just data containers, and must be added to odes such as an [AnimationPlayer] or [AnimationTreePlayer] to be played back.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/animation/index.html
http://docs.godotengine.org/en/3.0/learning/features/animation/index.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
An animation player is used for general purpose playback of [Animation] resources. It contains a dictionary of animations (referenced by name) and custom blend times between their transitions. Additionally, animations can be played and blended in different channels.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/step_by_step/animations.html
http://docs.godotengine.org/en/3.0/learning/step_by_step/animations.html
http://docs.godotengine.org/en/3.0/learning/features/animation/index.html
</tutorials>
<demos>

View file

@ -7,7 +7,7 @@
AudioServer is a low level server interface for audio access. It is in charge of creating sample data (playable audio) as well as its playback via a voice interface.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/audio/audio_buses.html
http://docs.godotengine.org/en/3.0/learning/features/audio/audio_buses.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Base class for audio streams. Audio streams are used for music playback, or other types of streamed sounds that don't fit or require more flexibility than a [Sample].
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/audio/audio_streams.html
http://docs.godotengine.org/en/3.0/learning/features/audio/audio_streams.html
</tutorials>
<demos>
</demos>

View file

@ -5,7 +5,7 @@
<description>
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/baked_lightmaps.html
http://docs.godotengine.org/en/3.0/learning/features/3d/baked_lightmaps.html
</tutorials>
<demos>
</demos>

View file

@ -11,7 +11,7 @@
Ultimately, a transform notification can be requested, which will notify the node that its global position changed in case the parent tree changed.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/2d/2d_transforms.html
http://docs.godotengine.org/en/3.0/learning/features/2d/2d_transforms.html
http://docs.godotengine.org/en/3.0/learning/features/2d/custom_drawing_in_2d.html
</tutorials>
<demos>

View file

@ -7,7 +7,7 @@
Canvas drawing layer. [CanvasItem] nodes that are direct or indirect children of a [code]CanvasLayer[/code] will be drawn in that layer. The layer is a numeric index that defines the draw order. The default 2D scene renders with index 0, so a [code]CanvasLayer[/code] with index -1 will be drawn below, and one with index 1 will be drawn above. This is very useful for HUDs (in layer 1+ or above), or backgrounds (in layer -1 or below).
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/2d/2d_transforms.html
http://docs.godotengine.org/en/3.0/learning/features/2d/2d_transforms.html
http://docs.godotengine.org/en/3.0/learning/features/2d/canvas_layers.html
</tutorials>
<demos>

View file

@ -7,7 +7,7 @@
Editor facility for creating and editing collision shapes in 3D space. You can use this node to represent all sorts of collision shapes, for example, add this to an [Area] to give it a detection shape, or add it to a [PhysicsBody] to give create solid object. [b]IMPORTANT[/b]: this is an Editor-only helper to create shapes, use [method get_shape] to get the actual shape.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Editor facility for creating and editing collision shapes in 2D space. You can use this node to represent all sorts of collision shapes, for example, add this to an [Area2D] to give it a detection shape, or add it to a [PhysicsBody2D] to give create solid object. [b]IMPORTANT[/b]: this is an Editor-only helper to create shapes, use [method get_shape] to get the actual shape.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
</tutorials>
<demos>
</demos>

View file

@ -13,8 +13,8 @@
[Theme] resources change the Control's appearance. If you change the [Theme] on a [code]Control[/code] node, it affects all of its children. To override some of the theme's parameters, call one of the [code]add_*_override[/code] methods, like [method add_font_override]. You can override the theme with the inspector.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/gui/index.html
http://docs.godotengine.org/en/3.0/learning/features/2d/custom_drawing_in_2d.html
http://docs.godotengine.org/en/3.0/learning/features/gui/index.html
http://docs.godotengine.org/en/3.0/learning/features/2d/custom_drawing_in_2d.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
A DirectionalLight is a type of [Light] node that emits light constantly in one direction (the negative z axis of the node). It is used lights with strong intensity that are located far away from the scene to model sunlight or moonlight. The worldspace location of the DirectionalLight transform (origin) is ignored, only the basis is used do determine light direction.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
</tutorials>
<demos>
</demos>

View file

@ -23,7 +23,7 @@
[/codeblock]
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/step_by_step/filesystem.html
http://docs.godotengine.org/en/3.0/learning/step_by_step/filesystem.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Plugins are used by the editor to extend functionality. The most common types of plugins are those which edit a given node or resource type, import plugins and export plugins.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/development/plugins/index.html
http://docs.godotengine.org/en/3.0/development/plugins/index.html
</tutorials>
<demos>
</demos>

View file

@ -12,7 +12,7 @@
- Adjustments
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/environment_and_post_processing.html
http://docs.godotengine.org/en/3.0/learning/features/3d/environment_and_post_processing.html
http://docs.godotengine.org/en/3.0/learning/features/3d/high_dynamic_range.html
</tutorials>
<demos>

View file

@ -22,7 +22,7 @@
[/codeblock]
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/step_by_step/filesystem.html
http://docs.godotengine.org/en/3.0/learning/step_by_step/filesystem.html
</tutorials>
<demos>
</demos>

View file

@ -5,7 +5,7 @@
<description>
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/gi_probes.html
http://docs.godotengine.org/en/3.0/learning/features/3d/gi_probes.html
</tutorials>
<demos>
</demos>

View file

@ -10,7 +10,7 @@
For more information on HTTP, see https://developer.mozilla.org/en-US/docs/Web/HTTP (or read RFC 2616 to get it straight from the source: https://tools.ietf.org/html/rfc2616).
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/networking/http_client_class.html
http://docs.godotengine.org/en/3.0/learning/features/networking/http_client_class.html
http://docs.godotengine.org/en/3.0/learning/features/networking/ssl_certificates.html
</tutorials>
<demos>

View file

@ -8,7 +8,7 @@
Can be used to make HTTP requests, i.e. download or upload files or web content via HTTP.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/networking/ssl_certificates.html
http://docs.godotengine.org/en/3.0/learning/features/networking/ssl_certificates.html
</tutorials>
<demos>
</demos>

View file

@ -9,7 +9,7 @@
Kinematic Characters: KinematicBody also has an API for moving objects (the [method move_and_collide] and [method move_and_slide] methods) while performing collision tests. This makes them really useful to implement characters that collide against a world, but that don't require advanced physics.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/kinematic_character_2d.html
http://docs.godotengine.org/en/3.0/learning/features/physics/kinematic_character_2d.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Light is the abstract base class for light nodes, so it shouldn't be used directly (It can't be instanced). Other types of light nodes inherit from it. Light contains the common variables and parameters used for lighting.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Manages the connection to network peers. Assigns unique IDs to each client connected to the server.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/networking/high_level_multiplayer.html
http://docs.godotengine.org/en/3.0/learning/features/networking/high_level_multiplayer.html
</tutorials>
<demos>
</demos>

View file

@ -16,7 +16,7 @@
[b]Networking with nodes:[/b] After connecting to a server (or making one, see [NetworkedMultiplayerENet]) it is possible to use the built-in RPC (remote procedure call) system to communicate over the network. By calling [method rpc] with a method name, it will be called locally and in all connected peers (peers = clients and the server that accepts connections), with behaviour varying depending on the network mode ([method set_network_mode]) of the receiving peer. To identify which node receives the RPC call Godot will use its [NodePath] (make sure node names are the same on all peers).
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/step_by_step/scenes_and_nodes.html
http://docs.godotengine.org/en/3.0/learning/step_by_step/scenes_and_nodes.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
A 2D game object, with a position, rotation and scale. All 2D physics nodes and sprites inherit from Node2D. Use Node2D as a parent node to move, scale and rotate children in a 2D project. Also gives control on the node's render order.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/2d/custom_drawing_in_2d.html
http://docs.godotengine.org/en/3.0/learning/features/2d/custom_drawing_in_2d.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
An OmniDirectional light is a type of [Light] node that emits lights in all directions. The light is attenuated through the distance and this attenuation can be configured by changing the energy, radius and attenuation parameters of [Light].
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Direct access object to a space in the [Physics2DServer]. It's used mainly to do queries against objects and areas residing in a given space.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
PhysicsBody is an abstract base class for implementing a physics body. All *Body types inherit from it.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
PhysicsBody2D is an abstract base class for implementing a physics body. All *Body2D types inherit from it.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Direct access object to a space in the [PhysicsServer]. It's used mainly to do queries against objects and areas residing in a given space.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Plane represents a normalized plane equation. Basically, "normal" is the normal of the plane (a,b,c normalized), and "d" is the distance from the origin to the plane (in the direction of "normal"). "Over" or "Above" the plane is considered the side of the plane towards where the normal is pointing.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Rect2 consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
</tutorials>
<demos>
</demos>

View file

@ -5,7 +5,7 @@
<description>
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/reflection_probes.html
http://docs.godotengine.org/en/3.0/learning/features/3d/reflection_probes.html
</tutorials>
<demos>
</demos>

View file

@ -8,7 +8,7 @@
Note that assignments to [member bbcode_text] clear the tag stack and reconstruct it from the property's contents. Any edits made to [member bbcode_text] will erase previous edits made from other manual sources such as [method append_bbcode] and the [code]push_*[/code] / [method pop] methods.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/gui/bbcode_in_richtextlabel.html
http://docs.godotengine.org/en/3.0/learning/features/gui/bbcode_in_richtextlabel.html
</tutorials>
<demos>
</demos>

View file

@ -11,7 +11,7 @@
As a warning, don't change RigidBody's position every frame or very often. Sporadic changes work fine, but physics runs at a different granularity (fixed hz) than usual rendering (process callback) and maybe even in a separate thread, so changing this from a process loop will yield strange behavior.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
</tutorials>
<demos>
</demos>

View file

@ -5,7 +5,7 @@
<description>
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/step_by_step/scene_tree.html
http://docs.godotengine.org/en/3.0/learning/step_by_step/scene_tree.html
http://docs.godotengine.org/en/3.0/learning/features/viewports/multiple_resolutions.html
</tutorials>
<demos>

View file

@ -8,7 +8,7 @@
The 'new' method of a script subclass creates a new instance. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/step_by_step/scripting.html
http://docs.godotengine.org/en/3.0/learning/step_by_step/scripting.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
To be changed, ignore.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/shading/index.html
http://docs.godotengine.org/en/3.0/learning/features/shading/index.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Base class for all 3D shape resources. All 3D shapes that inherit from this can be set into a [PhysicsBody] or [Area].
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Base class for all 2D Shapes. All 2D shape types inherit from this.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
http://docs.godotengine.org/en/3.0/learning/features/physics/physics_introduction.html
</tutorials>
<demos>
</demos>

View file

@ -9,7 +9,7 @@
Affine operations (rotate, scale, translate) happen in parent's local coordinate system, unless the Spatial object is set as top level. Affine operations in this coordinate system correspond to direct affine operations on the Spatial's transform. The word local below refers to this coordinate system. The coordinate system that is attached to the Spatial object itself is referred to as object-local coordinate system.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/introduction_to_3d.html
http://docs.godotengine.org/en/3.0/learning/features/3d/introduction_to_3d.html
</tutorials>
<demos>
</demos>

View file

@ -5,7 +5,7 @@
<description>
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/spatial_material.html
http://docs.godotengine.org/en/3.0/learning/features/3d/spatial_material.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
A SpotLight light is a type of [Light] node that emits lights in a specific direction, in the shape of a cone. The light is attenuated through the distance and this attenuation can be configured by changing the energy, radius and attenuation parameters of [Light]. TODO: Image of a spotlight.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
http://docs.godotengine.org/en/3.0/learning/features/3d/lights_and_shadows.html
</tutorials>
<demos>
</demos>

View file

@ -134,7 +134,7 @@
<method name="put_16">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put a signed 16 bit value into the stream.
@ -143,7 +143,7 @@
<method name="put_32">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put a signed 32 bit value into the stream.
@ -152,7 +152,7 @@
<method name="put_64">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put a signed 64 bit value into the stream.
@ -161,7 +161,7 @@
<method name="put_8">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put a signed byte into the stream.
@ -179,7 +179,7 @@
<method name="put_double">
<return type="void">
</return>
<argument index="0" name="val" type="float">
<argument index="0" name="value" type="float">
</argument>
<description>
Put a double-precision float into the stream.
@ -188,7 +188,7 @@
<method name="put_float">
<return type="void">
</return>
<argument index="0" name="val" type="float">
<argument index="0" name="value" type="float">
</argument>
<description>
Put a single-precision float into the stream.
@ -206,7 +206,7 @@
<method name="put_u16">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put an unsigned 16 bit value into the stream.
@ -215,7 +215,7 @@
<method name="put_u32">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put an unsigned 32 bit value into the stream.
@ -224,7 +224,7 @@
<method name="put_u64">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put an unsigned 64 bit value into the stream.
@ -233,7 +233,7 @@
<method name="put_u8">
<return type="void">
</return>
<argument index="0" name="val" type="int">
<argument index="0" name="value" type="int">
</argument>
<description>
Put an unsigned byte into the stream.
@ -242,7 +242,7 @@
<method name="put_utf8_string">
<return type="void">
</return>
<argument index="0" name="val" type="String">
<argument index="0" name="value" type="String">
</argument>
<description>
Put a zero-terminated utf8 string into the stream.
@ -251,7 +251,7 @@
<method name="put_var">
<return type="void">
</return>
<argument index="0" name="val" type="Variant">
<argument index="0" name="value" type="Variant">
</argument>
<description>
Put a Variant into the stream.

View file

@ -7,7 +7,7 @@
SSL Stream peer. This object can be used to connect to SSL servers.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/networking/ssl_certificates.html
http://docs.godotengine.org/en/3.0/learning/features/networking/ssl_certificates.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Node for 2D tile-based maps. Tilemaps use a [TileSet] which contain a list of tiles (textures plus optional collision, navigation, and/or occluder shapes) which are used to create grid-based maps.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/2d/using_tilemaps.html
http://docs.godotengine.org/en/3.0/learning/features/2d/using_tilemaps.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Represents one or many transformations in 3D space such as translation, rotation, or scaling. It consists of a [Basis] "basis" and an [Vector3] "origin". It is similar to a 3x4 matrix.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
2-element structure that can be used to represent positions in 2d-space, or any other pair of numeric values.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Vector3 is one of the core classes of the engine, and includes several built-in helper functions to perform basic vector math operations.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
http://docs.godotengine.org/en/3.0/learning/features/math/index.html
</tutorials>
<demos>
</demos>

View file

@ -12,7 +12,7 @@
Finally, viewports can also behave as render targets, in which case they will not be visible unless the associated texture is used to draw.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/2d/2d_transforms.html
http://docs.godotengine.org/en/3.0/learning/features/2d/2d_transforms.html
http://docs.godotengine.org/en/3.0/learning/features/viewports/index.html
</tutorials>
<demos>

View file

@ -7,7 +7,7 @@
Class that has everything pertaining to a world. A physics space, a visual scenario and a sound space. Spatial nodes register their resources into the current world.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
Class that has everything pertaining to a 2D world. A physics space, a visual scenario and a sound space. 2D nodes register their resources into the current 2D world.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
http://docs.godotengine.org/en/3.0/learning/features/physics/ray-casting.html
</tutorials>
<demos>
</demos>

View file

@ -7,7 +7,7 @@
The [code]WorldEnvironment[/code] node can be added to a scene in order to set default [Environment] variables for the scene. The [code]WorldEnvironment[/code] can be overridden by an [Environment] node set on the current [Camera]. Additionally, only one [code]WorldEnvironment[/code] may be instanced in a given scene at a time. The [code]WorldEnvironment[/code] allows the user to specify default lighting parameters (e.g. ambient lighting), various post-processing effects (e.g. SSAO, DOF, Tonemapping), and how to draw the background (e.g. solid color, skybox).
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/environment_and_post_processing.html
http://docs.godotengine.org/en/3.0/learning/features/3d/environment_and_post_processing.html
</tutorials>
<demos>
</demos>

View file

@ -8,7 +8,7 @@
[method new] creates a new instance of the script. [method Object.set_script] extends an existing object, if that object's class matches one of the script's base classes.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/scripting/gdscript/index.html
http://docs.godotengine.org/en/3.0/learning/scripting/gdscript/index.html
</tutorials>
<demos>
</demos>

View file

@ -10,7 +10,7 @@
A GridMap is split into a sparse collection of octants for efficient rendering and physics processing. Every octant has the same dimensions and can contain several cells.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/3d/using_gridmaps.html
http://docs.godotengine.org/en/3.0/learning/features/3d/using_gridmaps.html
</tutorials>
<demos>
</demos>

View file

@ -9,7 +9,7 @@
You are most likely to use this class via the Visual Script editor or when writing plugins for it.
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/scripting/visual_script/index.html
http://docs.godotengine.org/en/3.0/learning/scripting/visual_script/index.html
</tutorials>
<demos>
</demos>

View file

@ -462,9 +462,9 @@ void ScrollContainer::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_enable_v_scroll", "enable"), &ScrollContainer::set_enable_v_scroll);
ClassDB::bind_method(D_METHOD("is_v_scroll_enabled"), &ScrollContainer::is_v_scroll_enabled);
ClassDB::bind_method(D_METHOD("_update_scrollbar_position"), &ScrollContainer::_update_scrollbar_position);
ClassDB::bind_method(D_METHOD("set_h_scroll", "val"), &ScrollContainer::set_h_scroll);
ClassDB::bind_method(D_METHOD("set_h_scroll", "value"), &ScrollContainer::set_h_scroll);
ClassDB::bind_method(D_METHOD("get_h_scroll"), &ScrollContainer::get_h_scroll);
ClassDB::bind_method(D_METHOD("set_v_scroll", "val"), &ScrollContainer::set_v_scroll);
ClassDB::bind_method(D_METHOD("set_v_scroll", "value"), &ScrollContainer::set_v_scroll);
ClassDB::bind_method(D_METHOD("get_v_scroll"), &ScrollContainer::get_v_scroll);
ADD_GROUP("Scroll", "scroll_");