From d1a260c9660e98da2f8a0ba4af2dd2cde6aeb311 Mon Sep 17 00:00:00 2001 From: Ovnuniarchos Date: Sun, 26 Jul 2015 20:09:47 +0200 Subject: [PATCH] A bunch of spell checks, and rewordings. Also, some simple documentation. --- doc/base/classes.xml | 7920 ++++++++++++++++++++-------------------- doc/engine_classes.xml | 4056 ++++++++++---------- 2 files changed, 5964 insertions(+), 6012 deletions(-) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 03bccbea10..7488d93fe1 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -8,7 +8,7 @@ This contains the list of built-in gdscript functions. Mostly math functions and other utilities. Everything else is expanded by objects. - + @@ -17,7 +17,7 @@ Standard sine function. - + @@ -26,7 +26,7 @@ Standard cosine function. - + @@ -35,7 +35,7 @@ Standard tangent function. - + @@ -44,7 +44,7 @@ Hyperbolic sine. - + @@ -53,7 +53,7 @@ Hyperbolic cosine. - + @@ -62,7 +62,7 @@ Hyperbolic tangent. - + @@ -71,7 +71,7 @@ Arc-sine. - + @@ -80,7 +80,7 @@ Arc-cosine. - + @@ -89,7 +89,7 @@ Arc-tangent. - + @@ -100,7 +100,7 @@ Arc-tangent that takes a 2D vector as argument, retuns the full -pi to +pi range. - + @@ -109,7 +109,7 @@ Square root. - + @@ -120,7 +120,7 @@ Module (remainder of x/y). - + @@ -131,7 +131,7 @@ Module (remainder of x/y) that wraps equally in positive and negative. - + @@ -140,7 +140,7 @@ Floor (rounds down to nearest integer). - + @@ -149,7 +149,7 @@ Ceiling (rounds up to nearest integer). - + @@ -158,16 +158,16 @@ Round to nearest integer. - + - Remove sign (works for integer and float). + Remove sign (works for integer and float). - + @@ -176,7 +176,7 @@ Return sign (-1 or +1). - + @@ -187,7 +187,7 @@ Power function, x elevate to y. - + @@ -196,7 +196,7 @@ Natural logarithm. - + @@ -205,7 +205,7 @@ Exponential logarithm. - + @@ -214,7 +214,7 @@ Return true if the float is not a number. - + @@ -223,7 +223,7 @@ Return true if the float is infinite. - + @@ -234,7 +234,7 @@ Easing function, based on exponent. 0 is constant, 1 is linear, 0 to 1 is ease-in, 1+ is ease out. Negative values are in-out/out in. - + @@ -243,7 +243,7 @@ Return the amount of decimals in the floating point value. - + @@ -254,7 +254,7 @@ Snap float value to a given step. - + @@ -267,7 +267,7 @@ Linear interpolates between two values by a normalized value. - + @@ -280,32 +280,28 @@ Decreases time by a specified amount. - + - Reset the seed of the random number generator with a - new, different one. + Reset the seed of the random number generator with a new, different one. - + - Random 32 bits value (integer). To obtain a value - from 0 to N, you can use remainder, like (for random - from 0 to 19): randi() % - 20. + Random 32 bits value (integer). To obtain a value from 0 to N, you can use remainder, like (for random from 0 to 19): randi() % 20. - + Random value (0 to 1 float). - + @@ -313,11 +309,10 @@ - Random range, any floating point value between - 'from' and 'to' + Random range, any floating point value between 'from' and 'to' - + @@ -326,7 +321,7 @@ Random from seed, pass a seed and an array with both number and new seed is returned. - + @@ -335,7 +330,7 @@ Convert from degrees to radians. - + @@ -344,7 +339,7 @@ Convert from radias to degrees. - + @@ -353,7 +348,7 @@ Convert from linear energy to decibels (audio). - + @@ -362,7 +357,7 @@ Convert from decibels to linear energy (audio). - + @@ -373,7 +368,7 @@ Return the maximum of two values. - + @@ -384,7 +379,7 @@ Return the minimum of two values. - + @@ -397,7 +392,7 @@ Clamp both values to a range. - + @@ -406,7 +401,7 @@ Return the nearest larger power of 2 for an integer. - + @@ -415,7 +410,7 @@ Return a weak reference to an object. - + @@ -426,7 +421,7 @@ Returns a reference to the specified function - + @@ -437,7 +432,7 @@ Convert from a type to another in the best way possible. The "type" parameter uses the enum TYPE_* in Global Scope. - + @@ -448,7 +443,7 @@ Convert one or more arguments to strings in the best way possible. - + @@ -459,7 +454,7 @@ Convert one or more arguments to strings in the best way possible. - + @@ -470,7 +465,7 @@ Print one or more arguments to strings in the best way possible to a console line. - + @@ -481,7 +476,7 @@ Print one or more arguments to the console with a tab between each argument. - + @@ -492,7 +487,7 @@ Print one or more arguments to strings in the best way possible to standard error line. - + @@ -503,7 +498,7 @@ Print one or more arguments to strings in the best way possible to console. No newline is added at the end. - + @@ -512,7 +507,7 @@ Converts the value of a variable to a String. - + @@ -521,7 +516,7 @@ Converts the value of a String to a variable. - + @@ -530,37 +525,34 @@ Return an array with the given range. Range can be 1 argument N (0 to N-1), two arguments (initial, final-1) or three arguments (initial,final-1,increment). - + - Load a resource from the filesystem, pass a valid - path as argument. + Load a resource from the filesystem, pass a valid path as argument. - + - Convert a script class instance to a dictionary - (useful for serializing). + Convert a script class instance to a dictionary (useful for serializing). - + - Convert a previously converted instances to dictionary - back into an instance. Useful for deserializing. + Convert a previously converted instances to dictionary back into an instance. Useful for deserializing. - + @@ -569,19 +561,17 @@ Hashes the variable passed and returns an integer. - + - Print a stack track at code location, only works when - running with debugger turned on. + Print a stack track at code location, only works when running with debugger turned on. - Constant that represents how many times the diameter of a - circumference fits around it's perimeter. + Constant that represents how many times the diameter of a circumference fits around it's perimeter. @@ -591,7 +581,7 @@ Global scope constants and variables. This is all that resides in the globals, constants regarding error codes, scancodes, property hints, etc. It's not much. - Singletons are also documented here, since they can be accessed from anywhere. + Singletons are also documented here, since they can be accessed from anywhere. @@ -1357,7 +1347,7 @@ Functions that return [Error] return OK when everything went ok. Most functions don't return error anyway and/or just print errors to stdout. - Generic fail return error; + Generic fail return error. @@ -1439,13 +1429,13 @@ No hint for edited property. - Hint string is a range, defined as "min,max" or "min,max,step". This is valid for integers and floats. + Hints that the string is a range, defined as "min,max" or "min,max,step". This is valid for integers and floats. - Hint string is an exponential range, defined as "min,max" or "min,max,step". This is valid for integers and floats. + Hints that the string is an exponential range, defined as "min,max" or "min,max,step". This is valid for integers and floats. - Property hint is an enumerated value, like "Hello,Something,Else". This is valid for integers, floats and strings properties. + Property hint for an enumerated value, like "Hello,Something,Else". This is valid for integer, float and string properties. @@ -1454,9 +1444,10 @@ - Property hint is a bitmask description, for bits 0,1,2,3 abd 5 the hint would be like "Bit0,Bit1,Bit2,Bit3,,Bit5". Valid only for integers. + Property hint for a bitmask description, for bits 0,1,2,3 and 5 the hint would be like "Bit0,Bit1,Bit2,Bit3,,Bit5". Valid only for integers. + Property hint for a bitmask description that covers all 32 bits. Valid only for integers. String property is a file (so pop up a file dialog when edited). Hint string can be a set of wildcards like "*.doc". @@ -1482,9 +1473,6 @@ Property will be used as storage (default). - - Property will be used as storage (default). - Property will be visible in editor (default). @@ -1582,39 +1570,35 @@ Axis-Aligned Bounding Box. - AABB provides an 3D Axis-Aligned Bounding Box. It consists of a - position and a size, and several utility functions. It is typically - used for simple (fast) overlap tests. + AABB provides an 3D Axis-Aligned Bounding Box. It consists of a position and a size, and several utility functions. It is typically used for simple (fast) overlap tests. - + - Return true if this [AABB] completely encloses another - one. + Return true if this [AABB] completely encloses another one. - + - Return this [AABB] expanded to include a given - point. + Return this [AABB] expanded to include a given point. - + - Get the area inside the [AABB] + Get the area inside the [AABB]. - + @@ -1623,87 +1607,81 @@ Get the position of the 8 endpoints of the [AABB] in space. - + - Return the normalized longest axis of the [AABB] + Return the normalized longest axis of the [AABB]. - + - Return the index of the longest axis of the [AABB] - (according to [Vector3]::AXIS* enum). + Return the index of the longest axis of the [AABB] (according to [Vector3]::AXIS* enum). - + - Return the scalar length of the longest axis of the - [AABB]. + Return the scalar length of the longest axis of the [AABB]. - + - Return the normalized shortest axis of the [AABB] + Return the normalized shortest axis of the [AABB]. - + - Return the index of the shortest axis of the [AABB] - (according to [Vector3]::AXIS* enum). + Return the index of the shortest axis of the [AABB] (according to [Vector3]::AXIS* enum). - + - Return the scalar length of the shortest axis of the - [AABB]. + Return the scalar length of the shortest axis of the [AABB]. - + - Return the support point in a given direction. This - is useful for collision detection algorithms. + Return the support point in a given direction. This is useful for collision detection algorithms. - + - Return a copy of the AABB grown a given a mount of - units towards all the sides. + Return a copy of the AABB grown a given a mount of units towards all the sides. - + Return true if the [AABB] is flat or empty. - + Return true if the [AABB] is empty. - + @@ -1712,17 +1690,16 @@ Return true if the [AABB] contains a point. - + - Return the intersection between two [AABB]s. An - empty AABB (size 0,0,0) is returned on failure. + Return the intersection between two [AABB]s. An empty AABB (size 0,0,0) is returned on failure. - + @@ -1731,7 +1708,7 @@ Return true if the [AABB] overlaps with another. - + @@ -1740,7 +1717,7 @@ Return true if the AABB is at both sides of a plane. - + @@ -1750,17 +1727,16 @@ - + - Combine this [AABB] with another one, a larger one - is returned that contains both. + Combine this [AABB] with another one, a larger one is returned that contains both. - + @@ -1786,41 +1762,38 @@ Base dialog for user notification. - This dialog is useful for small notifications to the user about an - event. It can only be accepted or closed, with the same result. + This dialog is useful for small notifications to the user about an event. It can only be accepted or closed, with the same result. - + Return the OK Button. - + Return the label used for built-in text. - + - Set whether the dialog is hidden when accepted - (default true). + Set whether the dialog is hidden when accepted (default true). - + - Return true if the dialog will be hidden when - accepted (default true). + Return true if the dialog will be hidden when accepted (default true). - + @@ -1832,7 +1805,7 @@ - + @@ -1840,22 +1813,21 @@ - + - Register a [LineEdit] in the dialog. When the enter - key is pressed, the dialog will be accepted. + Register a [LineEdit] in the dialog. When the enter key is pressed, the dialog will be accepted. - + Set the built-in label text. - + @@ -1888,104 +1860,98 @@ Sprite node that can use multiple textures for animation. - + - Set the [SpriteFrames] resource, which contains all - frames. + Set the [SpriteFrames] resource, which contains all frames. - + - Get the [SpriteFrames] resource, which contains all - frames. + Get the [SpriteFrames] resource, which contains all frames. - + - When turned on, offset at (0,0) is the center of the - sprite, when off, the top-left corner is. + When turned on, offset at (0,0) is the center of the sprite, when off, the top-left corner is. - + Return true when centered. See [set_centered]. - + - Set the offset of the sprite in the node origin. - Position varies depending on whether it is centered - or not. + Set the offset of the sprite in the node origin. Position varies depending on whether it is centered or not. - + Return the offset of the sprite in the node origin. - + If true, sprite is flipped horizontally. - + Return true if sprite is flipped horizontally. - + If true, sprite is flipped vertically. - + Return true if sprite is flipped vertically. - + - Set the visible sprite frame index (from the list of - frames inside the [SpriteFrames] resource). + Set the visible sprite frame index (from the list of frames inside the [SpriteFrames] resource). - + Return the visible frame index. - + Change the color modulation (multiplication) for this sprite. - + @@ -2002,25 +1968,25 @@ - + - + - + - + @@ -2038,7 +2004,7 @@ An Animation resource contains data used to animate everything in the engine. Animations are divided into tracks, and each track must be linked to a node. The state of that node can be changed through time, by adding timed keys (events) to the track. [br] Animations are just data containers, and must be added to odes such as an [AnimationPlayer] or [AnimationTreePlayer] to be played back. - + @@ -2049,21 +2015,21 @@ Add a track to the Animation. The track type must be specified as any of the values in te TYPE_* enumeration. - + Remove a track by specifying the track index. - + Return the amount of tracks in the animation. - + @@ -2072,7 +2038,7 @@ Get the type of a track. - + @@ -2081,16 +2047,16 @@ Get the path of a track. for more information on the path format, see [method track_set_path] - + - Set the path of a track. Paths must be valid scene-tree paths to a node, and must be specified starting from the parent node of the node that will reproduce the animation. Tracks that control properties or bones must append their name after the path, separated by ":". Example: "character/skeleton:ankle" or "character/mesh:transform/local" + Set the path of a track. Paths must be valid scene-tree paths to a node, and must be specified starting from the parent node of the node that will reproduce the animation. Tracks that control properties or bones must append their name after the path, separated by ":". Example: "character/skeleton:ankle" or "character/mesh:transform/local" - + @@ -2098,21 +2064,21 @@ - + Move a track up. - + Nove a track down. - + @@ -2129,7 +2095,7 @@ Insert a transform key for a transform track. - + @@ -2142,7 +2108,7 @@ Insert a generic key in a given track. - + @@ -2151,7 +2117,7 @@ Remove a key by index in a given track. - + @@ -2160,7 +2126,7 @@ Remove a key by position (seconds) in a given track. - + @@ -2171,7 +2137,7 @@ Set the value of an existing key. - + @@ -2179,11 +2145,10 @@ - Set the transition curve (easing) for a specific key (see built-in - math function "ease"). + Set the transition curve (easing) for a specific key (see built-in math function "ease"). - + @@ -2191,11 +2156,10 @@ - Return the transition curve (easing) for a specific key (see built-in - math function "ease"). + Return the transition curve (easing) for a specific key (see built-in math function "ease"). - + @@ -2204,7 +2168,7 @@ Return the amount of keys in a given track. - + @@ -2213,7 +2177,7 @@ Return the value of a given key in a given track. - + @@ -2224,7 +2188,7 @@ Return the time at which the key is located. - + @@ -2237,7 +2201,7 @@ Find the key index by time in a given track. Optionally, only find it if the exact time is given. - + @@ -2246,7 +2210,7 @@ Set the interpolation type of a given track, from the INTERPOLATION_* enum. - + @@ -2255,7 +2219,7 @@ Return the interpolation type of a given track, from the INTERPOLATION_* enum. - + @@ -2266,7 +2230,7 @@ Return the interpolated value of a transform track at a given time (in seconds). An array consisting of 3 elements: position ([Vector3]), rotation ([Quat]) and scale ([Vector3]). - + @@ -2275,7 +2239,7 @@ Enable or disable interpolation for a whole track. By default tracks are interpolated. - + @@ -2284,7 +2248,7 @@ Return wether interpolation is enabled or disabled for a whole track. By default tracks are interpolated. - + @@ -2297,7 +2261,7 @@ Return all the key indices of a value track, given a position and delta time. - + @@ -2310,7 +2274,7 @@ Return all the key indices of a method track, given a position and delta time. - + @@ -2321,7 +2285,7 @@ Return the method name of a method track. - + @@ -2332,47 +2296,47 @@ Return the arguments values to be called on a method track for a given key in a given track. - + Set the total length of the animation (in seconds). Note that length is not delimited by the last key, as this one may be before or after the end to ensure correct interpolation and looping. - + Return the total length of the animation (in seconds). - + Set a flag indicating that the animation must loop. This is uses for correct interpolation of animation cycles, and for hinting the player that it must restart the animation. - + Return wether the animation has the loop flag set. - + - + - + Clear the animation (clear all tracks and reset all). @@ -2407,7 +2371,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 diferent channels. - + @@ -2418,14 +2382,14 @@ Add an animation resource to the player, which will be later referenced by the "name" argument. - + Remove an animation from the player (by supplying the same name used to add it). - + @@ -2434,7 +2398,7 @@ Rename an existing animation. - + @@ -2443,7 +2407,7 @@ Request wether an [Animation] name exist within the player. - + @@ -2452,14 +2416,14 @@ Get an [Animation] resource by requesting a name. - + Get the list of names of the animations stored in the player. - + @@ -2470,7 +2434,7 @@ Specify a blend time (in seconds) between two animations, referemced by their names. - + @@ -2481,21 +2445,21 @@ Get the blend time between two animations, referemced by their names. - + Set the default blend time between animations. - + Return the default blend time between animations. - + @@ -2505,56 +2469,53 @@ - Play a given animation by the animation name. Custom - speed and blend times can be set. If custom speed is - negative (-1), 'from_end' being true can play the - animation backwards. + Play a given animation by the animation name. Custom speed and blend times can be set. If custom speed is negative (-1), 'from_end' being true can play the animation backwards. - + Stop the currently played animation. - + Stop playback of animations (deprecated). - + Return wether an animation is playing. - + - Set the current animation (even if no playback occurs). Using set_current_animation() and set_active() are similar to claling play(). + Set the current animation (even if no playback occurs). Using set_current_animation() and set_active() are similar to calling play(). - + Return the name of the animation being played. - + Queue an animation for playback once the current one is done. - + If animations are queued to play, clear them. - + @@ -2562,77 +2523,72 @@ will do nothing. - + Return true if the player is active. - + Set a speed scaling ratio in a given animation channel (or channel 0 if none is provided). Default ratio is [i]1[/i] (no scaling). - + Get the speed scaling ratio in a given animation channel (or channel 0 if none is provided). Default ratio is [i]1[/i] (no scaling). - + Set the name of the animation that will be automatically played when the scene is loaded. - + Return the name of the animation that will be automatically played when the scene is loaded. - + - AnimationPlayer resolves animation track paths from - this node (which is relative to itself), by - default root is "..", but it can be changed.. + AnimationPlayer resolves animation track paths from this node (which is relative to itself), by default root is "..", but it can be changed. - + Return path to root node (see [set_root]). - + - Seek the animation to a given position in time (in - seconds). If 'update' - is true, the animation will be updated too, - otherwise it will be updated at process time. + Seek the animation to a given position in time (in seconds). If 'update' is true, the animation will be updated too, otherwise it will be updated at process time. - + - Return the playback position (in seconds) in an animation channel (or channel 0 if none is provided) + Return the playback position (in seconds) in an animation channel (or channel 0 if none is provided). - + @@ -2641,42 +2597,40 @@ Find an animation name by resource. - + The animation player creates caches for faster access to the nodes it will animate. However, if a specific node is removed, it may not notice it, so clear_caches will force the player to search for the nodes again. - + Set the mode in which the animation player processes. By default, it processes on idle time (framerate dependent), but using fixed time works well for animating static collision bodies in 2D and 3D. See enum ANIMATION_PROCESS_*. - + Return the mode in which the animation player processes. See [method set_animation_process_mode]. - + - Get the position (in seconds) of the currently being - played animation. + Get the position (in seconds) of the currently being played animation. - + - Get the length (in seconds) of the currently being - played animation. + Get the length (in seconds) of the currently being played animation. - + @@ -2690,8 +2644,7 @@ - If the currently being played animation changes, - this signal will notify of such change. + If the currently being played animation changes, this signal will notify of such change. @@ -2702,8 +2655,7 @@ - Process animation on fixed process. This is specially useful - when animating kinematic bodies. + Process animation on fixed process. This is specially useful when animating kinematic bodies. Process animation on idle process. @@ -2715,23 +2667,19 @@ Animation Player that uses a node graph for the blending. - Animation Player that uses a node graph for the blending. This kind - of player is very useful when animating character or other skeleton - based rigs, because it can combine several animations to form a - desired pose. + Animation Player that uses a node graph for the blending. This kind of player is very useful when animating character or other skeleton based rigs, because it can combine several animations to form a desired pose. - + - Add a node of a given type in the graph with given - id. + Add a node of a given type in the graph with given id. - + @@ -2740,7 +2688,7 @@ Check if a node exists (by name). - + @@ -2751,7 +2699,7 @@ Rename a node in the graph. - + @@ -2760,17 +2708,16 @@ Get the node type, will return from NODE_* enum. - + - Return the input count for a given node. Different - types of nodes have different amount of inputs. + Return the input count for a given node. Different types of nodes have different amount of inputs. - + @@ -2781,7 +2728,7 @@ Return the input source for a given node input. - + @@ -2790,7 +2737,7 @@ Set the animation for an animation node. - + @@ -2798,7 +2745,7 @@ - + @@ -2806,7 +2753,7 @@ - + @@ -2814,7 +2761,7 @@ - + @@ -2822,7 +2769,7 @@ - + @@ -2830,7 +2777,7 @@ - + @@ -2838,7 +2785,7 @@ - + @@ -2846,7 +2793,7 @@ - + @@ -2854,7 +2801,7 @@ - + @@ -2862,7 +2809,7 @@ - + @@ -2870,7 +2817,7 @@ - + @@ -2878,7 +2825,7 @@ - + @@ -2886,7 +2833,7 @@ - + @@ -2894,19 +2841,19 @@ - + - + - + @@ -2914,7 +2861,7 @@ - + @@ -2924,7 +2871,7 @@ - + @@ -2932,7 +2879,7 @@ - + @@ -2940,7 +2887,7 @@ - + @@ -2948,7 +2895,7 @@ - + @@ -2956,7 +2903,7 @@ - + @@ -2966,7 +2913,7 @@ - + @@ -2974,7 +2921,7 @@ - + @@ -2982,7 +2929,7 @@ - + @@ -2990,7 +2937,7 @@ - + @@ -2998,7 +2945,7 @@ - + @@ -3006,7 +2953,7 @@ - + @@ -3014,7 +2961,7 @@ - + @@ -3022,7 +2969,7 @@ - + @@ -3030,7 +2977,7 @@ - + @@ -3038,7 +2985,7 @@ - + @@ -3046,7 +2993,7 @@ - + @@ -3056,7 +3003,7 @@ - + @@ -3066,7 +3013,7 @@ - + @@ -3074,7 +3021,7 @@ - + @@ -3082,7 +3029,7 @@ - + @@ -3090,7 +3037,7 @@ - + @@ -3098,7 +3045,7 @@ - + @@ -3106,7 +3053,7 @@ - + @@ -3114,13 +3061,13 @@ - + - + @@ -3132,7 +3079,7 @@ - + @@ -3144,7 +3091,7 @@ - + @@ -3152,41 +3099,41 @@ - + - + - + - + - + - + - + @@ -3220,91 +3167,91 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3360,94 +3307,94 @@ General purpose area detection for 2D Phisics. Areas can be used for detection of objects that enter/exit them, as well as overriding space parameters (changing gravity, damping, etc). An Area2D can be set as a children to a RigidBody2D to generate a custom gravity field. For this, use SPACE_OVERRIDE_COMBINE and point gravity at the center of mass. - + - + - + When overriding space parameters, areas can have a center of gravity as a point. - + Return if gravity is a point. When overriding space parameters, areas can have a center of gravity as a point. - + - Set gravity vector. If gravity is a point, this will be the attraction center + Set gravity vector. If gravity is a point, this will be the attraction center. - + - + - + - + - + - + - + - + - + - + @@ -3503,31 +3450,31 @@ Generic array, contains several elements of any type, accessible by numerical index starting at 0. Arrays are always passed by reference. - + - + Clear the array (resize to 0). - + Return true if the array is empty (size==0). - + - + @@ -3535,14 +3482,14 @@ - + Return a hashed integer value representing the array contents. - + @@ -3551,43 +3498,43 @@ Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()). - + - + Append an element at the end of the array. - + Remove an element from the array by index. - + Resize the array to contain a different number of elements. If the array size is smaller, elements are cleared, if bigger, new elements are Null. - + Return the amount of elements in the array. - + - + @@ -3595,49 +3542,49 @@ - + Construct an array from a [RawArray]. - + Construct an array from a [RawArray]. - + Construct an array from a [RawArray]. - + Construct an array from a [RawArray]. - + Construct an array from a [RawArray]. - + Construct an array from a [RawArray]. - + @@ -3654,37 +3601,37 @@ - + - + - + - + - + - + @@ -3699,10 +3646,10 @@ Server interface for low level audio access. - AudioServer is a low level server interface for audio access. It is"#10;"#9;in charge of creating sample data (playable audio) as well as it's"#10;"#9;playback via a voice interface. + 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. - + @@ -3712,19 +3659,19 @@ - Create an audio sample, return a [RID] referencing"#10;"#9;"#9;"#9;it. The sample will be created with a given format"#10;"#9;"#9;"#9;(from the SAMPLE_FORMAT_* enum), a total length (in"#10;"#9;"#9;"#9;frames, not samples or bytes), in either stereo or"#10;"#9;"#9;"#9;mono. + Create an audio sample, return a [RID] referencing it. The sample will be created with a given format (from the SAMPLE_FORMAT_* enum), a total length (in frames, not samples or bytes), in either stereo or mono. - + - Set the description of an audio sample. Mainly used"#10;"#9;"#9;"#9;for organization. + Set the description of an audio sample. Mainly used for organization. - + @@ -3732,19 +3679,19 @@ - Return the description of an audio sample. Mainly"#10;"#9;"#9;"#9;used for organization. + Return the description of an audio sample. Mainly used for organization. - + - Return the format of the audio sample, in the form"#10;"#9;"#9;"#9;of the SAMPLE_FORMAT_* enum. + Return the format of the audio sample, in the form of the SAMPLE_FORMAT_* enum. - + @@ -3753,43 +3700,43 @@ Return wether the sample is stereo (2 channels) - + - Return the length in frames of the audio sample (not"#10;"#9;"#9;"#9;samples or bytes). + Return the length in frames of the audio sample (not samples or bytes). - + - Set the sample data for a given sample as an array"#10;"#9;"#9;"#9;of floats. The length must be equal to the sample"#10;"#9;"#9;"#9;lenght or an error will be produced. + Set the sample data for a given sample as an array of floats. The length must be equal to the sample lenght or an error will be produced. - + - Set the sample data for a given sample as an array"#10;"#9;"#9;"#9;of bytes. The length must be equal to the sample"#10;"#9;"#9;"#9;lenght expected in bytes or an error will be produced. + Set the sample data for a given sample as an array of bytes. The length must be equal to the sample lenght expected in bytes or an error will be produced. - + - Return the sample data as an array of bytes. The"#10;"#9;"#9;"#9;length will be the expected length in bytes. + Return the sample data as an array of bytes. The length will be the expected length in bytes. - + @@ -3798,7 +3745,7 @@ Change the default mix rate of a given sample. - + @@ -3807,86 +3754,86 @@ Return the mix rate of the given sample. - + - Set the loop format for a sample from the"#10;"#9;"#9;"#9;SAMPLE_LOOP_* enum. As a warning, Ping Pong loops"#10;"#9;"#9;"#9;may not be available on some hardware-mixing"#10;"#9;"#9;"#9;platforms. + Set the loop format for a sample from the SAMPLE_LOOP_* enum. As a warning, Ping Pong loops may not be available on some hardware-mixing platforms. - + - Return the loop format for a sample, as a value from"#10;"#9;"#9;"#9;the SAMPLE_LOOP_* enum. + Return the loop format for a sample, as a value from the SAMPLE_LOOP_* enum. - + - Set the initial loop point of a sample. Only has"#10;"#9;"#9;"#9;effect if sample loop is enabled. See [method sample_set_loop_format]. + Set the initial loop point of a sample. Only has effect if sample loop is enabled. See [method sample_set_loop_format]. - + - Return the initial loop point of a sample. Only has"#10;"#9;"#9;"#9;effect if sample loop is enabled. See [method sample_set_loop_format]. + Return the initial loop point of a sample. Only has effect if sample loop is enabled. See [method sample_set_loop_format]. - + - Set the final loop point of a sample. Only has"#10;"#9;"#9;"#9;effect if sample loop is enabled. See [method sample_set_loop_format]. + Set the final loop point of a sample. Only has effect if sample loop is enabled. See [method sample_set_loop_format]. - + - Return the final loop point of a sample. Only has"#10;"#9;"#9;"#9;effect if sample loop is enabled. See [method sample_set_loop_format]. + Return the final loop point of a sample. Only has effect if sample loop is enabled. See [method sample_set_loop_format]. - + - Allocate a voice for playback. Voices are"#10;"#9;"#9;"#9;persistent. A voice can play a single sample at the"#10;"#9;"#9;"#9;same time. See [method sample_create]. + Allocate a voice for playback. Voices are persistent. A voice can play a single sample at the same time. See [method sample_create]. - + - Start playback of a given voice using a given"#10;"#9;"#9;"#9;sample. If the voice was already playing it will be"#10;"#9;"#9;"#9;restarted. + Start playback of a given voice using a given sample. If the voice was already playing it will be restarted. - + - Change the volume of a currently playing voice."#10;"#9;"#9;"#9;Volume is expressed as linear gain where 0.0 is mute"#10;"#9;"#9;"#9;and 1.0 is default. + Change the volume of a currently playing voice. Volume is expressed as linear gain where 0.0 is mute and 1.0 is default. - + @@ -3896,10 +3843,10 @@ - Change the pan of a currently playing voice and,"#10;"#9;"#9;"#9;optionally, the depth and height for a positional/3D"#10;"#9;"#9;"#9;sound. Panning values are expressed within the -1 to"#10;"#9;"#9;"#9;+1 range. + Change the pan of a currently playing voice and, optionally, the depth and height for a positional/3D sound. Panning values are expressed within the -1 to +1 range. - + @@ -3911,19 +3858,19 @@ - Set a resonant filter post processing for the voice."#10;"#9;"#9;"#9;Filter type is a value from the FILTER_* enum. + Set a resonant filter post processing for the voice. Filter type is a value from the FILTER_* enum. - + - Set chorus send post processing for the voice (from"#10;"#9;"#9;"#9;0 to 1). + Set chorus send post processing for the voice (from 0 to 1). - + @@ -3931,28 +3878,28 @@ - Set the reverb send post processing for the voice (from"#10;"#9;"#9;"#9;0 to 1) and the reverb type, from the REVERB_* enum. + Set the reverb send post processing for the voice (from 0 to 1) and the reverb type, from the REVERB_* enum. - + - Set a different playback mix rate for the given"#10;"#9;"#9;"#9;voice. + Set a different playback mix rate for the given voice. - + - Set wether a given voice is positional. This is only"#10;"#9;"#9;"#9;interpreted as a hint and used for backends that may"#10;"#9;"#9;"#9;support binaural encoding. + Set wether a given voice is positional. This is only interpreted as a hint and used for backends that may support binaural encoding. - + @@ -3961,88 +3908,88 @@ Return the current volume for a given voice. - + - Return the current pan for a given voice (-1 to +1"#10;"#9;"#9;"#9;range). + Return the current pan for a given voice (-1 to +1 range). - + - Return the current pan height for a given voice (-1 to +1"#10;"#9;"#9;"#9;range). + Return the current pan height for a given voice (-1 to +1 range). - + - Return the current pan depth for a given voice (-1 to +1"#10;"#9;"#9;"#9;range). + Return the current pan depth for a given voice (-1 to +1 range). - + - Return the current selected filter type for a given"#10;"#9;"#9;"#9;voice, from the FILTER_* enum. + Return the current selected filter type for a given voice, from the FILTER_* enum. - + - Return the current filter cutoff (in hz) for a given"#10;"#9;"#9;"#9;voice. + Return the current filter cutoff (in hz) for a given voice. - + - Return the current filter resonance for a given"#10;"#9;"#9;"#9;voice. + Return the current filter resonance for a given voice. - + - Return the current chorus send for a given"#10;"#9;"#9;"#9;voice (0 to 1). + Return the current chorus send for a given voice (0 to 1). - + - Return the current reverb type for a given voice"#10;"#9;"#9;"#9;from the REVERB_* enum. + Return the current reverb type for a given voice from the REVERB_* enum. - + - Return the current reverb send for a given voice"#10;"#9;"#9;"#9;(0 to 1). + Return the current reverb send for a given voice (0 to 1). - + @@ -4051,62 +3998,62 @@ Return the current mix rate for a given voice. - + - Return wether the current voice is positional. See"#10;"#9;"#9;"#9;[method voice_set_positional]. + Return wether the current voice is positional. See [method voice_set_positional]. - + Stop a given voice. - + Free a [RID] resource. - + Set global scale for stream playback. Default is 1.0. - + Return the global scale for stream playback. - + - + - + - + @@ -4133,7 +4080,7 @@ Sample loops in a bidirectional way. - Filter is disable. + Filter is disabled. Filter is a resonant lowpass. @@ -4145,7 +4092,7 @@ Filter is a resonant highpass. - Filter is a notch. + Filter is a notch (band reject). Filter is a bandlimit (resonance used as highpass). @@ -4179,84 +4126,84 @@ Base class for audio streams. - Base class for audio streams. Audio streams are used for music"#10;"#9;playback, or other types of streamed sounds that don't fit or"#10;"#9;requiere more flexibility than a [Sample]. + Base class for audio streams. Audio streams are used for music playback, or other types of streamed sounds that don't fit or requiere more flexibility than a [Sample]. - + Start playback of an audio stream. - + Stop playback of an audio stream. - + Return wether the audio stream is currently playing. - + - Set the loop hint for the audio stream playback. if"#10;"#9;"#9;"#9;true, audio stream will attempt to loop (restart)"#10;"#9;"#9;"#9;when finished. + Set the loop hint for the audio stream playback. if true, audio stream will attempt to loop (restart) when finished. - + Return wether the audio stream loops. See [method set_loop] - + - Return the name of the audio stream. Often the song"#10;"#9;"#9;"#9;title when the stream is music. + Return the name of the audio stream. Often the song title when the stream is music. - + - Return the amount of times that the stream has"#10;"#9;"#9;"#9;looped (if loop is supported). + Return the amount of times that the stream has looped (if loop is supported). - + - Seek to a certain position (in seconds) in an audio"#10;"#9;"#9;"#9;stream. + Seek to a certain position (in seconds) in an audio stream. - + - Return the current playing position (in seconds) of the audio"#10;"#9;"#9;"#9;stream (if supported). Since this value is updated"#10;"#9;"#9;"#9;internally, it may not be exact or updated"#10;"#9;"#9;"#9;continuosly. Accuracy depends on the sample buffer"#10;"#9;"#9;"#9;size of the audio driver. + Return the current playing position (in seconds) of the audio stream (if supported). Since this value is updated internally, it may not be exact or updated continuosly. Accuracy depends on the sample buffer size of the audio driver. - + - + - Return the type of update that the stream uses. Some"#10;"#9;"#9;"#9;types of stream may need manual polling. + Return the type of update that the stream uses. Some types of stream may need manual polling. - + - Manually poll the audio stream (if it is requested"#10;"#9;"#9;"#9;to). + Manually poll the audio stream (if it is requested to). @@ -4280,56 +4227,56 @@ AudioStream used for gibberish playback. It plays randomized phonemes, which can be used to accompany text dialogs. - + Set the phoneme library. - + Return the phoneme library. - + Set pitch scale for the speech. Animating this value holds amusing results. - + Return the pitch scale. - + Set the random scaling for the pitch. - + Return the pitch random scaling. - + Set the cross-fade time between random phonemes. - + @@ -4348,14 +4295,14 @@ MusePack audio stream driver. - + Set the file to be played. - + @@ -4398,14 +4345,14 @@ Speex audio stream driver. Speex is very useful for compressed speech. It allows loading a very large amount of speech in memory at little IO/latency cost. - + Set the speech file (which is loaded to memory). - + @@ -4422,55 +4369,55 @@ - + - + - + - + - + - + - + - + - + @@ -4478,197 +4425,197 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4676,7 +4623,7 @@ - + @@ -4708,19 +4655,19 @@ - + - + - + @@ -4742,7 +4689,7 @@ - + @@ -4750,7 +4697,7 @@ - + @@ -4758,13 +4705,13 @@ - + - + @@ -4792,69 +4739,69 @@ BaseButton is the abstract base class for buttons, so it shouldn't be used directly (It doesnt display anything). Other types of buttons inherit from it. - + Set the button to pressed state (only if toggle_mode is active). - + Return when the button is pressed (only if toggle_mode is active). - + - + Set the button toggle_mode property. Toggle mode makes the button flip state between pressed and unpressed each time its area is clicked. - + Return the toggle_mode property (see [method set_toggle_mode]). - + - Set the button into disabled state. When a button is disabled, it can"apos;t be clicked or toggled. + Set the button into disabled state. When a button is disabled, it can't be clicked or toggled. - + Return wether the button is in disabled state (see [method set_disabled]). - + Set the button click_on_press mode. This mode generates click events when a mousebutton or key is just pressed (by default events are generated when the button/keys are released and both press and release occur in the visual area of the Button). - + Return the state of the click_on_press property (see [method set_click_on_press]). - + @@ -4897,19 +4844,19 @@ - + - + - + @@ -4917,7 +4864,7 @@ - + @@ -4925,7 +4872,7 @@ - + @@ -4933,13 +4880,13 @@ - + - + @@ -4979,14 +4926,14 @@ Box shape resource, which can be set into a [PhysicsBody] or area. - + Set the half extents for the shape. - + @@ -5005,66 +4952,66 @@ Button is just the standard themed button: [image src="images/button_example.png"/] It can contain text and an icon, and will display them according to the current [Theme]. - + Set the button text, which will be displayed inside the button area. - + Return the button text. - + - + - + - Set the [i]flat[/i] property of a Button. Flat buttons don"apos;t display decoration unless hoevered or pressed. + Set the [i]flat[/i] property of a Button. Flat buttons don't display decoration unless hoevered or pressed. - + Set the [i]clip_text[/i] property of a Button. When this property is enabled, text that is too large to fit the button is clipped, when disabled (default) the Button will always be wide enough to hold the text. - + Return the state of the [i]clip_text[/i] property (see [method set_clip_text]) - + - + - + @@ -5107,14 +5054,14 @@ Array of Buttons. A Button array is useful to have an array of buttons laid out vertically or horizontally. Only one can be selected. This is useful for joypad based interfaces and option menus. - + Add a new button. - + @@ -5122,7 +5069,7 @@ - + @@ -5130,7 +5077,7 @@ - + @@ -5139,7 +5086,7 @@ Set the icon of an existing button. - + @@ -5148,7 +5095,7 @@ Return the text of an existing button. - + @@ -5157,42 +5104,42 @@ Return the icon of an existing button. - + Return the amount of buttons in the array. - + Return the currently selected button in the array. - + Return the currently hovered button in the array. - + Sekect a button in the array. - + Remove a button in the array, by index. - + Clear the button array. @@ -5233,35 +5180,35 @@ Group of [Button]s. All direct and indirect children buttons become radios. Only one allows being pressed. - + Return the pressed button. - + Return the index of the pressed button (by tree order). - + Return the focused button. - + Return the list of all the buttons in the group. - + @@ -5280,7 +5227,7 @@ Camera is a special node that displays what is visible from its current location. Cameras register themselves in the nearest [Viewport] node (when ascending the tree). Only one camera can be active per viewport. If no viewport is available ascending the tree, the Camera will register in the global viewport. In other words, a Camera just provides [i]3D[/i] display capabilities to a [Viewport], and, without one, a [Scene] registered in that [Viewport] (or higher viewports) can't be displayed. - + @@ -5289,7 +5236,7 @@ Return a normal vector in worldspace, that is the result of projecting a point on the [Viewport] rectangle by the camera projection. This is useful for casting rays in the form of (origin,normal) for object intersection or picking. - + @@ -5297,7 +5244,7 @@ - + @@ -5306,7 +5253,7 @@ Return a 3D position in worldspace, that is the result of projecting a point on the [Viewport] rectangle by the camera projection. This is useful for casting rays in the form of (origin,normal) for object intersection or picking. - + @@ -5315,7 +5262,7 @@ Return how a 3D point in worldpsace maps to a 2D coordinate in the [Viewport] rectangle. - + @@ -5323,7 +5270,7 @@ - + @@ -5334,7 +5281,7 @@ Set the camera projection to perspective mode, by specifying a [i]FOV[/i] Y angle in degrees (FOV means Field of View), and the [i]near[/i] and [i]far[/i] clip planes in worldspace units. - + @@ -5342,75 +5289,75 @@ - Set the camera projection to orthogonal mode, by specifying a"#10;"#9;"#9;"#9;width and the [i]near[/i] and [i]far[/i] clip planes in worldspace units. (As a hint, 2D games often use this projection, with values specified in pixels) + Set the camera projection to orthogonal mode, by specifying a width and the [i]near[/i] and [i]far[/i] clip planes in worldspace units. (As a hint, 2D games often use this projection, with values specified in pixels) - + - Make this camera the current Camera for the [Viewport] (see class description). If the Camera Node is outside the scene tree, it will attempt to become current once it"apos;s added. + Make this camera the current Camera for the [Viewport] (see class description). If the Camera Node is outside the scene tree, it will attempt to become current once it's added. - + - + Return wether the Camera is the current one in the [Viewport], or plans to become current (if outside the scene tree). - + Get the camera transform. Subclassed cameras (such as CharacterCamera) may provide different transforms than the [Node] transform. - + - + - + - + - + - + - + - + @@ -5418,7 +5365,7 @@ - + @@ -5428,25 +5375,25 @@ - + - + - + - + @@ -5472,142 +5419,137 @@ Camera node for 2D scenes. It forces the screen (current layer) to scroll following this node. This makes it easier (and faster) to program scrollable scenes than manually changing the position of [CanvasItem] based nodes. - This node is intended to be a simple helper get get things going quickly - and it may happen often that more functionality is desired to change - how the camera works. To make your own custom camera node, simply - inherit from [Node2D] and change the transform of the canvas by - calling get_viewport().set_canvas_transform(m) in [Viewport]. + This node is intended to be a simple helper get get things going quickly and it may happen often that more functionality is desired to change how the camera works. To make your own custom camera node, simply inherit from [Node2D] and change the transform of the canvas by calling get_viewport().set_canvas_transform(m) in [Viewport]. - + - Set the scroll offset. Useful for looking around or - camera shake animations. + Set the scroll offset. Useful for looking around or camera shake animations. - + Return the scroll offset. - + Set to true if the camera is at the center of the screen (default: true). - + Return true if the camera is at the center of the screen (default: true). - + - + - + Make this the current 2D camera for the scene (viewport and layer), in case there's many cameras in the scene. - + Return true of this is the current camera (see [method Camera2D.make_current]). - + - Set the scrolling limit in pixels + Set the scrolling limit in pixels. - + - Return the scrolling limit in pixels + Return the scrolling limit in pixels. - + - + - + - + - + - + - + - + - + - Set the margins needed to drag the camera (relative to the screen size). Margin uses the MARGIN_* enum. Drag margins of 0,0,0,0 will keep the camera at the center of the screen, while drag margins of 1,1,1,1 will only move when the camera is at the edges. + Set the margins needed to drag the camera (relative to the screen size). Margin uses the MARGIN_* enum. Drag margins of 0,0,0,0 will keep the camera at the center of the screen, while drag margins of 1,1,1,1 will only move when the camera is at the edges. - + @@ -5616,44 +5558,44 @@ Return the margins needed to drag the camera (see [method set_drag_margin]). - + Return the camera position. - + - + - + - + - + - + Force the camera to update scroll immediately. @@ -5668,155 +5610,155 @@ Base class of anything 2D. Canvas items are laid out in a tree and children inherit and extend the transform of their parent. CanvasItem is extended by [Control], for anything GUI related, and by [Node2D] for anything 2D engine related. - Any CanvasItem can draw. For this, the "update" function must be called, then NOTIFICATION_DRAW will be received on idle time to request redraw. Because of this, canvas items don't need to be redraw on every frame, improving the performance significantly. Several functions for drawing on the CanvasItem are provided (see draw_* functions). They can only be used inside the notification, signal or _draw() overrided function, though. + Any CanvasItem can draw. For this, the "update" function must be called, then NOTIFICATION_DRAW will be received on idle time to request redraw. Because of this, canvas items don't need to be redraw on every frame, improving the performance significan'tly. Several functions for drawing on the CanvasItem are provided (see draw_* functions). They can only be used inside the notification, signal or _draw() overrided function, though. Canvas items are draw in tree order. By default, children are on top of their parents so a root CanvasItem will be drawn behind everything (this can be changed per item though). Canvas items can also be hidden (hiding also their subtree). They provide many means for changing standard parameters such as opacity (for it and the subtree) and self opacity, blend mode. Ultimately, a transform notification can be requested, which will notify the node that its global position changed in case the parent tree changed. - + Called (if exists) to draw the canvas item. - + Used for editing, returns an opaque value represeting the transform state. - + - + - + Used for editing, handle rotation. - + Return a rect containing the editable contents of the item. - + Return the canvas item RID used by [VisualServer] for this item. - + Return true if this CanvasItem is visible. It may be invisible because itself or a parent canvas item is hidden. - + Return true if this CanvasItem is hidden. Note that the CanvasItem may not be visible, but as long as it's not hidden ([method hide] called) the function will return false. - + Show the CanvasItem currently hidden. - + Hide the CanvasItem currently visible. - + Queue the CanvasItem for update. NOTIFICATION_DRAW will be called on idle time to request redraw. - + Set as toplevel. This means that it will not inherit transform from parent canvas items. - + Return if set as toplevel. See [method set_as_toplevel]/ - + Set the blending mode from enum BLEND_MODE_*. - + Return the current blending mode from enum BLEND_MODE_*. - + Set canvas item opacity. This will affect the canvas item and all the children. - + Return the canvas item opacity. This affects the canvas item and all the children. - + Set canvas item self-opacity. This does not affect the opacity of children items. - + Return the canvas item self-opacity. - + Sets whether the canvas item is drawn behind its parent. - + Return whether the item is drawn behind its parent. - + @@ -5829,7 +5771,7 @@ Draw a line from a 2D point to another, with a given color and width. - + @@ -5838,7 +5780,7 @@ Draw a colored rectangle. - + @@ -5849,7 +5791,7 @@ Draw a colored circle. - + @@ -5858,7 +5800,7 @@ Draw a texture at a given position. - + @@ -5873,7 +5815,7 @@ Draw a textured rectangle at a given position, optionally modulated by a color. Transpose swaps the x and y coordinates when reading the texture. - + @@ -5888,7 +5830,7 @@ Draw a textured rectangle region at a given position, optionally modulated by a color. Transpose swaps the x and y coordinates when reading the texture. - + @@ -5897,7 +5839,7 @@ Draw a styled rectangle. - + @@ -5912,7 +5854,7 @@ Draw a custom primitive, 1 point for a point, 2 points for a line, 3 points for a triangle and 4 points for a quad. - + @@ -5925,7 +5867,7 @@ Draw a polygon of any amount of points, convex or concave. - + @@ -5938,7 +5880,7 @@ Draw a colored polygon of any amount of points, convex or concave. - + @@ -5953,7 +5895,7 @@ Draw a string using a custom font. - + @@ -5970,7 +5912,7 @@ Draw a string character using a custom font. Returns the advance, depending on the char width and kerning with an optional next char. - + @@ -5981,37 +5923,37 @@ Set a custom transform for drawing. Anything drawn afterwards will be transformed by this. - + - + - + - + - + - + @@ -6042,7 +5984,7 @@ - Mix blending mode. + Mix blending mode. Colors are assumed to be independent of the alpha (opacity) value. Additive blending mode. @@ -6054,6 +5996,7 @@ Multiplicative blending mode. + Mix blending mode. Colors are assumed to be premultiplied by the alpha (opacity) value. CanvasItem is requested to draw. @@ -6080,84 +6023,84 @@ Canvas Item layer. [CanvasItem] nodes that are direct or indirect children of a [CanvasLayer] 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 [CanvasLayer] 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). - + Set the layer index, determines the draw order, a lower value will be below a higher one. - + Return the layer index, determines the draw order, a lower value will be below a higher one. - + Set the base transform for this layer. - + Return the base transform for this layer. - + Set the base offset for this layer (helper). - + Return the base offset for this layer (helper). - + Set the base rotation for this layer (helper). - + Return the base rotation for this layer (helper). - + Set the base scale for this layer (helper). - + Return the base scale for this layer (helper). - + Return the [World2D] used by this layer. - + @@ -6176,28 +6119,28 @@ Capsule shape resource, which can be set into a [PhysicsBody] or area. - + Set the capsule radius. - + Return the capsule radius. - + Set the capsule height. - + @@ -6216,28 +6159,28 @@ Capsule 2D shape resource for physics. A capsule (or sometimes called "pill") is like a line grown in all directions. It has a radius and a height, and is often useful for modelling biped characters. - + Radius of the [CapsuleShape2D]. - + Return the radius of the [CapsuleShape2D]. - + Height of the [CapsuleShape2D]. - + @@ -6256,13 +6199,13 @@ CenterContainer Keeps children controls centered. This container keeps all children to their minimum size, in the center. - + - + @@ -6322,14 +6265,14 @@ Circular Shape for 2D Physics. This shape is useful for modelling balls or small characters and it's collision detection with everything else is very fast. - + - Set the radius of the circle shape; + Set the radius of the circle shape. - + @@ -6346,7 +6289,7 @@ - + @@ -6360,7 +6303,7 @@ - + @@ -6368,13 +6311,13 @@ - + - + @@ -6382,7 +6325,7 @@ - + @@ -6390,7 +6333,7 @@ - + @@ -6398,7 +6341,7 @@ - + @@ -6406,7 +6349,7 @@ - + @@ -6414,7 +6357,7 @@ - + @@ -6422,41 +6365,41 @@ - + - + - + - + - + - + - + @@ -6498,7 +6441,7 @@ CollisionObject2D is the base class for 2D physics collisionables. They can hold any number of 2D collision shapes. Usually, they are edited by placing CollisionBody2D and CollisionPolygon2D nodes as children. Such nodes are for reference ant not present outside the editor, so code should use the regular shape API. - + @@ -6507,14 +6450,14 @@ Add a [Shape2D] to the collision body, with a given custom transform. - + Return the amount of shapes in the collision body. - + @@ -6523,7 +6466,7 @@ Change a shape in the collision body. - + @@ -6532,7 +6475,7 @@ Change the shape transform in the collision body. - + @@ -6540,7 +6483,7 @@ - + @@ -6549,7 +6492,7 @@ Return the shape in the given index. - + @@ -6558,7 +6501,7 @@ Return the shape transform in the given index. - + @@ -6566,22 +6509,23 @@ - + Remove the shape in the given index. - + Remove all shapes. - + + Return the RID of the object. @@ -6594,37 +6538,37 @@ - + - + - + - + - + - + @@ -6676,7 +6620,7 @@ A color is represented as red, green and blue (r,g,b) components. Additionally, "a" represents the alpha component, often used for transparency. Values are in floating point, ranging from 0 to 1. - + @@ -6684,28 +6628,28 @@ - + Return the most contrasting color with this one. - + Convert the color to gray. - + Return the inverted color (1-r, 1-g, 1-b, 1-a). - + @@ -6716,21 +6660,21 @@ Return the linear interpolation with another color. - + Convert the color to a 32 its integer (each byte represets a RGBA). - + Convert color to ARGB32, more compatible with DirectX. - + @@ -6739,7 +6683,7 @@ Return the HTML hexadecimal color string. - + @@ -6752,7 +6696,7 @@ Construct the color from an RGBA profile. - + @@ -6763,14 +6707,14 @@ Construct the color from an RGBA profile. - + Construct the color from an RGBA profile. - + @@ -6802,10 +6746,10 @@ Array of Colors - Array of Color, can only contains colors. Optimized for memory usage, cant fragment the memory. + Array of Color, can only contains colors. Optimized for memory usage, can't fragment the memory. - + @@ -6814,21 +6758,21 @@ Get an index in the array. - + Append a value to the array. - + Resize the array. - + @@ -6837,14 +6781,14 @@ Set an index in the array. - + Return the array size. - + @@ -6863,39 +6807,39 @@ This is a simple color picker [Control]. It's useful for selecting a color from an RGB/RGBA colorspace. - + Select the current color. - + Return the current (edited) color. - + - + - + - + @@ -6932,25 +6876,25 @@ - + - + - + - + @@ -6997,17 +6941,17 @@ Concave polygon shape. - Concave polygon shape resource, which can be set into a [PhysicsBody] or area."#10; This shape is created by feeding a list of triangles. + Concave polygon shape resource, which can be set into a [PhysicsBody] or area. This shape is created by feeding a list of triangles. - + Set the faces (an array of triangles). - + @@ -7026,14 +6970,14 @@ Concave polygon 2D shape resource for physics. It is made out of segments and is very optimal for complex polygonal concave collisions. It is really not advised to use for RigidBody nodes. A CollisionPolygon2D in convex decomposition mode (solids) or several convex objects are advised for that instead. Otherwise, a concave polygon 2D shape is better for static collisions. - + Set the array of segments. - + @@ -7050,7 +6994,7 @@ - + @@ -7058,7 +7002,7 @@ - + @@ -7088,7 +7032,7 @@ - + @@ -7098,7 +7042,7 @@ - + @@ -7106,7 +7050,7 @@ - + @@ -7114,7 +7058,7 @@ - + @@ -7124,13 +7068,13 @@ - + - + @@ -7138,7 +7082,7 @@ - + @@ -7146,7 +7090,7 @@ - + @@ -7166,7 +7110,7 @@ Dialog for confirmation of actions. This dialog inherits from [AcceptDialog], but has by default an OK and Cancel buton (in host OS order). - + @@ -7186,12 +7130,12 @@ A Control can inherit this to reate custom container classes. - + Queue resort of the contained children. This is called automatically anyway, but can be called upon request. - + @@ -7228,14 +7172,14 @@ Finally, controls are skinned according to a [Theme]. Setting a [Theme] on a control will propagate all the skinning down the tree. Optionally, skinning can be overrided per each control by calling the add_*_override functions, or from the editor. - + Called when an input event reaches the control. - + @@ -7245,7 +7189,7 @@ - + @@ -7253,7 +7197,7 @@ - + @@ -7261,46 +7205,46 @@ - + Return the minimum size this Control can shrink to. A control will never be displayed or resized smaller than its minimum size. - + Handles the event, no other control will receive it and it will not be sent to nodes waiting on [method Node._unhandled_input] or [method Node._unhandled_key_input]. - + Return the minimum size this Control can shrink to. A control will never be displayed or resized smaller than its minimum size. - + - + Return wether this control is a [i]window[/i]. Controls are considered windows when their parent [Node] is not a Control. - + Return the [i]window[/i] for this control, ascending the scene tree (see [method is_window]). - + @@ -7309,7 +7253,7 @@ Change the anchor (ANCHOR_BEGIN, ANCHOR_END, ANCHOR_RATIO) type for a margin (MARGIN_LEFT, MARGIN_TOP, MARGIN_RIGHT, MARGIN_BOTTOM). Changing the anchor mode converts the current margin offset from the previos anchor mode to the new one, so margin offsets ([method set_margin]) must be done after setting anchors, or at the same time ([method set_anchor_and_margin]). - + @@ -7318,7 +7262,7 @@ Return the anchor type (ANCHOR_BEGIN, ANCHOR_END, ANCHOR_RATIO) for a given margin (MARGIN_LEFT, MARGIN_TOP, MARGIN_RIGHT, MARGIN_BOTTOM). - + @@ -7327,7 +7271,7 @@ Set a margin offset. Margin can be one of (MARGIN_LEFT, MARGIN_TOP, MARGIN_RIGHT, MARGIN_BOTTOM). Offset value being set depends on the anchor mode. - + @@ -7338,48 +7282,48 @@ Change the anchor (ANCHOR_BEGIN, ANCHOR_END, ANCHOR_RATIO) type for a margin (MARGIN_LEFT, MARGIN_TOP, MARGIN_RIGHT, MARGIN_BOTTOM), and also set its offset. This is a helper (see [method set_anchor] and [method set_margin]). - + Sets MARGIN_LEFT and MARGIN_TOP at the same time. This is a helper (see [method set_margin]). - + Sets MARGIN_RIGHT and MARGIN_BOTTOM at the same time. This is a helper (see [method set_margin]). - + Move the Control to a new position, relative to the top-left corner of the parent Control, changing all margins if needed and without changing current anchor mode. This is a helper (see [method set_margin]). - + Changes MARGIN_RIGHT and MARGIN_BOTTOM to fit a given size. This is a helper (see [method set_margin]). - + - + Move the Control to a new position, relative to the top-left corner of the [i]window[/i] Control, and without changing current anchor mode. (see [method set_margin]). - + @@ -7388,168 +7332,168 @@ Return a margin offset. Margin can be one of (MARGIN_LEFT, MARGIN_TOP, MARGIN_RIGHT, MARGIN_BOTTOM). Offset value being returned depends on the anchor mode. - + - + Returns MARGIN_LEFT and MARGIN_TOP at the same time. This is a helper (see [method set_margin]). - + Returns the Control position, relative to the top-left corner of the parent Control and independly of the anchor mode. - + Returns the size of the Control, computed from all margins, however the size returned will [b]never be smaller than the minimum size reported by [method get_minimum_size][/b]. This means that even if end position of the Control rectangle is smaller than the begin position, the Control will still display and interact correctly. (see description, [method get_minimum_size], [method set_margin], [method set_anchor]). - + - + - + Returns the Control position, relative to the top-left corner of the parent Control and independent of the anchor mode. - + Return position and size of the Control, relative to the top-left corner of the parent Control. This is a helper (see [method get_pos],[method get_size]). - + Return position and size of the Control, relative to the top-left corner of the [i]window[/i] Control. This is a helper (see [method get_global_pos],[method get_size]). - + Change all margins and anchors, so this Control always takes up the same area as the parent Control. This is a helper (see [method set_anchor],[method set_margin]). - + Display a Control as modal. Control must be a subwindow (see [method set_as_subwindow]). Modal controls capture the input signals until closed or the area outside them is accessed. When a modal control loses focus, or the ESC key is pressed, they automatically hide. Modal controls are used extensively for popup dialogs and menus. - + Set the focus access mode for the control (FOCUS_NONE, FOCUS_CLICK, FOCUS_ALL). Only one Control can be focused at the same time, and it will receive keyboard signals. - + Return wether the Control is the current focused control (see [method set_focus_mode]). - + Steal the focus from another control and become the focused control (see [method set_focus_mode]). - + Give up the focus, no other control will be able to receive keyboard input. - + Return which control is owning the keyboard focus, or null if no one. - + Hint for containers, set horizontal positioning flags. - + Hint for containers, return horizontal positioning flags. - + Hint for containers, set the stretch ratio. This value is relative to other stretch ratio, so if this control has 2 and another has 1, this one will be twice as big. - + Hint for containers, return the stretch ratio. This value is relative to other stretch ratio, so if this control has 2 and another has 1, this one will be twice as big. - + Hint for containers, set vertical positioning flags. - + Hint for containers, return vertical positioning flags. - + Override whole the [Theme] for this Control and all its children controls. - + Return a [Theme] override, if one exists (see [method set_theme]). - + @@ -7558,7 +7502,7 @@ Override a single icon ([Texture]) in the theme of this Control. If texture is empty, override is cleared. - + @@ -7567,7 +7511,7 @@ Override a single stylebox ([Stylebox]) in the theme of this Control. If stylebox is empty, override is cleared. - + @@ -7576,7 +7520,7 @@ Override a single font (font) in the theme of this Control. If font is empty, override is cleared. - + @@ -7584,7 +7528,7 @@ - + @@ -7593,7 +7537,7 @@ Override a single constant (integer) in the theme of this Control. If constant equals Theme.INVALID_CONSTANT, override is cleared. - + @@ -7603,7 +7547,7 @@ - + @@ -7613,7 +7557,7 @@ - + @@ -7623,7 +7567,7 @@ - + @@ -7633,7 +7577,7 @@ - + @@ -7643,20 +7587,20 @@ - + - + Set a tooltip, which will appear when the cursor is resting over this control. - + @@ -7665,21 +7609,21 @@ Return the tooltip, which will appear when the cursor is resting over this control. - + Set the default cursor shape for this control. See enum CURSOR_* for the list of shapes. - + Return the default cursor shape for this control. See enum CURSOR_* for the list of shapes. - + @@ -7688,7 +7632,7 @@ Return the cursor shape at a certain position in the control. - + @@ -7697,7 +7641,7 @@ Force a neighbour for moving the input focus to. When pressing TAB or directional/joypad directions focus is moved to the next control in that direction. However, the neighbour to move to can be forced with this function. - + @@ -7706,21 +7650,21 @@ Return the forced neighbour for moving the input focus to. When pressing TAB or directional/joypad directions focus is moved to the next control in that direction. However, the neighbour to move to can be forced with this function. - + Ignore mouse events on this control (even touchpad events send mouse events). - + Return if the control is ignoring mouse events (even touchpad events send mouse events). - + @@ -7728,23 +7672,23 @@ - + - + - + - + @@ -7795,10 +7739,10 @@ - X is relative to MARGIN_LEFT, Y is relative to MARGIN_TOP, + X is relative to MARGIN_LEFT, Y is relative to MARGIN_TOP. - X is relative to -MARGIN_RIGHT, Y is relative to -MARGIN_BOTTOM, + X is relative to -MARGIN_RIGHT, Y is relative to -MARGIN_BOTTOM. X and Y are a ratio (0 to 1) relative to the parent size 0 is left/top, 1 is right/bottom. @@ -7879,19 +7823,19 @@ - Convex Polygon Shape + Convex Polygon Shape. Convex polygon shape resource, which can be set into a [PhysicsBody] or area. - + - + @@ -7903,27 +7847,27 @@ - Convex Polygon Shape for 2D physics + Convex Polygon Shape for 2D physics. Convex Polygon Shape for 2D physics. - + Create the point set from a point cloud. The resulting convex hull will be set as the shape. - + Set a list of points in either clockwise or counter clockwise order, forming a convex polygon. - + @@ -7940,37 +7884,37 @@ - + - + - + - + - + - + @@ -7978,7 +7922,7 @@ - + @@ -7986,25 +7930,25 @@ - + - + - + - + @@ -8046,13 +7990,13 @@ - + - + @@ -8064,7 +8008,7 @@ - + @@ -8072,7 +8016,7 @@ - + @@ -8080,7 +8024,7 @@ - + @@ -8088,7 +8032,7 @@ - + @@ -8096,7 +8040,7 @@ - + @@ -8104,7 +8048,7 @@ - + @@ -8112,13 +8056,13 @@ - + - + @@ -8128,7 +8072,7 @@ - + @@ -8136,25 +8080,25 @@ - + - + - + - + @@ -8164,7 +8108,7 @@ - + @@ -8180,13 +8124,13 @@ - + - + @@ -8198,7 +8142,7 @@ - + @@ -8206,7 +8150,7 @@ - + @@ -8214,7 +8158,7 @@ - + @@ -8222,7 +8166,7 @@ - + @@ -8230,7 +8174,7 @@ - + @@ -8238,7 +8182,7 @@ - + @@ -8246,7 +8190,7 @@ - + @@ -8254,7 +8198,7 @@ - + @@ -8262,13 +8206,13 @@ - + - + @@ -8278,7 +8222,7 @@ - + @@ -8286,25 +8230,25 @@ - + - + - + - + @@ -8314,13 +8258,13 @@ - + - + @@ -8332,62 +8276,62 @@ - Damped sprint constraint for 2D physics. + Damped spring constraint for 2D physics. - Damped sprint constraint for 2D physics. This resembles a sprint joint that always want to go back to a given length. + Damped spring constraint for 2D physics. This resembles a spring joint that always want to go back to a given length. - + - Set the maximum length of the sprint joint. + Set the maximum length of the spring joint. - + - Return the maximum length of the sprint joint. + Return the maximum length of the spring joint. - + - Set the resting length of the sprint joint. The joint will always try to go to back this length when pulled apart. + Set the resting length of the spring joint. The joint will always try to go to back this length when pulled apart. - + - Return the resting length of the sprint joint. The joint will always try to go to back this length when pulled apart. + Return the resting length of the spring joint. The joint will always try to go to back this length when pulled apart. - + Set the stiffness of the spring joint. - + Return the stiffness of the spring joint. - + Set the damping of the spring joint. - + @@ -8406,26 +8350,26 @@ Dictionary type. Associative container which contains values referenced by unique keys. Dictionaries are always passed by reference. - + Clear the dictionary, removing all key/value pairs. - + Return true if the dictionary is empty. - + Erase a dictionary key/value pair by key. - + @@ -8434,21 +8378,21 @@ Return true if the dictionary has a given key. - + Return a hashed integer value representing the dictionary contents. - + Return the list of keys in the dictionary. - + @@ -8456,14 +8400,14 @@ - + Return the size of the dictionary (in pairs). - + @@ -8481,19 +8425,19 @@ 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 worldpace location of the DirectionalLight transform (origin) is ignored, only the basis is used do determine light direction. - + - + - + @@ -8501,7 +8445,7 @@ - + @@ -8533,7 +8477,7 @@ - + @@ -8541,35 +8485,35 @@ - + - + - + - + - + - + @@ -8577,7 +8521,7 @@ - + @@ -8585,13 +8529,13 @@ - + - + @@ -8599,7 +8543,7 @@ - + @@ -8607,7 +8551,7 @@ - + @@ -8615,7 +8559,7 @@ - + @@ -8623,13 +8567,13 @@ - + - + @@ -8639,7 +8583,7 @@ - + @@ -8649,7 +8593,7 @@ - + @@ -8667,7 +8611,7 @@ - + @@ -8675,19 +8619,19 @@ - + - + - + @@ -8697,7 +8641,7 @@ - + @@ -8713,21 +8657,21 @@ - + - + - + - + @@ -8735,7 +8679,7 @@ - + @@ -8745,25 +8689,25 @@ - + - + - + - + @@ -8771,31 +8715,31 @@ - + - + - + - + - + @@ -8803,7 +8747,7 @@ - + @@ -8815,7 +8759,7 @@ - + @@ -8843,7 +8787,7 @@ - + @@ -8859,17 +8803,17 @@ - + - + - + @@ -8885,13 +8829,13 @@ - + - + @@ -8907,19 +8851,19 @@ - + - + - + @@ -8927,13 +8871,13 @@ - + - + @@ -8941,7 +8885,7 @@ - + @@ -8949,7 +8893,7 @@ - + @@ -8957,7 +8901,7 @@ - + @@ -9089,141 +9033,141 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -9231,7 +9175,7 @@ - + @@ -9239,13 +9183,13 @@ - + - + @@ -9283,7 +9227,7 @@ - + @@ -9295,7 +9239,7 @@ - + @@ -9307,7 +9251,7 @@ - + @@ -9317,89 +9261,89 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -9407,125 +9351,125 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -9551,90 +9495,90 @@ FileDialog is a preset dialog used to choose files and directories in the filesystem. It supports filter masks. - + Clear all the added filters in the dialog. - + - Add a custom filter. Filter format is: "mask ; description", example (C++): dialog-"lt;add_filter("*.png ; PNG Images"); + Add a custom filter. Filter format is: "mask ; description", example (C++): dialog->add_filter("*.png ; PNG Images"); - + Get the current working directory of the file dialog. - + Get the current selected file of the file dialog (empty if none). - + Get the current selected path (directory and file) of the file dialog (empty if none). - + - + - + - + Set the file dialog mode from the MODE_* enum. - + Get the file dialog mode from the MODE_* enum. - + - + - + - + @@ -9662,14 +9606,16 @@ - Editor will not allow to select nonexistent files. + The dialog allows the selection of one, and only one file. + The dialog allows the selection of multiple files. + The dialog functions as a folder selector, disallowing the selection of any file. - Editor will warn when a file exists. + The dialog will warn when a file exists. @@ -9693,23 +9639,23 @@ FixedMaterial is a simple type of material [Resource], which contains a fixed amount of paramters. It is the only type of material supported in fixed-pipeline devices and APIs. It is also an often a better alternative to [ShaderMaterial] for most simple use cases. - + - Set a parameter, parameters are defined in the PARAM_* enum. The type of each parameter may change, so it"apos;s best to check the enum. + Set a parameter, parameters are defined in the PARAM_* enum. The type of each parameter may change, so it's best to check the enum. - + - Return a parameter, parameters are defined in the PARAM_* enum. The type of each parameter may change, so it"apos;s best to check the enum. + Return a parameter, parameters are defined in the PARAM_* enum. The type of each parameter may change, so it's best to check the enum. - + @@ -9718,7 +9664,7 @@ Set a texture. Textures change parameters per texel and are mapped to the model depending on the texcoord mode (see [method set_texcoord_mode]). - + @@ -9727,7 +9673,7 @@ Return a texture. Textures change parameters per texel and are mapped to the model depending on the texcoord mode (see [method set_texcoord_mode]). - + @@ -9736,7 +9682,7 @@ Set the texture coordinate mode. Each texture param (from the PARAM_* enum) has one. It defines how the textures are mapped to the object. - + @@ -9745,7 +9691,7 @@ Return the texture coordinate mode. Each texture param (from the PARAM_* enum) has one. It defines how the textures are mapped to the object. - + @@ -9753,7 +9699,7 @@ - + @@ -9761,39 +9707,39 @@ - + - Sets a special transform used to post-transform UV coordinates of the uv_xfrom tecoord mode: TEXCOORD_UV_TRANSFORM + Sets a special transform used to post-transform UV coordinates of the uv_xfrom tecoord mode: TEXCOORD_UV_TRANSFORM. - + - Returns the special transform used to post-transform UV coordinates of the uv_xfrom tecoord mode: TEXCOORD_UV_TRANSFORM + Returns the special transform used to post-transform UV coordinates of the uv_xfrom tecoord mode: TEXCOORD_UV_TRANSFORM. - + - + - + - + @@ -9811,10 +9757,10 @@ Specular Lighting (light reflected from the surface). - Emission Lighting (light emitted from the surface) + Emission Lighting (light emitted from the surface). - Specular Exponent (size of the specular dot) + Specular Exponent (size of the specular dot). Glow (Visible emitted scattered light). @@ -9825,7 +9771,7 @@ - Maximum amount of parameters + Maximum amount of parameters. @@ -9856,42 +9802,42 @@ Font contains an unicode compatible character set, as well as the ability to draw it with variable width, ascent, descent and kerning. For creating fonts from TTF files (or other font formats), see the editor support for fonts. TODO check wikipedia for graph of ascent/baseline/descent/height/etc. - + Set the total font height (ascent plus descent) in pixels. - + Return the total font height (ascent plus descent) in pixels. - + Set the font ascent (number of pixels above the baseline). - + Return the font ascent (number of pixels above the baseline). - + Return the font descent (number of pixels below the baseline). - + @@ -9902,7 +9848,7 @@ Add a kerning pair to the [Font] as a difference. Kerning pairs are special cases where a typeface advance is determined by the next character. - + @@ -9913,14 +9859,14 @@ Return a kerning pair as a difference. Kerning pairs are special cases where a typeface advance is determined by the next character. - + Add a texture to the [Font]. - + @@ -9935,7 +9881,7 @@ Add a character to the font, where "character" is the unicode value, "texture" is the texture index, "rect" is the region in the texture (in pixels!), "align" is the (optional) alignment for the character and "advance" is the (optional) advance. - + @@ -9946,7 +9892,7 @@ Return the size of a character, optionally taking kerning into account if the next character is provided. - + @@ -9955,12 +9901,12 @@ Return the size of a string, taking kerning and advance into account. - + Clear all the font data. - + @@ -9975,7 +9921,7 @@ Draw "string" into a canvas item using the font at a given "pos" position, with "modulate" color, and optionally clipping the width. "pos" specifies te baseline, not the top. To draw from the top, [i]ascent[/i] must be added to the Y axis. - + @@ -10002,7 +9948,7 @@ - + @@ -10028,13 +9974,13 @@ - + - + @@ -10050,13 +9996,13 @@ - + - + @@ -10072,7 +10018,7 @@ - + @@ -10086,7 +10032,7 @@ - + @@ -10100,7 +10046,7 @@ - + @@ -10108,7 +10054,7 @@ - + @@ -10116,7 +10062,7 @@ - + @@ -10124,7 +10070,7 @@ - + @@ -10132,7 +10078,7 @@ - + @@ -10140,7 +10086,7 @@ - + @@ -10148,7 +10094,7 @@ - + @@ -10156,7 +10102,7 @@ - + @@ -10164,7 +10110,7 @@ - + @@ -10172,7 +10118,7 @@ - + @@ -10180,7 +10126,7 @@ - + @@ -10188,7 +10134,7 @@ - + @@ -10244,7 +10190,7 @@ - + @@ -10252,7 +10198,7 @@ - + @@ -10266,7 +10212,7 @@ - + @@ -10282,7 +10228,7 @@ - + @@ -10296,7 +10242,7 @@ - + @@ -10308,7 +10254,7 @@ - + @@ -10322,7 +10268,7 @@ - + @@ -10336,7 +10282,7 @@ - + @@ -10348,7 +10294,7 @@ - + @@ -10356,7 +10302,7 @@ - + @@ -10370,7 +10316,7 @@ - + @@ -10384,7 +10330,7 @@ - + @@ -10398,7 +10344,7 @@ - + @@ -10412,7 +10358,7 @@ - + @@ -10424,7 +10370,7 @@ - + @@ -10432,7 +10378,7 @@ - + @@ -10452,21 +10398,21 @@ Base node for geometry based visual instances. Shares some common functionality like visibility and custom materials. - + Set the material override for the whole geometry. - + Return the material override for the whole geometry. - + @@ -10474,7 +10420,7 @@ - + @@ -10482,37 +10428,37 @@ - + - + - + - + - + - + @@ -10546,7 +10492,7 @@ Contains global variables accessible from everywhere. Use the normal [Object] API, such as "Globals.get(variable)", "Globals.set(variable,value)" or "Globals.has(variable)" to access them. Variables stored in engine.cfg are also loaded into globals, making this object very useful for reading custom game configuration options. - + @@ -10555,7 +10501,7 @@ Return true if a configuration value is present. - + @@ -10564,7 +10510,7 @@ Set the order of a configuration value (influences when saved to the config file). - + @@ -10573,7 +10519,7 @@ Return the order of a configuration value (influences when saved to the config file). - + @@ -10582,7 +10528,7 @@ If set to true, this value can be saved to the configuration file. This is useful for editors. - + @@ -10591,14 +10537,14 @@ If returns true, this value can be saved to the configuration file. This is useful for editors. - + Clear the whole configuration (not recommended, may break things). - + @@ -10607,7 +10553,7 @@ Convert a path to a localized path (res:// path). - + @@ -10616,13 +10562,13 @@ Convert a localized path (res://) to a full native OS path. - + - + @@ -10630,7 +10576,7 @@ - + @@ -10638,7 +10584,7 @@ - + @@ -10656,13 +10602,13 @@ - + - + @@ -10682,55 +10628,55 @@ - + - + - + - + - + - + - + - + - + @@ -10744,7 +10690,7 @@ - + @@ -10756,7 +10702,7 @@ - + @@ -10768,49 +10714,49 @@ - + - + - + - + - + - + - + - + @@ -10822,7 +10768,7 @@ - + @@ -10832,7 +10778,7 @@ - + @@ -10840,7 +10786,7 @@ - + @@ -10848,7 +10794,7 @@ - + @@ -10856,7 +10802,7 @@ - + @@ -10864,7 +10810,7 @@ - + @@ -10872,7 +10818,7 @@ - + @@ -10880,7 +10826,7 @@ - + @@ -10888,7 +10834,7 @@ - + @@ -10896,7 +10842,7 @@ - + @@ -10904,35 +10850,35 @@ - + - + - + - + - + - + @@ -10950,28 +10896,28 @@ Groove constraint for 2D physics. This is useful for making a body "slide" through a segment placed in another. - + Set the length of the groove. - + Return the length of the groove. - + Set the initial offset of the groove on body A. - + @@ -11134,7 +11080,7 @@ - + @@ -11148,13 +11094,13 @@ - + - + @@ -11168,7 +11114,7 @@ - + @@ -11176,7 +11122,7 @@ - + @@ -11184,71 +11130,71 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -11400,7 +11346,7 @@ - + @@ -11408,7 +11354,7 @@ - + @@ -11416,7 +11362,7 @@ - + @@ -11424,7 +11370,7 @@ - + @@ -11468,7 +11414,7 @@ IP contains some support functions for the IPv4 protocol. TCP/IP support is in different classes (see [TCP_Client], [TCP_Server]). IP provides hostname resolution support, both blocking and threaded. - + @@ -11477,7 +11423,7 @@ Resolve a given hostname, blocking. Resolved hostname is returned as an IP. - + @@ -11486,32 +11432,32 @@ Create a queue item for resolving a given hostname. The queue ID is returned, or RESOLVER_INVALID_ID on error. - + - Return the status of hostname queued for resolving, given it"apos;s queue ID. Returned status can be any of the RESOLVER_STATUS_* enumeration. + Return the status of hostname queued for resolving, given it's queue ID. Returned status can be any of the RESOLVER_STATUS_* enumeration. - + - Return a resolved item address, or an empty string if an error happened or resolution didn"apos;t happen yet (see [method get_resolve_item_status]). + Return a resolved item address, or an empty string if an error happened or resolution didn't happen yet (see [method get_resolve_item_status]). - + Erase a queue ID, removing it from the queue if needed. This should be used after a queue is completed to free it and enable more queries to happen. - + @@ -11551,7 +11497,7 @@ Built in native image datatype. Contains image data, which can be converted to a texture, and several functions to interact with it. - + @@ -11561,7 +11507,7 @@ - + @@ -11571,7 +11517,7 @@ - + @@ -11583,7 +11529,7 @@ - + @@ -11591,7 +11537,7 @@ - + @@ -11599,37 +11545,37 @@ - + - + - + - + - + - + @@ -11641,7 +11587,7 @@ - + @@ -11649,19 +11595,19 @@ - + - + - + @@ -11669,7 +11615,7 @@ - + @@ -11681,7 +11627,7 @@ - + @@ -11693,7 +11639,7 @@ - + @@ -11765,7 +11711,7 @@ - + @@ -11777,7 +11723,7 @@ - + @@ -11785,63 +11731,63 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -11863,7 +11809,7 @@ - + @@ -11871,43 +11817,43 @@ - + - + - + - + - + - + - + @@ -11917,11 +11863,11 @@ - + - + @@ -11935,7 +11881,7 @@ - + @@ -11943,7 +11889,7 @@ - + @@ -11951,7 +11897,7 @@ - + @@ -11961,7 +11907,7 @@ - + @@ -11969,7 +11915,7 @@ - + @@ -11979,7 +11925,7 @@ - + @@ -11987,46 +11933,44 @@ - + - + - Return the global, unscaled, screen pointer coordinates. - If the 2D viewport has been scaled, it may not work well - with [Camera] or controls. + Return the global, unscaled, screen pointer coordinates. If the 2D viewport has been scaled, it may not work well with [Camera] or controls. - + - + - + - + - + @@ -12067,10 +12011,10 @@ Built-in input event data. - Built-in input event data. InputEvent is a built-in engine datatype, given that it's passed around and used so much . Depending on it's type, the members contained can be different, so read the documentation well!. Input events can also represent actions (editable from the project settings). + Built-in input event data. InputEvent is a built-in engine datatype, given that it's passed around and used so much. Depending on it's type, the members contained can be different, so read the documentation well!. Input events can also represent actions (editable from the project settings). - + @@ -12079,14 +12023,14 @@ Return if this input event matches a pre-defined action, no matter the type. - + Return if this input event is an echo event (usually for key events). - + @@ -12135,7 +12079,7 @@ - + @@ -12143,13 +12087,13 @@ - + - + @@ -12191,7 +12135,7 @@ - + @@ -12199,13 +12143,13 @@ - + - + @@ -12253,7 +12197,7 @@ - + @@ -12261,13 +12205,13 @@ - + - + @@ -12313,7 +12257,7 @@ - + @@ -12321,13 +12265,13 @@ - + - + @@ -12385,7 +12329,7 @@ - + @@ -12393,13 +12337,13 @@ - + - + @@ -12469,7 +12413,7 @@ - + @@ -12477,13 +12421,13 @@ - + - + @@ -12559,7 +12503,7 @@ - + @@ -12567,13 +12511,13 @@ - + - + @@ -12635,7 +12579,7 @@ - + @@ -12643,13 +12587,13 @@ - + - + @@ -12703,7 +12647,7 @@ Singleton that manages actions. InputMap has a list of the actions used in InputEvent, which can be modified. - + @@ -12711,7 +12655,7 @@ - + @@ -12719,7 +12663,7 @@ - + @@ -12727,19 +12671,19 @@ - + - + - + @@ -12747,7 +12691,7 @@ - + @@ -12757,7 +12701,7 @@ - + @@ -12765,7 +12709,7 @@ - + @@ -12773,7 +12717,7 @@ - + @@ -12783,7 +12727,7 @@ - + @@ -12793,13 +12737,13 @@ - Integer Array . + Integer Array. - Integer Array. Array of integers. Can only contain integers. Optimized for memory usage, cant fragment the memory. + Integer Array. Array of integers. Can only contain integers. Optimized for memory usage, can't fragment the memory. - + @@ -12808,21 +12752,21 @@ Get an index in the array. - + Append a value to the array. - + Resize the array. - + @@ -12831,14 +12775,14 @@ Set an index in the array. - + Return the array size. - + @@ -12855,43 +12799,43 @@ - + - + - + - + - + - + - + @@ -12907,37 +12851,37 @@ - + - + - + - + - + - + @@ -12955,41 +12899,41 @@ Base node for all joint constraints in 2D phyisics. Joints take 2 bodies and apply a custom constraint. - + Set the path to the A node for the joint. Must be of type PhysicsBody2D. - + Return the path to the A node for the joint. - + Set the path to the B node for the joint. Must be of type PhysicsBody2D. - + Return the path to the B node for the joint. - + - + @@ -13005,7 +12949,7 @@ - + @@ -13013,7 +12957,7 @@ - + @@ -13021,7 +12965,7 @@ - + @@ -13031,95 +12975,95 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -13135,7 +13079,7 @@ - + @@ -13143,7 +13087,7 @@ - + @@ -13151,7 +13095,7 @@ - + @@ -13161,99 +13105,99 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -13271,105 +13215,105 @@ Label is a control that displays formatted text, optionally autowrapping it to the [Control] area. It inherits from range to be able to scroll wrapped text vertically. - + Set the alignmend mode to any of the ALIGN_* enumeration values. - + Return the alignmend mode (any of the ALIGN_* enumeration values). - + - + - + Set the label text. Text can contain newlines. - + Return the label text. Text can contain newlines. - + Set [i]autowrap[/i] mode. When enabled, autowrap will fit text to the control width, breaking sentences when they exceed the available horizontal space. When disabled, the label minimum width becomes the width of the longest row, and the minimum height large enough to fit all rows. - + Return the state of the [i]autowrap[/i] mode (see [method set_autowrap]). - + - + - + Return the height of a line. - + Return the amount of lines. - + - + - + - + @@ -13423,7 +13367,7 @@ - + @@ -13433,7 +13377,7 @@ - + @@ -13441,7 +13385,7 @@ - + @@ -13449,23 +13393,23 @@ - + - + - + - + @@ -13473,7 +13417,7 @@ - + @@ -13493,7 +13437,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. - + @@ -13501,7 +13445,7 @@ - + @@ -13509,7 +13453,7 @@ - + @@ -13517,7 +13461,7 @@ - + @@ -13525,73 +13469,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -13635,94 +13579,94 @@ LineEdit provides a single line string editor, used for text fields. - + Clear the [LineEdit] text. - + Select the whole string. - + Set the text in the [LineEdit], clearing the existing one and the selection. - + Return the text in the [LineEdit]. - + Set the cursor position inside the [LineEdit], causing it to scroll if needed. - + Return the cursor position inside the [LineEdit]. - + Set the maximum amount of characters the [LineEdit] can edit, and cropping existing text in case it exceeds that limit. Setting 0 removes the limit. - + Return the maximum amount of characters the [LineEdit] can edit. If 0 is returned, no limit exists. - + Append text at cursor, scrolling the [LineEdit] when needed. - + - Set the [i]editable[/i] status of the [LineEdit]. When disabled, existing text can"apos;t be modified and new text can"apos;t be added. + Set the [i]editable[/i] status of the [LineEdit]. When disabled, existing text can't be modified and new text can't be added. - + Return the [i]editable[/i] status of the [LineEdit] (see [method set_editable]). - + Set the [i]secret[/i] status of the [LineEdit]. When enabled, every character is displayed as "*". - + Return the [i]secret[/i] status of the [LineEdit] (see [method set_secret]). - + @@ -13778,28 +13722,28 @@ Line shape for 2D collision objects. It works like a 2D plane and will not allow any body to go to the negative side. Not recommended for rigid bodies, and usually not recommended for static bodies either because it forces checks against it on every frame. - + Set the line normal. - + Return the line normal. - + Set the line distance from the origin. - + @@ -13818,7 +13762,7 @@ Main loop is the abstract main loop base class. All other main loop classes are derived from it. Upon application start, a [MainLoop] has to be provided to OS, else the application will exit. This happens automatically (and a [SceneMainLoop] is created), unless a main [Script] is supplied, which may or not create and return a [MainLoop]. - + @@ -13860,7 +13804,7 @@ - + @@ -13868,7 +13812,7 @@ - + @@ -13886,7 +13830,7 @@ Material is a base [Resource] used for coloring and shading geometry. All materials inherit from it and almost all [VisualInstance] derived nodes carry a Material. A few flags and parameters are shared between all material types and are configured here. - + @@ -13895,7 +13839,7 @@ Set a [Material] flag, which toggles on or off a behavior when rendering. See enumeration FLAG_* for a list. - + @@ -13904,41 +13848,41 @@ Return a [Material] flag, which toggles on or off a behavior when rendering. See enumeration FLAG_* for a list. - + Set blend mode for the material, which can be one of BLEND_MODE_MIX (default), BLEND_MODE_ADD, BLEND_MODE_SUB. Keep in mind that only BLEND_MODE_MIX ensures that the material [i]may[/i] be opaque, any other blend mode will render with alpha blending enabled in raster-based [VisualServer] implementations. - + Return blend mode for the material, which can be one of BLEND_MODE_MIX (default), BLEND_MODE_ADD, BLEND_MODE_SUB. Keep in mind that only BLEND_MODE_MIX ensures that the material [i]may[/i] be opaque, any other blend mode will render with alpha blending enabled in raster-based [VisualServer] implementations. - + Set the line width for geometry drawn with FLAG_WIREFRAME enabled, or LINE primitives. Note that not all hardware or VisualServer backends support this (like DirectX). - + Return the line width for geometry drawn with FLAG_WIREFRAME enabled, or LINE primitives. Note that not all hardware or VisualServer backends support this (like DirectX). - + - + @@ -13965,7 +13909,7 @@ - Maximum amount of flags + Maximum amount of flags. @@ -13998,47 +13942,47 @@ 3x3 matrix used for 3D rotation and scale. Contains 3 vector fields x,y and z. Can also be accessed as array of 3D vectors. Almost always used as orthogonal basis for a [Transform]. - + Return the determinant of the matrix. - + Return euler angles from the matrix. - + - + - + Return the affine inverse of the matrix. - + Return the orthonormalized version of the matrix (useful to call from time to time to avoid rounding error). - + @@ -14049,7 +13993,7 @@ Return the rotated version of the matrix, by a given axis and angle. - + @@ -14058,7 +14002,7 @@ Return the scaled version of the matrix, by a 3D scale. - + @@ -14067,7 +14011,7 @@ Transposed dot product with the x axis of the matrix. - + @@ -14076,7 +14020,7 @@ Transposed dot product with the y axis of the matrix. - + @@ -14085,14 +14029,14 @@ Transposed dot product with the z axis of the matrix. - + Return the transposed version of the matrix. - + @@ -14101,7 +14045,7 @@ Return a vector transformed by the matrix and return it. - + @@ -14110,7 +14054,7 @@ Return a vector transformed by the transposed matrix and return it. - + @@ -14121,7 +14065,7 @@ Create a matrix from 3 axis vectors. - + @@ -14130,7 +14074,7 @@ Create a matrix from an axis vector and an angle. - + @@ -14157,13 +14101,13 @@ 3x2 Matrix for 2D transforms. - + - + @@ -14171,7 +14115,7 @@ - + @@ -14179,25 +14123,25 @@ - + - + - + - + @@ -14207,19 +14151,19 @@ - + - + - + @@ -14227,7 +14171,7 @@ - + @@ -14235,7 +14179,7 @@ - + @@ -14243,7 +14187,7 @@ - + @@ -14251,7 +14195,7 @@ - + @@ -14259,7 +14203,7 @@ - + @@ -14289,7 +14233,7 @@ Special button that brings up a [PopupMenu] when clicked. That's pretty much all it does, as it's just a helper class when bulding GUIs. - + @@ -14336,19 +14280,19 @@ Mesh is a type of [Resource] that contains vertex-array based geometry, divided in [i]surfaces[/i]. Each surface contains a completely separate array and a material used to draw it. Design wise, a mesh with multiple surfaces is prefered to a single surface, because objects created in 3D editing software commonly contain multiple materials. - + - + - + @@ -14356,23 +14300,23 @@ - + - + - + - + @@ -14382,24 +14326,26 @@ - Create a new surface ([method get_surface_count] will become surf_idx for this.[br]"#10;"#9;"#9;"#9;Surfaces are created to be rendered using a "primitive", which may be PRIMITIVE_POINTS, PRIMITIVE_LINES, PRIMITIVE_LINE_STRIP, PRIMITIVE_LINE_LOOP, PRIMITIVE_TRIANGLES, PRIMITIVE_TRIANGLE_STRIP, PRIMITIVE_TRIANGLE_FAN. (As a note, when using indices, it is recommended to only use just points, lines or triangles).[br]"#10;"#9;"#9;"#9;The format of a surface determines which arrays it will allocate and hold, so "format" is a combination of ARRAY_FORMAT_* mask constants ORed together. ARRAY_FORMAT_VERTEX must be always present. "array_len" determines the amount of vertices in the array (not primitives!). if ARRAY_FORMAT_INDEX is in the format mask, then it means that an index array will be allocated and "index_array_len" must be passed. + Create a new surface ([method get_surface_count] that will become surf_idx for this. + Surfaces are created to be rendered using a "primitive", which may be PRIMITIVE_POINTS, PRIMITIVE_LINES, PRIMITIVE_LINE_STRIP, PRIMITIVE_LINE_LOOP, PRIMITIVE_TRIANGLES, PRIMITIVE_TRIANGLE_STRIP, PRIMITIVE_TRIANGLE_FAN. (As a note, when using indices, it is recommended to only use just points, lines or triangles). + The format of a surface determines which arrays it will allocate and hold, so "format" is a combination of ARRAY_FORMAT_* mask constants ORed together. ARRAY_FORMAT_VERTEX must be always present. "array_len" determines the amount of vertices in the array (not primitives!). if ARRAY_FORMAT_INDEX is in the format mask, then it means that an index array will be allocated and "index_array_len" must be passed. - + Return the amount of surfaces that the [Mesh] holds. - + Remove a surface at position surf_idx, shifting greater surfaces one surf_idx slot down. - + @@ -14408,7 +14354,7 @@ Return the length in vertices of the vertex array in the requested surface (see [method add_surface]). - + @@ -14417,7 +14363,7 @@ Return the length in indices of the index array in the requested surface (see [method add_surface]). - + @@ -14426,7 +14372,7 @@ Return the format mask of the requested surface (see [method add_surface]). - + @@ -14435,7 +14381,7 @@ Return the primitive type of the requested surface (see [method add_surface]). - + @@ -14444,7 +14390,7 @@ Set a [Material] for a given surface. Surface will be rendered using this material. - + @@ -14453,7 +14399,7 @@ Return a [Material] in a given surface. Surface is rendered using this material. - + @@ -14461,7 +14407,7 @@ - + @@ -14469,21 +14415,21 @@ - + - + - + - + @@ -14513,6 +14459,7 @@ UV array (array of [Vector3]() UVs or float array of groups of 2 floats (u,v)). + Second UV array (array of [Vector3]() UVs or float array of groups of 2 floats (u,v)). Array of bone indices, as a float array. Each element in groups of 4 floats. @@ -14539,6 +14486,7 @@ Array format will include UVs. + Array format will include another set of UVs. Array format will include bone indices. @@ -14578,11 +14526,11 @@ - + - + @@ -14592,7 +14540,7 @@ - + @@ -14600,31 +14548,31 @@ - + - + - + - + - + @@ -14632,7 +14580,7 @@ - + @@ -14640,7 +14588,7 @@ - + @@ -14648,7 +14596,7 @@ - + @@ -14656,7 +14604,7 @@ - + @@ -14664,7 +14612,7 @@ - + @@ -14672,7 +14620,7 @@ - + @@ -14680,7 +14628,7 @@ - + @@ -14688,7 +14636,7 @@ - + @@ -14696,7 +14644,7 @@ - + @@ -14704,7 +14652,7 @@ - + @@ -14712,7 +14660,7 @@ - + @@ -14720,7 +14668,7 @@ - + @@ -14728,7 +14676,7 @@ - + @@ -14736,7 +14684,7 @@ - + @@ -14744,7 +14692,7 @@ - + @@ -14752,7 +14700,7 @@ - + @@ -14760,13 +14708,13 @@ - + - + @@ -14774,7 +14722,7 @@ - + @@ -14782,7 +14730,7 @@ - + @@ -14792,7 +14740,7 @@ - + @@ -14800,7 +14748,7 @@ - + @@ -14808,13 +14756,13 @@ - + - + @@ -14824,7 +14772,7 @@ - + @@ -14834,7 +14782,7 @@ - + @@ -14842,13 +14790,13 @@ - + - + @@ -14856,13 +14804,13 @@ - + - + @@ -14880,45 +14828,45 @@ MeshInstance is a [Node] that takes a [Mesh] resource and adds it to the current [Scenario] by creating an instance of it. This is the class most often used to get 3D geometry rendered and can be used to instance a sigle [Mesh] in many places. This allows to reuse geometry and save on resources. When a [Mesh] has to be instanced more than thousands of times at close proximity, consider using a [MultiMesh] in a [MultiMeshInstance] instead. - + Set the [Mesh] resource for the instance. - + Return the current [Mesh] resource for the instance. - + - + - + Return the AABB of the mesh, in local coordinates. - + - This helper creates a [StaticBody] child [Node] using the mesh geometry as collision. It"apos;s mainly used for testing. + This helper creates a [StaticBody] child [Node] using the mesh geometry as collision. It's mainly used for testing. - + @@ -14934,14 +14882,14 @@ Library of meshes. Contains a list of [Mesh] resources, each with name and ID. Useful for GridMap or painting Terrain. - + Create a new item in the library, supplied an id. - + @@ -14950,7 +14898,7 @@ Set the name of the item. - + @@ -14959,7 +14907,7 @@ Set the mesh of the item. - + @@ -14967,7 +14915,7 @@ - + @@ -14976,7 +14924,7 @@ Return the name of the item. - + @@ -14985,7 +14933,7 @@ Return the mesh of the item. - + @@ -14993,26 +14941,26 @@ - + Remove the item. - + Clear the library. - + Return the list of items. - + @@ -15028,38 +14976,40 @@ Provides high perfomance mesh instancing. - MultiMesh provides low level mesh instancing. If the amount of [Mesh] instances needed goes from hundreds to thousands (and most need to be visible at close proximity) creating such a large amount of [MeshInstance] nodes may affect performance by using too much CPU or video memory. [br]For this case a MultiMesh becomes very useful, as it can draw thousands of instances with little API overhead.[br] As a drawback, if the instances are too far away of each other, performance may be reduced as every sigle instance will always rendered (they are spatially indexed as one, for the whole object).[br] Since instances may have any behavior, the AABB used for visibility must be provided by the user, or generated with [method generate_aabb]. + MultiMesh provides low level mesh instancing. If the amount of [Mesh] instances needed goes from hundreds to thousands (and most need to be visible at close proximity) creating such a large amount of [MeshInstance] nodes may affect performance by using too much CPU or video memory. + For this case a MultiMesh becomes very useful, as it can draw thousands of instances with little API overhead.[br] As a drawback, if the instances are too far away of each other, performance may be reduced as every sigle instance will always rendered (they are spatially indexed as one, for the whole object). + Since instances may have any behavior, the AABB used for visibility must be provided by the user, or generated with [method generate_aabb]. - + Set the [Mesh] resource to be drawn in multiple instances. - + Return the [Mesh] resource drawn as multiple instances. - + Set the amount of instnces that is going to be drawn. Changing this number will erase all the existing instance transform and color data. - + Return the amount of instnces that is going to be drawn. - + @@ -15068,7 +15018,7 @@ Set the transform for a specific instance. - + @@ -15077,7 +15027,7 @@ Return the transform of a specific instance. - + @@ -15086,7 +15036,7 @@ Set the color of a specific instance. - + @@ -15095,21 +15045,21 @@ Get the color of a specific instance. - + Set the visibility AABB. If not provided, MultiMesh will not be visible. - + Return the visibility AABB. - + Generate a new visibility AABB, using mesh AABB and instance transforms. Since instance information is stored in the [VisualServer], this function is VERY SLOW and must NOT be used often. @@ -15126,14 +15076,14 @@ MultiMeshInstance is a [Node] that takes a [MultiMesh] resource and adds it to the current [Scenario] by creating an instance of it (yes, this is an instance of instances). - + Set the [MultiMesh] to be instance. - + @@ -15150,17 +15100,17 @@ - + - + - + @@ -15174,7 +15124,7 @@ - + @@ -15186,7 +15136,7 @@ - + @@ -15194,13 +15144,13 @@ - + - + @@ -15212,7 +15162,7 @@ - + @@ -15222,7 +15172,7 @@ - + @@ -15230,7 +15180,7 @@ - + @@ -15238,13 +15188,13 @@ - + - + @@ -15260,31 +15210,31 @@ - + - + - + - + - + @@ -15292,7 +15242,7 @@ - + @@ -15306,25 +15256,25 @@ - + - + - + - + @@ -15340,169 +15290,169 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -15518,121 +15468,121 @@ Nodes can be set as children of other nodes, resulting in a tree arrangement. Any tree of nodes is called a "Scene". - Scenes can be saved to disk, and then instanced into other scenes. This allows for very high flexibility in the architecture and data model of the projects. - [SceneMainLoop] contains the "active" tree of nodes, and a node becomes active (receinving NOTIFICATION_ENTER_SCENE) when added to that tree. - A node can contain any number of nodes as a children (but there is only one tree root) with the requirement that no two childrens with the same name can exist. - Nodes can, optionally, be added to groups. This makes it easy to reach a number of nodes from the code (for example an "enemies" group). - Nodes can be set to "process" state, so they constantly receive a callback requesting them to process (do anything). Normal processing ([method _process]) happens as fast as possible and is dependent on the frame rate, so the processing time delta is variable. Fixed processing ([method _fixed_process]) happens a fixed amount of times per second (by default 60) and is useful to link itself to the physics. - Nodes can also process input events. When set, the [method _input] function will be called with every input that the program receives. Since this is usually too overkill (unless used for simple projects), an [method _unhandled_input] function is called when the input was not handled by anyone else (usually, GUI [Control] nodes). - To keep track of the scene hieararchy (specially when instancing scenes into scenes) an "owner" can be set to a node. This keeps track of who instanced what. This is mostly useful when writing editors and tools, though. - Finally, when a node is freed, it will free all its children nodes too. + Scenes can be saved to disk, and then instanced into other scenes. This allows for very high flexibility in the architecture and data model of the projects. + [SceneMainLoop] contains the "active" tree of nodes, and a node becomes active (receinving NOTIFICATION_ENTER_SCENE) when added to that tree. + A node can contain any number of nodes as a children (but there is only one tree root) with the requirement that no two childrens with the same name can exist. + Nodes can, optionally, be added to groups. This makes it easy to reach a number of nodes from the code (for example an "enemies" group). + Nodes can be set to "process" state, so they constantly receive a callback requesting them to process (do anything). Normal processing ([method _process]) happens as fast as possible and is dependent on the frame rate, so the processing time delta is variable. Fixed processing ([method _fixed_process]) happens a fixed amount of times per second (by default 60) and is useful to link itself to the physics. + Nodes can also process input events. When set, the [method _input] function will be called with every input that the program receives. Since this is usually too overkill (unless used for simple projects), an [method _unhandled_input] function is called when the input was not handled by anyone else (usually, GUI [Control] nodes). + To keep track of the scene hieararchy (specially when instancing scenes into scenes) an "owner" can be set to a node. This keeps track of who instanced what. This is mostly useful when writing editors and tools, though. + Finally, when a node is freed, it will free all its children nodes too. - + - + - + Called for fixed processing (synced to the physics). - + Called when any input happens (also must enable with [method set_process_input] or the property). - + Called for processing. This is called every frame, with the delta time from the previous frame. - + Called when ready (entered scene and children entered too). - + Called when any input happens that was not handled by something else (also must enable with [method set_process_unhandled_input] or the property). - + Called when any key input happens that was not handled by something else. - + Set the name of the [Node]. Name must be unique within parent, and setting an already existing name will cause for the node to be automatically renamed. - + Return the name of the [Node]. Name is be unique within parent. - + Add a child [Node]. Nodes can have as many children as they want, but every child must have a unique name. Children nodes are automatically deleted when the parent node is deleted, so deleting a whole scene is performed by deleting its topmost node. - + Remove a child [Node]. Node is NOT deleted and will have to be deleted manually. - + - + Return the amount of children nodes. - + - + - Return a children node by it"apos;s index (see [method get_child_count]). This method is often used for iterating all children of a node. + Return a children node by it's index (see [method get_child_count]). This method is often used for iterating all children of a node. - + @@ -15640,37 +15590,38 @@ - + - Fetch a node. NodePath must be valid (or else error will occur) and can be either the path to child node, a relative path (from the current node to another node), or an absolute path to a node.[br] Note: fetching absolute paths only works when the node is inside the scene tree (see [method is_inside_scene]). Examples. Assume your current node is Character and following tree:[br] - root/[br] - root/Character[br] - root/Character/Sword[br] - root/Character/Backpack/Dagger[br] - root/MyGame[br] - root/Swamp/Alligator[br] - root/Swamp/Mosquito[br] - root/Swamp/Goblin[br] -[br] - Possible paths are:[br] - - get_node("Sword")[br] - - get_node("Backpack/Dagger")[br] - - get_node("../Swamp/Alligator")[br] - - get_node("/root/MyGame")[br] + Fetch a node. NodePath must be valid (or else error will occur) and can be either the path to child node, a relative path (from the current node to another node), or an absolute path to a node. + Note: fetching absolute paths only works when the node is inside the scene tree (see [method is_inside_scene]). Examples. Assume your current node is Character and following tree:[br] + root/ + root/Character + root/Character/Sword + root/Character/Backpack/Dagger + root/MyGame + root/Swamp/Alligator + root/Swamp/Mosquito + root/Swamp/Goblin + + Possible paths are: + - get_node("Sword") + - get_node("Backpack/Dagger") + - get_node("../Swamp/Alligator") + - get_node("/root/MyGame") - + Return the parent [Node] of the current [Node], or an empty Object if the node lacks a parent. - + @@ -15678,7 +15629,7 @@ - + @@ -15686,13 +15637,13 @@ - + - + @@ -15701,7 +15652,7 @@ Return [i]true[/i] if the "node" argument is a direct or indirect child of the current node, otherwise return [i]false[/i]. - + @@ -15710,14 +15661,14 @@ Return [i]true[/i] if "node" occurs later in the scene hierarchy than the current node, otherwise return [i]false[/i]. - + Return the absolute path of the current node. This only works if the curent node is inside the scene tree (see [method is_inside_scene]). - + @@ -15726,23 +15677,23 @@ Return the relative path from the current node to the specified node in "node" argument. Both nodes must be in the same scene, or else the function will fail. - + - Add a node to a group. Groups are helpers to name and organize group of nodes, like for example: "Enemies" "Collectables", etc. A [Node] can be in any number of groups. Nodes can be assigned a group at any time, but will not be added to it until they are inside the scene tree (see [method is_inside_scene]). + Add a node to a group. Groups are helpers to name and organize group of nodes, like for example: "Enemies", "Collectables", etc. A [Node] can be in any number of groups. Nodes can be assigned a group at any time, but will not be added to it until they are inside the scene tree (see [method is_inside_scene]). - + Remove a node from a group. - + @@ -15750,7 +15701,7 @@ - + @@ -15759,194 +15710,194 @@ Move a child node to a different position (order) amongst the other children. Since calls, signals, etc are performed by tree order, changing the order of chilren nodes may be useful. - + - + Move this node to the top of the array of nodes of the parent node. This is often useful on GUIs ([Control]), because their order of drawing fully depends on their order in the tree. - + Set the node owner. A node can have any other node as owner (as long as a valid parent, grandparent, etc ascending in the tree). When saving a node (using SceneSaver) all the nodes it owns will be saved with it. This allows to create complex SceneTrees, with instancing and subinstancing. - + Get the node owner (see [method set_node_owner]). - + Remove a node and set all its children as childrens of the parent node (if exists). All even subscriptions that pass by the removed node will be unsubscribed. - + Get the node index in the parent (assuming it has a parent). - + Print the screne to stdout. Used mainly for debugging purposes. - + A node can contain a filename. This filename should not be changed by the user, unless writing editors and tools. When a scene is instanced from a file, it topmost node contains the filename from where it was loaded. - + Return a filename that may be containedA node can contained by the node. When a scene is instanced from a file, it topmost node contains the filename from where it was loaded (see [method set_filename]). - + Notify the current node and all its chldren recursively by calling notification() in all of them. - + Enables or disables node fixed framerate processing. When a node is being processed, it will receive a NOTIFICATION_PROCESS at a fixed (usually 60fps, check [OS] to change that) interval (and the [method _fixed_process] callback will be called if exists). It is common to check how much time was elapsed since the previous frame by calling [method get_fixed_process_time]. - + Return the time elapsed since the last fixed frame. This is always the same in fixed proecssing unless the frames per second is changed in [OS]. - + Return true if fixed processing is enabled (see [method set_fixed_process]). - + Enables or disables node processing. When a node is being processed, it will receive a NOTIFICATION_PROCESS on every drawn frame (and the [method _process] callback will be called if exists). It is common to check how much time was elapsed since the previous frame by calling [method get_process_time]. - + Return the time elapsed (in seconds) since the last process callback. This is almost always different each time. - + - Return wether processing is enabled in the current node (see [method set_process]). + Return whether processing is enabled in the current node (see [method set_process]). - + Enable input processing for node. This is not requiered for GUI controls! It hooks up the node to receive all input (see [method _input]). - + Return true if the node is processing input (see [method set_process_input]). - + Enable unhandled input processing for node. This is not requiered for GUI controls! It hooks up the node to receive all input that was not previously handled before (usually by a [Control]). (see [method _unhandled_input]). - + Return true if the node is processing unhandled input (see [method set_process_unhandled_input]). - + - + - + - + - + Return true if the node can process. - + - + - + - + Return a duplicate of the scene, with all nodes and parameters copied. Subscriptions will not be duplicated. - + @@ -15955,13 +15906,13 @@ Replace a node in a scene by a given one. Subscriptions that pass through this node will be lost. - + - + @@ -16018,60 +15969,58 @@ Base node for 2D system. - Base node for 2D system. Node2D contains a position, rotation and scale, which is used to position and animate. - It can alternatively be used with a custom 2D transform ([Matrix32]). - A tree of Node2Ds allows complex hierachies for animation and positioning. + Base node for 2D system. Node2D contains a position, rotation and scale, which is used to position and animate. It can alternatively be used with a custom 2D transform ([Matrix32]). A tree of Node2Ds allows complex hierachies for animation and positioning. - + Set the position of the 2d node. - + Set the rotation of the 2d node. - + Set the scale of the 2d node. - + Return the position of the 2D node. - + Return the rotation of the 2D node. - + Return the scale of the 2D node. - + - + @@ -16079,7 +16028,7 @@ - + @@ -16087,32 +16036,32 @@ - + Return the global position of the 2D node. - + - + - + - + @@ -16127,11 +16076,10 @@ Built-in type optimized for path traversing. - Built-in type optimized for path traversing. A Node path is an optimized compiled path used for traversing the scene tree. - It references nodes and can reference properties in that node, or even reference properties inside the resources of the node. + Built-in type optimized for path traversing. A Node path is an optimized compiled path used for traversing the scene tree. It references nodes and can reference properties in that node, or even reference properties inside the resources of the node. - + @@ -16140,21 +16088,21 @@ Return a path level name. - + Return the path level count. - + Return the property associated (empty if none). - + @@ -16163,28 +16111,28 @@ Return the subname level name. - + Return the subname count. - + Return true if the node path is absolute (not relative). - + Return true if the node path is empty. - + @@ -16200,32 +16148,32 @@ Operating System functions. OS Wraps the most common functionality to communicate with the host Operating System, such as: - -Mouse Grabbing - -Mouse Cursors - -Clipboard - -Video Mode - -Date " Time - -Timers - -Environment Variables - -Execution of Binaries - -Command Line + -Mouse Grabbing + -Mouse Cursors + -Clipboard + -Video Mode + -Date " Time + -Timers + -Environment Variables + -Execution of Binaries + -Command Line - + Set clipboard to the OS. - + Get clipboard from the host OS. - + @@ -16238,7 +16186,7 @@ Change the video mode. - + @@ -16247,7 +16195,7 @@ Return the current video mode size. - + @@ -16256,7 +16204,7 @@ Return true if the current video mode is fullscreen. - + @@ -16265,7 +16213,7 @@ Return true if the window is resizable. - + @@ -16274,79 +16222,78 @@ Return the list of fullscreen modes. - + Set the amount of fixed iterations per second (for fixed process and physics). - + Return the amount of fixed iterations per second (for fixed process and physics). - + - + - + - + - + - + - Set to true to enable the low cpu usage mode. In this mode, the screen only redraws when there are changes, and a considerable sleep time is inserted between frames. - This way, editors using the engine UI only use very little cpu. + Set to true to enable the low cpu usage mode. In this mode, the screen only redraws when there are changes, and a considerable sleep time is inserted between frames. This way, editors using the engine UI only use very little cpu. - + Return true if low cpu usage mode is enabled. - + - + - Return the path tot he current engine executable. + Return the path to the current engine executable. - + @@ -16361,7 +16308,7 @@ Execute the binary file in given path, optionally blocking until it returns. A process ID is returned. - + @@ -16370,7 +16317,7 @@ Kill a process ID. - + @@ -16378,13 +16325,13 @@ - + - + @@ -16393,7 +16340,7 @@ Return an environment variable. - + @@ -16402,198 +16349,199 @@ Return true if an envieronment variable exists. - + Return the name of the host OS. - + Return the commandline passed to the engine. - + Return the main loop object (see [MainLoop]). - + Return the current date. - + Return the current time. - + - + - + - Delay executing of the current thread by given usecs. + Delay executing of the current thread by given microseconds. - + + Delay executing of the current thread by given milliseconds. - + Return the amount of time passed in milliseconds since the engine started. - + Return the host OS locale. - + - + - + Return true if the host OS allows drawing. - + Return the total amount of frames drawn. - + Return true if the engine was executed with -v (verbose stdout). - + - + - + - + - + - + - + - + Return the max amount of static memory used (only works in debug). - + Return the total amount of dynamic memory used (only works in debug). - + - + - + - + - + - + @@ -16607,21 +16555,21 @@ - + - + - + - + @@ -16675,38 +16623,38 @@ Base class for all non built-in types. Everything not a built-in type starts the inheritance chain from this class. - Objects do not manage memory, if inheriting from one the object will most likely have to be deleted manually (call the [method free] function from the script or delete from C++). - Some derivates add memory management, such as [Reference] (which keps a reference count and deletes itself automatically when no longer referenced) and [Node], which deletes the children tree when deleted. - Objects export properties, which are mainly useful for storage and editing, but not really so much in programming. Properties are exported in [method _get_property_list] and handled in [method _get] and [_set]. However, scripting languages and C++ have simper means to export them. - Objects also receive notifications ([method _notification]). Notifications are a simple way to notify the object about simple events, so they can all be handled together. + Objects do not manage memory, if inheriting from one the object will most likely have to be deleted manually (call the [method free] function from the script or delete from C++). + Some derivates add memory management, such as [Reference] (which keps a reference count and deletes itself automatically when no longer referenced) and [Node], which deletes the children tree when deleted. + Objects export properties, which are mainly useful for storage and editing, but not really so much in programming. Properties are exported in [method _get_property_list] and handled in [method _get] and [_set]. However, scripting languages and C++ have simper means to export them. + Objects also receive notifications ([method _notification]). Notifications are a simple way to notify the object about simple events, so they can all be handled together. - + Return a property, return null if the property does not exist. - + Return the property list, array of dictionaries, dictionaries must countain: name:String, type:int (see TYPE_* enum in globals) and optionally: hint:int (see PROPERTY_HINT_* in globals), hint_string:String, usage:int (see PROPERTY_USAGE_* in globals). - + - + Notification request, the notification id is received. - + @@ -16715,14 +16663,14 @@ Set a property. Return true if the property was found. - + Return the type of the object as a string. - + @@ -16731,7 +16679,7 @@ Check the type of the obeject against a string (including inheritance). - + @@ -16740,21 +16688,21 @@ Set property into the object. - + Get a property from the object. - + Return the list of properties as an array of dictionaries, dictionaries countain: name:String, type:int (see TYPE_* enum in globals) and optionally: hint:int (see PROPERTY_HINT_* in globals), hint_string:String, usage:int (see PROPERTY_USAGE_* in globals). - + @@ -16763,28 +16711,28 @@ Notify the object of something. - + Return the instance ID. All objects have a unique instance ID. - + Set a script into the object, scripts extend the object functionality. - + Return the object script (or null if it doesn't have one). - + @@ -16793,14 +16741,14 @@ Set a metadata into the object. Medatada is serialized. Metadata can be [i]anything[/i]. - + Return a metadata from the object. - + @@ -16809,14 +16757,14 @@ Return true if a metadata is found with the requested name. - + Return the list of metadatas in the object. - + @@ -16825,7 +16773,7 @@ Add a user signal (can be added anytime). Arguments are optional, but can be added as an array of dictionaries, each containing "name" and "type" (from [@GlobalScope] TYPE_*). - + @@ -16842,7 +16790,7 @@ Emit a signal. Arguments are passed in an array. - + @@ -16869,7 +16817,7 @@ Call a function in the object, result is returned. - + @@ -16886,7 +16834,7 @@ Create and store a function in the object. The call will take place on idle time. - + @@ -16894,7 +16842,7 @@ - + @@ -16902,14 +16850,14 @@ - + Return the list of signals as an array of dictionaries. - + @@ -16923,11 +16871,10 @@ - Connect a signal to a method at a target (member function). Binds are optional and are passed as extra arguments to the call. Flags specify optional deferred or one shot connections, see enum CONNECT_*. - A signal can only be connected once to a method, and it will throw an error if already connected. If you want to avoid this, use [method is_connected] to check. + Connect a signal to a method at a target (member function). Binds are optional and are passed as extra arguments to the call. Flags specify optional deferred or one shot connections, see enum CONNECT_*. A signal can only be connected once to a method, and it will throw an error if already connected. If you want to avoid this, use [method is_connected] to check. - + @@ -16938,7 +16885,7 @@ Disconnect a signal from a method. - + @@ -16951,48 +16898,48 @@ Return true if a connection exists for a given signal and target/method. - + If set to true, signal emission is blocked. - + Return true if signal emission blocking is enabled. - + Set true if this object can translate strings (in calls to tr() ). Default is true. - + Return true if this object can translate strings. - + - + - deprecated, will go away. + Deprecated, will go away. - + @@ -17046,7 +16993,7 @@ OptionButton is a type button that provides a selectable list of items when pressed. The item selected becomes the "current" item and is displayed as the button text. - + @@ -17055,7 +17002,7 @@ Add an item, with text "label" and (optionally) id. If no "id" is passed, "id" becomes the item index. New items are appended at the end. - + @@ -17066,7 +17013,7 @@ Add an item, with a "texture" icon, text "label" and (optionally) id. If no "id" is passed, "id" becomes the item index. New items are appended at the end. - + @@ -17075,7 +17022,7 @@ Set the text of an item at index "idx". - + @@ -17084,7 +17031,7 @@ Set the icon of an item at index "idx". - + @@ -17092,7 +17039,7 @@ - + @@ -17101,7 +17048,7 @@ Set the ID of an item at index "idx". - + @@ -17109,7 +17056,7 @@ - + @@ -17118,7 +17065,7 @@ Return the text of the item at index "idx". - + @@ -17127,7 +17074,7 @@ Return the icon of the item at index "idx". - + @@ -17136,13 +17083,13 @@ Return the ID of the item at index "idx". - + - + @@ -17150,48 +17097,48 @@ - + Return the amount of items in the OptionButton. - + Add a separator to the list of items. Separators help to group items. Separator also takes up an index and is appended at the end. - + Clear all the items in the [OptionButton]. - + Select an item by index and make it the current item. - + Return the current item index - + - + - + @@ -17244,7 +17191,7 @@ - + @@ -17254,7 +17201,7 @@ - + @@ -17264,7 +17211,7 @@ - + @@ -17284,7 +17231,7 @@ Optimized translation. Uses real-time compressed translations, which results in very small dictionaries. - + @@ -17300,7 +17247,7 @@ - + @@ -17308,7 +17255,7 @@ - + @@ -17324,7 +17271,7 @@ - + @@ -17338,20 +17285,19 @@ - explain ownership, and that node does not need to own itself + TODO: explain ownership, and that node does not need to own itself - + - Pack will ignore any sub-nodes not owned by given - node. See [Node.set_owner]. + Pack will ignore any sub-nodes not owned by given node. See [Node.set_owner]. - + @@ -17359,7 +17305,7 @@ - + @@ -17377,11 +17323,11 @@ PacketPeer is an abstration and base class for packet-based protocols (such as UDP). It provides an API for sending and receiving packets both as raw data or variables. This makes it easy to transfer data over a protocol, without having to encode data as low level bytes or having to worry about network ordering. - + - + @@ -17389,7 +17335,7 @@ - + @@ -17407,7 +17353,7 @@ PacketStreamPeer provides a wrapper for working using packets over a stream. This allows for using packet based code with StreamPeers. PacketPeerStream implements a custom protocol over the StreamPeer, so the user should not read or write to the wrapped StreamPeer directly. - + @@ -17424,7 +17370,7 @@ - + @@ -17434,41 +17380,41 @@ - + - + - + - + - + - + - + @@ -17487,8 +17433,7 @@ Provides an opaque background for [Control] children. - Panel is a [Control] that displays an opaque background. It's commoly used as a parent and container for other types of [Control] - nodes."#10;"#9;[center][img]images/panel_example.png[/img][/center] + Panel is a [Control] that displays an opaque background. It's commoly used as a parent and container for other types of [Control] nodes. [center][img]images/panel_example.png[/img][/center] @@ -17525,61 +17470,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -17595,25 +17540,25 @@ - + - + - + - + @@ -17629,73 +17574,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -17711,13 +17656,13 @@ - + - + @@ -17735,101 +17680,101 @@ Particles is a particle system 3D [Node] that is used to simulate several types of particle effects, such as explosions, rain, snow, fireflies, or other magical-like shinny sparkles. Particles are drawn using impostors, and given their dynamic behavior, the user must provide a visibility AABB (although helpers to create one automatically exist). - + Set total amount of particles in the system. - + Return the total amount of particles in the system. - + Set the "emitting" property state. When emitting, the particle system generates new particles at constant rate. - + Return the "emitting" property state (see [method set_emitting]). - + Set the visibility AABB for the particle system, since the default one will not work properly most of the time. - + Return the current visibility AABB. - + Set the half extents for the emission box. - + Return the half extents for the emission box. - + - + - + - + - + Set the normal vector towards where gravity is pulling (by default, negative Y). - + Return the normal vector towards where gravity is pulling (by default, negative Y). - + @@ -17838,7 +17783,7 @@ Set a specific variable for the particle system (see VAR_* enum). - + @@ -17847,7 +17792,7 @@ Return a specific variable for the particle system (see VAR_* enum). - + @@ -17856,7 +17801,7 @@ Set the randomness for a specific variable of the particle system. Randomness produces small changes from the default each time a particle is emitted. - + @@ -17865,25 +17810,25 @@ Return the randomness for a specific variable of the particle system. Randomness produces small changes from the default each time a particle is emitted. - + - Set the position of a color phase (0 to 1) + Set the position of a color phase (0 to 1). - + - Return the position of a color phase (0 to 1) + Return the position of a color phase (0 to 1). - + @@ -17892,7 +17837,7 @@ Set the color of a color phase. - + @@ -17901,63 +17846,63 @@ Return the color of a color phase. - + - Set the material used to draw particles + Set the material used to draw particles. - + - Return the material used to draw particles + Return the material used to draw particles. - + - + - + - + - + - + - + - + @@ -18001,79 +17946,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -18081,7 +18026,7 @@ - + @@ -18089,7 +18034,7 @@ - + @@ -18097,7 +18042,7 @@ - + @@ -18105,103 +18050,103 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -18209,7 +18154,7 @@ - + @@ -18217,7 +18162,7 @@ - + @@ -18225,7 +18170,7 @@ - + @@ -18233,55 +18178,55 @@ - + - + - + - + - + - + - + - + - + @@ -18323,13 +18268,13 @@ - + - + @@ -18345,13 +18290,13 @@ - + - + @@ -18367,85 +18312,85 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -18469,85 +18414,85 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -18565,7 +18510,7 @@ When exporting, the types of some resources may change internally so they are converted to more optimized versions. While it's not usually necesary to access to this directly (path remapping happens automatically when opeining a file), it's exported just for information. - + @@ -18576,7 +18521,7 @@ Add a remap from a file to another. - + @@ -18585,7 +18530,7 @@ Return true if a file is being remapped. - + @@ -18594,14 +18539,14 @@ Return the remapped new path of a file. - + Erase a remap. - + Clear all remaps. @@ -18616,7 +18561,7 @@ - + @@ -18692,98 +18637,98 @@ Direct access object to a physics body in the [Physics2DServer]. This object is passed via the direct state callback of rigid/character bodies, and is intended for changing the direct state of that body. - + Return the total gravity vector being currently applied to this body. - + Return the space density currently being applied to this body. - + Return the inverse of the mass of the body. - + Return the inverse of the inertia of the body. - + Change the linear velocity of the body. - + Return the current linear velocity of the body. - + Change the angular velocity of the body. - + Return the angular velocity of the body. - + Change the transform matrix of the body. - + Return the transform matrix of the body. - + Set the sleeping state of the body, only affects character/rigid bodies. - + Return true if this body is currently sleeping (not active). - + Return the amount of contacts this body has with other bodies. Note that by default this returns 0 unless bodies are configured to log contacts. - + @@ -18792,7 +18737,7 @@ Return the local position (of this body) of the contact point. - + @@ -18800,7 +18745,7 @@ - + @@ -18809,7 +18754,7 @@ Return the local shape index of the collision. - + @@ -18818,7 +18763,7 @@ Return the RID of the collider. - + @@ -18827,7 +18772,7 @@ Return the contact position in the collider. - + @@ -18836,7 +18781,7 @@ Return the object id of the collider. - + @@ -18845,7 +18790,7 @@ Return the collider object, this depends on how it was created (will return a scene node if such was used to create it). - + @@ -18854,13 +18799,13 @@ Return the collider shape index. - + - + @@ -18869,19 +18814,19 @@ Return the linear velocity vector at contact point of the collider. - + Return the timestep (delta) used for the simulation. - + Call the built-in force integration code. - + @@ -18910,7 +18855,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. - + @@ -18924,19 +18869,18 @@ - Intersect a ray in a given space, the returned object is a dictionary with the following fields: [br] - position: place where ray is stopped[br] - normal: normal of the object at the point where the ray was stopped [br] - shape: shape index of the object agaisnt which the ray was stopped[br] - collider_: collider agaisnt which the ray was stopped[br] - collider_id: collider id of the object agaisnt which the ray was stopped[br] - collider: collider object agaisnt which the ray was stopped[br] - rid: [RID] of the object agaisnt which the ray was stopped[br] - If the ray did not intersect anything, then an empty - dictionary (dir.empty()==true) is returned instead. + Intersect a ray in a given space, the returned object is a dictionary with the following fields: + position: place where ray is stopped. + normal: normal of the object at the point where the ray was stopped. + shape: shape index of the object agaisnt which the ray was stopped. + collider_: collider agaisnt which the ray was stopped. + collider_id: collider id of the object agaisnt which the ray was stopped. + collider: collider object agaisnt which the ray was stopped. + rid: [RID] of the object agaisnt which the ray was stopped. + If the ray did not intersect anything, then an empty dictionary (dir.empty()==true) is returned instead. - + @@ -18947,7 +18891,7 @@ Intersect a given shape (RID or [Shape2D]) against the space, the intersected shapes are returned in a special result object. - + @@ -18955,7 +18899,7 @@ - + @@ -18965,7 +18909,7 @@ - + @@ -18997,7 +18941,7 @@ Physics 2D Server is the server responsible for all 2D physics. - + @@ -19005,7 +18949,7 @@ - + @@ -19013,7 +18957,7 @@ - + @@ -19021,19 +18965,19 @@ - + - + - + @@ -19041,7 +18985,7 @@ - + @@ -19049,7 +18993,7 @@ - + @@ -19059,7 +19003,7 @@ - + @@ -19069,7 +19013,7 @@ - + @@ -19077,13 +19021,13 @@ - + - + @@ -19091,7 +19035,7 @@ - + @@ -19099,7 +19043,7 @@ - + @@ -19107,7 +19051,7 @@ - + @@ -19115,7 +19059,7 @@ - + @@ -19125,7 +19069,7 @@ - + @@ -19135,7 +19079,7 @@ - + @@ -19145,7 +19089,7 @@ - + @@ -19153,7 +19097,7 @@ - + @@ -19163,7 +19107,7 @@ - + @@ -19173,7 +19117,7 @@ - + @@ -19181,13 +19125,13 @@ - + - + @@ -19197,7 +19141,7 @@ - + @@ -19205,7 +19149,7 @@ - + @@ -19213,7 +19157,7 @@ - + @@ -19221,7 +19165,7 @@ - + @@ -19229,7 +19173,7 @@ - + @@ -19237,7 +19181,7 @@ - + @@ -19247,7 +19191,7 @@ - + @@ -19257,7 +19201,7 @@ - + @@ -19265,7 +19209,7 @@ - + @@ -19273,7 +19217,7 @@ - + @@ -19281,7 +19225,7 @@ - + @@ -19289,7 +19233,7 @@ - + @@ -19299,7 +19243,7 @@ - + @@ -19309,7 +19253,7 @@ - + @@ -19319,7 +19263,7 @@ - + @@ -19329,7 +19273,7 @@ - + @@ -19337,7 +19281,7 @@ - + @@ -19347,7 +19291,7 @@ - + @@ -19357,7 +19301,7 @@ - + @@ -19365,7 +19309,7 @@ - + @@ -19373,13 +19317,13 @@ - + - + @@ -19389,7 +19333,7 @@ - + @@ -19399,7 +19343,7 @@ - + @@ -19407,7 +19351,7 @@ - + @@ -19415,7 +19359,7 @@ - + @@ -19423,7 +19367,7 @@ - + @@ -19431,7 +19375,7 @@ - + @@ -19439,7 +19383,7 @@ - + @@ -19449,7 +19393,7 @@ - + @@ -19457,7 +19401,7 @@ - + @@ -19467,7 +19411,7 @@ - + @@ -19477,7 +19421,7 @@ - + @@ -19487,7 +19431,7 @@ - + @@ -19497,7 +19441,7 @@ - + @@ -19505,7 +19449,7 @@ - + @@ -19515,7 +19459,7 @@ - + @@ -19523,7 +19467,7 @@ - + @@ -19531,7 +19475,7 @@ - + @@ -19539,7 +19483,7 @@ - + @@ -19547,7 +19491,7 @@ - + @@ -19555,7 +19499,7 @@ - + @@ -19563,7 +19507,7 @@ - + @@ -19571,7 +19515,7 @@ - + @@ -19583,7 +19527,7 @@ - + @@ -19593,7 +19537,7 @@ - + @@ -19603,7 +19547,7 @@ - + @@ -19615,7 +19559,7 @@ - + @@ -19631,7 +19575,7 @@ - + @@ -19645,7 +19589,7 @@ - + @@ -19655,7 +19599,7 @@ - + @@ -19665,7 +19609,7 @@ - + @@ -19673,19 +19617,19 @@ - + - + - + @@ -19801,91 +19745,91 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -19901,13 +19845,13 @@ - + - + @@ -19915,7 +19859,7 @@ - + @@ -19923,7 +19867,7 @@ - + @@ -19931,7 +19875,7 @@ - + @@ -19951,25 +19895,25 @@ PhysicsBody is an abstract base class for implementing a physics body. All PhysicsBody types inherit from it. - + - + - + - + @@ -19985,25 +19929,25 @@ - + - + - + - + @@ -20019,67 +19963,67 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -20087,7 +20031,7 @@ - + @@ -20095,25 +20039,25 @@ - + - + - + - + @@ -20121,7 +20065,7 @@ - + @@ -20129,7 +20073,7 @@ - + @@ -20137,7 +20081,7 @@ - + @@ -20145,7 +20089,7 @@ - + @@ -20153,7 +20097,7 @@ - + @@ -20161,7 +20105,7 @@ - + @@ -20169,7 +20113,7 @@ - + @@ -20177,7 +20121,7 @@ - + @@ -20185,17 +20129,17 @@ - + - + - + @@ -20221,7 +20165,7 @@ - + @@ -20237,7 +20181,7 @@ - + @@ -20247,7 +20191,7 @@ - + @@ -20257,7 +20201,7 @@ - + @@ -20267,7 +20211,7 @@ - + @@ -20297,7 +20241,7 @@ - + @@ -20305,7 +20249,7 @@ - + @@ -20313,7 +20257,7 @@ - + @@ -20321,19 +20265,19 @@ - + - + - + @@ -20341,7 +20285,7 @@ - + @@ -20349,7 +20293,7 @@ - + @@ -20359,7 +20303,7 @@ - + @@ -20369,7 +20313,7 @@ - + @@ -20377,13 +20321,13 @@ - + - + @@ -20391,7 +20335,7 @@ - + @@ -20399,7 +20343,7 @@ - + @@ -20407,7 +20351,7 @@ - + @@ -20415,7 +20359,7 @@ - + @@ -20425,7 +20369,7 @@ - + @@ -20435,7 +20379,7 @@ - + @@ -20445,7 +20389,7 @@ - + @@ -20453,7 +20397,7 @@ - + @@ -20463,7 +20407,7 @@ - + @@ -20473,7 +20417,7 @@ - + @@ -20481,13 +20425,13 @@ - + - + @@ -20497,7 +20441,7 @@ - + @@ -20505,7 +20449,7 @@ - + @@ -20513,7 +20457,7 @@ - + @@ -20521,7 +20465,7 @@ - + @@ -20529,7 +20473,7 @@ - + @@ -20537,7 +20481,7 @@ - + @@ -20547,7 +20491,7 @@ - + @@ -20555,7 +20499,7 @@ - + @@ -20563,7 +20507,7 @@ - + @@ -20573,7 +20517,7 @@ - + @@ -20581,7 +20525,7 @@ - + @@ -20589,7 +20533,7 @@ - + @@ -20597,7 +20541,7 @@ - + @@ -20607,7 +20551,7 @@ - + @@ -20617,7 +20561,7 @@ - + @@ -20627,7 +20571,7 @@ - + @@ -20637,7 +20581,7 @@ - + @@ -20645,7 +20589,7 @@ - + @@ -20655,7 +20599,7 @@ - + @@ -20665,7 +20609,7 @@ - + @@ -20673,13 +20617,13 @@ - + - + @@ -20687,7 +20631,7 @@ - + @@ -20695,7 +20639,7 @@ - + @@ -20703,7 +20647,7 @@ - + @@ -20711,7 +20655,7 @@ - + @@ -20721,7 +20665,7 @@ - + @@ -20731,7 +20675,7 @@ - + @@ -20741,7 +20685,7 @@ - + @@ -20749,7 +20693,7 @@ - + @@ -20759,7 +20703,7 @@ - + @@ -20767,7 +20711,7 @@ - + @@ -20775,7 +20719,7 @@ - + @@ -20783,7 +20727,7 @@ - + @@ -20791,7 +20735,7 @@ - + @@ -20799,7 +20743,7 @@ - + @@ -20807,7 +20751,7 @@ - + @@ -20815,7 +20759,7 @@ - + @@ -20823,7 +20767,7 @@ - + @@ -20831,7 +20775,7 @@ - + @@ -20843,7 +20787,7 @@ - + @@ -20851,7 +20795,7 @@ - + @@ -20859,7 +20803,7 @@ - + @@ -20873,7 +20817,7 @@ - + @@ -20883,7 +20827,7 @@ - + @@ -20893,7 +20837,7 @@ - + @@ -20901,7 +20845,7 @@ - + @@ -20909,7 +20853,7 @@ - + @@ -20917,7 +20861,7 @@ - + @@ -20925,7 +20869,7 @@ - + @@ -20939,7 +20883,7 @@ - + @@ -20949,7 +20893,7 @@ - + @@ -20959,7 +20903,7 @@ - + @@ -20969,7 +20913,7 @@ - + @@ -20979,7 +20923,7 @@ - + @@ -20993,7 +20937,7 @@ - + @@ -21003,7 +20947,7 @@ - + @@ -21013,7 +20957,7 @@ - + @@ -21027,7 +20971,7 @@ - + @@ -21037,7 +20981,7 @@ - + @@ -21047,7 +20991,7 @@ - + @@ -21055,7 +20999,7 @@ - + @@ -21063,7 +21007,7 @@ - + @@ -21071,7 +21015,7 @@ - + @@ -21085,7 +21029,7 @@ - + @@ -21097,7 +21041,7 @@ - + @@ -21109,7 +21053,7 @@ - + @@ -21121,7 +21065,7 @@ - + @@ -21133,19 +21077,19 @@ - + - + - + @@ -21371,79 +21315,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -21460,13 +21404,13 @@ - + - + @@ -21474,7 +21418,7 @@ - + @@ -21482,7 +21426,7 @@ - + @@ -21490,7 +21434,7 @@ - + @@ -21508,7 +21452,7 @@ - + @@ -21516,7 +21460,7 @@ - + @@ -21554,14 +21498,14 @@ 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. - + Returns the center of the plane. - + @@ -21570,14 +21514,14 @@ Returns the shortest distance from the plane to the position "point". - + Returns a point on the plane. - + @@ -21588,7 +21532,7 @@ Returns true if "point" is inside the plane (by a very minimum treshold). - + @@ -21599,7 +21543,7 @@ Returns the intersection point of the three planes "b", "c" and this plane. If no intersection is found null is returned. - + @@ -21610,7 +21554,7 @@ Returns the intersection point of a ray consisting of the position "from" and the direction normal "dir" with this plane. If no intersection is found null is returned. - + @@ -21621,7 +21565,7 @@ Returns the intersection point of a segment from position "begin" to position "end" with this plane. If no intersection is found null is returned. - + @@ -21630,14 +21574,14 @@ Returns true if "point" is located above the plane. - + Returns a copy of the plane, normalized. - + @@ -21646,7 +21590,7 @@ Returns the orthogonal projection of point "p" into a point in the plane. - + @@ -21659,7 +21603,7 @@ Creates a plane from the three parameters "a", "b", "c" and "d". - + @@ -21670,7 +21614,7 @@ Creates a plane from three points. - + @@ -21701,13 +21645,13 @@ - + - + @@ -21723,133 +21667,133 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -21865,7 +21809,7 @@ - + @@ -21873,7 +21817,7 @@ - + @@ -21883,7 +21827,7 @@ - + @@ -21893,7 +21837,7 @@ - + @@ -21901,7 +21845,7 @@ - + @@ -21909,7 +21853,7 @@ - + @@ -21917,7 +21861,7 @@ - + @@ -21925,7 +21869,7 @@ - + @@ -21943,38 +21887,38 @@ PopUp is a base [Control] used to show dialogs and popups. It's a subwindow and modal by default (see [Control]) and has helpers for custom popup behavior. - + Popup (show the control in modal form) in the center of the screen, at the curent size, or at a size determined by "size". - + Popup (show the control in modal form) in the center of the screen, scalled at a ratio of size of the screen. - + - + Popup (show the control in modal form). - + - + @@ -22001,7 +21945,7 @@ - Base class for Popup Dialogs + Base class for Popup Dialogs. @@ -22018,7 +21962,7 @@ PopupMenu is the typical Control that displays a list of options. They are popular in toolbars or context menus. - + @@ -22028,10 +21972,10 @@ - Add a new item with text "label" and icon "texture. An id can optonally be provided, as well as an accelerator. If no id is provided, one will be created from the index. + Add a new item with text "label" and icon "texture". An id can optonally be provided, as well as an accelerator. If no id is provided, one will be created from the index. - + @@ -22042,7 +21986,7 @@ Add a new item with text "label". An id can optonally be provided, as well as an accelerator. If no id is provided, one will be created from the index. - + @@ -22052,10 +21996,10 @@ - Add a new checkable item with text "label" and icon "texture. An id can optonally be provided, as well as an accelerator. If no id is provided, one will be created from the index. Note that checkable items just display a checkmark, but don"apos;t have any built-in checking behavior and must be checked/unchecked manually. + Add a new checkable item with text "label" and icon "texture". An id can optonally be provided, as well as an accelerator. If no id is provided, one will be created from the index. Note that checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. - + @@ -22063,10 +22007,10 @@ - Add a new checkable item with text "label". An id can optonally be provided, as well as an accelerator. If no id is provided, one will be created from the index. Note that checkable items just display a checkmark, but don"apos;t have any built-in checking behavior and must be checked/unchecked manually. + Add a new checkable item with text "label". An id can optonally be provided, as well as an accelerator. If no id is provided, one will be created from the index. Note that checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. - + @@ -22076,7 +22020,7 @@ - + @@ -22085,7 +22029,7 @@ Set the text of the item at index "idx". - + @@ -22094,16 +22038,16 @@ Set the icon of the item at index "idx". - + - Set the accelerator of the item at index "idx". Accelerators are special combinations of keys that activate the item, no matter which control is fucused. + Set the accelerator of the item at index "idx". Accelerators are special combinations of keys that activate the item, no matter which control is focused. - + @@ -22111,7 +22055,7 @@ - + @@ -22120,7 +22064,7 @@ Set the checkstate status of the item at index "idx". - + @@ -22128,7 +22072,7 @@ - + @@ -22136,7 +22080,7 @@ - + @@ -22144,7 +22088,7 @@ - + @@ -22152,7 +22096,7 @@ - + @@ -22161,7 +22105,7 @@ Set the id of the item at index "idx". - + @@ -22170,7 +22114,7 @@ Return the text of the item at index "idx". - + @@ -22179,22 +22123,22 @@ Return the icon of the item at index "idx". - + - + - Return the accelerator of the item at index "idx". Accelerators are special combinations of keys that activate the item, no matter which control is fucused. + Return the accelerator of the item at index "idx". Accelerators are special combinations of keys that activate the item, no matter which control is focused. - + @@ -22202,7 +22146,7 @@ - + @@ -22210,7 +22154,7 @@ - + @@ -22218,7 +22162,7 @@ - + @@ -22227,7 +22171,7 @@ Return the checkstate status of the item at index "idx". - + @@ -22235,7 +22179,7 @@ - + @@ -22244,7 +22188,7 @@ Return the id of the item at index "idx". - + @@ -22253,25 +22197,25 @@ Find and return the index of the item containing a given id. - + Return the amount of items. - + Add a separator between items. Separators also occupy an index. - + - + Clear the popup menu. @@ -22339,74 +22283,73 @@ Portals provide virtual openings to rooms. - Portals provide virtual openings to [RoomInstance] nodes, so cameras can look at them from the outside. Note that portals are a visibility optimization technique, and are in no way related to the game of the same name (as in, they are not used for teleportation). For more information on how rooms and portals work, see [RoomInstance]. Portals are represented as 2D convex polygon shapes (in the X,Y local plane), and are placed on the surface of the areas occupied by a [RoomInstance], to indicate that the room can be accessed or looked-at through them. If two rooms are next to each other, and two similar portals in each of them share the same world position (and are parallel and opposed to each other), they will automatically "connect" and form "doors" (for example, the portals that connect a kitchen to a living room are placed in the door they share). Portals must always have a [RoomInstance] node as a parent, grandparent or far parent, or else they will not be - active. + Portals provide virtual openings to [RoomInstance] nodes, so cameras can look at them from the outside. Note that portals are a visibility optimization technique, and are in no way related to the game of the same name (as in, they are not used for teleportation). For more information on how rooms and portals work, see [RoomInstance]. Portals are represented as 2D convex polygon shapes (in the X,Y local plane), and are placed on the surface of the areas occupied by a [RoomInstance], to indicate that the room can be accessed or looked-at through them. If two rooms are next to each other, and two similar portals in each of them share the same world position (and are parallel and opposed to each other), they will automatically "connect" and form "doors" (for example, the portals that connect a kitchen to a living room are placed in the door they share). Portals must always have a [RoomInstance] node as a parent, grandparent or far parent, or else they will not be active. - + - Set the portal shape. The shape is an array of [Point2] points, representing a convex polygon in the X,Y plane. + Set the portal shape. The shape is an array of [Point2] points, representing a convex polygon in the X,Y plane. - + - Return the portal shape. The shape is an array of [Point2] points, representing a convex polygon in the X,Y plane. + Return the portal shape. The shape is an array of [Point2] points, representing a convex polygon in the X,Y plane. - + Enable the portal (it is enabled by defaul though), disabling it will cause the parent [RoomInstance] to not be visible any longer when looking through the portal. - + Return wether the portal is active. When disabled it causes the parent [RoomInstance] to not be visible any longer when looking through the portal. - + Set the distance threshold for disabling the portal. Every time that the portal goes beyond "distance", it disables itself, becoming the opaque color (see [method set_disabled_color]). - + Return the distance threshold for disabling the portal. Every time that the portal goes beyond "distance", it disables itself, becoming the opaque color (see [method set_disabled_color]). - + When the portal goes beyond the disable distance (see [method set_disable_distance]), it becomes opaque and displayed with color "color". - + Return the color for when the portal goes beyond the disable distance (see [method set_disable_distance]) and becomes disabled. - + Set the range for auto-connecting two portals from different rooms sharing the same space. - + @@ -22443,19 +22386,19 @@ - General purpose progres bar. + General purpose progress bar. - General purpose progres bar. Shows fill percentage from right to left. + General purpose progress bar. Shows fill percentage from right to left. - + - + @@ -22485,13 +22428,13 @@ General purpose proximity-detection node. - + - + @@ -22499,19 +22442,19 @@ - + - + - + @@ -22537,49 +22480,49 @@ - + - + - + - + - + - + - + - + @@ -22594,10 +22537,10 @@ Quaternion. - Quaternion is a 4 dimensional vector that is used to represet a rotation. It mainly exists to perform SLERP (spherical-linear interpolation) between to rotations obtained by a Matrix3 cheaply. Adding quaternions also cheaply adds the rotations, however quaternions need to be often normalized, or else they suffer from precision issues. + Quaternion is a 4 dimensional vector that is used to represent a rotation. It mainly exists to perform SLERP (spherical-linear interpolation) between to rotations obtained by a Matrix3 cheaply. Adding quaternions also cheaply adds the rotations, however quaternions need to be often normalized, or else they suffer from precision issues. - + @@ -22611,7 +22554,7 @@ - + @@ -22620,35 +22563,35 @@ Returns the dot product between two quaternions. - + Returns the inverse of the quaternion (applies to the inverse rotatio too). - + Returns the length of the quaternion. - + - Returns the length of the quaternion, minus the square root. + Returns the length of the quaternion, squared. - + Returns a copy of the quaternion, normalized to unit length. - + @@ -22659,7 +22602,7 @@ Perform a spherical-linear interpolation with another quaternion. - + @@ -22669,7 +22612,7 @@ - + @@ -22681,7 +22624,7 @@ - + @@ -22707,13 +22650,13 @@ - + - + @@ -22728,134 +22671,134 @@ Abstract base class for range-based controls. - Range is a base class for [Control] nodes that change a floating point [i]value[/i] between a need a [i]minimum[/i], [i]maximum[/i], using [i]step[/i] and [i]page[/i], for example a [ScrollBar]. + Range is a base class for [Control] nodes that change a floating point [i]value[/i] between a [i]minimum[/i] and a [i]maximum[/i], using [i]step[/i] and [i]page[/i], for example a [ScrollBar]. - + Return the current value. - + - + Return the minimum value. - + Return the maximum value. - + Return the stepping, if step is 0, stepping is disabled. - + Return the page size, if page is 0, paging is disabled. - + Return value mapped to 0 to 1 (unit) range. - + - + - + - + - Set minimum value, clamped range value to it if it"apos;s less. + Set minimum value, clamped range value to it if it's less. - + - + Set step value. If step is 0, stepping will be disabled. - + Set page size. Page is mainly used for scrollbars or anything that controls text scrolling. - + Set value mapped to 0 to 1 (unit) range, it will then be converted to the actual value within min and max. - + - + - + - + - + @@ -22882,10 +22825,10 @@ Raw byte array. - Raw byte array. Contains bytes. Optimized for memory usage, cant fragment the memory. + Raw byte array. Contains bytes. Optimized for memory usage, can't fragment the memory. - + @@ -22893,31 +22836,31 @@ - + - + - + - + - + @@ -22925,13 +22868,13 @@ - + - + @@ -22947,55 +22890,55 @@ - + - + - + - + - + - + - + - + - + @@ -23011,97 +22954,97 @@ - + - + - + - + - + Return whether the closest object the ray is pointing to is colliding with the vector, with the vector length considered. - + Return the closest object the ray is pointing to. Note that this does not consider the length of the vector, so you must also use [is_colliding] to check if the object returned is actually colliding with the ray. - + - + - + - + - + - + - + - + - + - + @@ -23117,13 +23060,13 @@ - + - + @@ -23138,16 +23081,16 @@ Ray 2D shape resource for physics. - Ray 2D shape resource for physics. A ray is not really a collision body, isntead it tries to separate itself from wathever is touching it's far endpoint. It's often useful for ccharacters. + Ray 2D shape resource for physics. A ray is not really a collision body, isntead it tries to separate itself from whatever is touching its far endpoint. It's often useful for ccharacters. - + - + @@ -23162,10 +23105,10 @@ Real Array . - Real Array. Array of floating point values. Can only contain floats. Optimized for memory usage, cant fragment the memory. + Real Array. Array of floating point values. Can only contain floats. Optimized for memory usage, can't fragment the memory. - + @@ -23173,19 +23116,19 @@ - + - + - + @@ -23193,13 +23136,13 @@ - + - + @@ -23215,7 +23158,7 @@ - + @@ -23223,7 +23166,7 @@ - + @@ -23231,7 +23174,7 @@ - + @@ -23239,13 +23182,13 @@ - + - + @@ -23253,13 +23196,13 @@ - + - + @@ -23267,7 +23210,7 @@ - + @@ -23275,7 +23218,7 @@ - + @@ -23283,7 +23226,7 @@ - + @@ -23291,7 +23234,7 @@ - + @@ -23323,14 +23266,14 @@ Rectangle Shape for 2D Physics. This shape is useful for modelling box-like 2D objects. - + Set the half extents, the actual width and height of this shape is twice the half extents. - + @@ -23343,24 +23286,24 @@ - Base class for anything refcounted. + Base class for anything that keeps a reference count. - Base class for anything refcounted. Resource and many other helper objects inherit this. References keep an internal reference counter so they are only released when no longer in use. + Base class for anything that keeps a reference count. Resource and many other helper objects inherit this. References keep an internal reference counter so they are only released when no longer in use. - + - + Increase the internal reference counter. Use this only if you really know what you are doing. - + @@ -23393,7 +23336,7 @@ - + @@ -23401,7 +23344,7 @@ - + @@ -23413,7 +23356,7 @@ - + @@ -23429,13 +23372,13 @@ - + - + @@ -23463,60 +23406,60 @@ Resource is the base class for all resource types. Resources are primarily data containers. They are reference counted and freed when no longer in use. They are also loaded only once from disk, and further attempts to load the resource will return the same reference (all this in contrast to a [Node], which is not reference counted and can be instanced from disk as many times as desred). Resources can be saved externally on disk or bundled into another object, such as a [Node] or another resource. - + - Set the path of the resource. This is useful mainly for editors when saving/loading, and shouldn"apos;t be changed by anything else. + Set the path of the resource. This is useful mainly for editors when saving/loading, and shouldn't be changed by anything else. - + - + - Return the path of the resource. This is useful mainly for editors when saving/loading, and shouldn"apos;t be changed by anything else. + Return the path of the resource. This is useful mainly for editors when saving/loading, and shouldn't be changed by anything else. - + - Set the name of the resources, any name is ok (it doesn"apos;t have to be unique). Name is for descriptive purposes only. + Set the name of the resources, any name is valid (it doesn't have to be unique). Name is for descriptive purposes only. - + - Return the name of the resources, any name is ok (it doesn"apos;t have to be unique). Name is for descriptive purposes only. + Return the name of the resources, any name is valid (it doesn't have to be unique). Name is for descriptive purposes only. - + Return the RID of the resource (or an empty RID). Many resources (such as [Texture], [Mesh], etc) are high level abstractions of resources stored in a server, so this function will return the original RID. - + - + - + @@ -23540,19 +23483,19 @@ - + - + - + @@ -23560,7 +23503,7 @@ - + @@ -23568,7 +23511,7 @@ - + @@ -23576,19 +23519,19 @@ - + - + - + @@ -23596,13 +23539,13 @@ - + - + @@ -23620,34 +23563,34 @@ Interactive Resource Loader. This object is returned by ResourceLoader when performing an interactive load. It allows to load with high granularity, so this is mainly useful for displaying load bars/percentages. - + Return the loaded resource (only if loaded). Otherwise, returns null. - + Poll the load. If OK is returned, this means poll will have to be called again. If ERR_EOF is returned, them the load has finished and the resource can be obtained by calling [get_resource]. - + - + Return the load stage. The total amount of stages can be queried with [get_stage_count] - + @@ -23666,7 +23609,7 @@ Resource Loader. This is a static object accessible as [ResourceLoader]. GDScript has a simplified load() function, though. - + @@ -23677,7 +23620,7 @@ Load a resource interactively, the returned object allows to load with high granularity. - + @@ -23688,7 +23631,7 @@ Load a resource. Optionally a hint can be given for the resource type to load. - + @@ -23697,14 +23640,14 @@ Return the list of recognized extensions for a resource type. - + Change the behavior on missing sub-resources. Default is to abort load. - + @@ -23712,7 +23655,7 @@ - + @@ -23732,7 +23675,7 @@ Resource Preloader Node. This node is used to preload sub-resources inside a scene, so when the scene is loaded all the resourcs are ready to use and be retrieved from here. - + @@ -23741,14 +23684,14 @@ Add a resource to the preloader. Set the text-id that will be used to identify it (retrieve it/erase it/etc). - + Remove a resource from the preloader by text id. - + @@ -23757,7 +23700,7 @@ Rename a resource inside the preloader, from a text-id to a new text-id. - + @@ -23766,7 +23709,7 @@ Return true if the preloader has a given resource. - + @@ -23775,7 +23718,7 @@ Return the resource given a text-id. - + @@ -23794,7 +23737,7 @@ Resource Saving Interface. This interface is used for saving resources to disk. - + @@ -23807,7 +23750,7 @@ Save a resource to disk, to a given path. - + @@ -23840,133 +23783,133 @@ Label that displays rich text. Rich text can contain custom text, fonts, images and some basic formatting. It also adapts itself to given width/heights. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + Set to true if selecting the text inside this richtext is allowed. - + Return true if selecting the text inside this richtext is allowed. - + @@ -23974,7 +23917,7 @@ - + @@ -24050,151 +23993,151 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -24202,43 +24145,43 @@ - + - + - + - + - + - + - + @@ -24300,177 +24243,177 @@ Rigid body 2D node. This node is used for placing rigid bodies in the scene. It can contain a number of shapes, and also shift state between regular Rigid Body to Character or even Static. - Character mode forbids the node from being rotated. This node can have a custom force integrator function, for writing complex physics motion behavior per node.[br] + Character mode forbids the node from being rotated. This node can have a custom force integrator function, for writing complex physics motion behavior per node. As a warning, don't change this node 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. - + Override this function to use a custom force integrator. This allows to hook up to the physics processing and alter the simulation state for the object on every frame. - + - Set the body mode, fromt he MODE_* enum. This allows to change to a static body or a character body. + Set the body mode, from the MODE_* enum. This allows to change to a static body or a character body. - + Return the current body mode, see [set_mode]. - + Set the body mass. - + Return the body mass. - + - Set the body mass given standard earth-weight (gravity 9.8). Not really useful for 2D since most measuers for this node are in pixels. + Set the body mass given standard earth-weight (gravity 9.8). Not really useful for 2D since most measures for this node are in pixels. - + Return the body mass given standard earth-weight (gravity 9.8). - + - Set the body friction, from 0 (friction less) to 1 (full friction). + Set the body friction, from 0 (frictionless) to 1 (full friction). - + Return the body friction. - + Set the body bounciness, from 0 (no bounce) to 1 (bounce). - + - Return the body bouncyness. + Return the body bounciness. - + Set the body linear velocity. Can be used sporadically, but[b] DONT SET THIS IN EVERY FRAME [/b], because physics may be running in another thread and definitely runs at a different granularity. Use [_integrate_forces] as your process loop if you want to have precise control of the body state. - + Return the body linear velocity. This changes by physics granularity. See [set_linear_velocity]. - + Set the body angular velocity. Can be used sporadically, but[b] DONT SET THIS IN EVERY FRAME [/b], because physics may be running in another thread and definitely runs at a different granularity. Use [_integrate_forces] as your process loop if you want to have precise control of the body state. - + Return the body angular velocity. This changes by physics granularity. See [set_angular_velocity]. - + Set the maximum contacts to report. Bodies can keep a log of the contacts with other bodies, this is enabled by setting the maximum amount of contacts reported to a number greater than 0. - + Return the maximum contacts that can be reported. See [set_max_contacts_reported]. - + Set to true if the body shall not do any internal force integration at all (like gravity or air friction). Only the [_integrate_forces] will be able to integrate them if overrided. - + Return true if the body is not doing any built-in force integration. - + Enable contact monitoring. (the signals to notify when a body entered/exited collision). - + - Return wether contact monitoring is enabled. + Return whether contact monitoring is enabled. - + - + - + Set an axis velocity. The velocity in the given vector axis will be set as the given vector length. (This is useful for jumping behavior). - + @@ -24479,45 +24422,45 @@ Apply a positioned impulse (which will be affected by the body mass and shape). - + - + - + - + - + Set the body ability to fall asleep when not moving. This saves an enormous amount of processor time when there are plenty of rigid bodies (non static) in a scene. - + Return true if the body has the ability to fall asleep when not moving. See [set_can_sleep]. - + @@ -24594,29 +24537,29 @@ Room contains the data to define the bounds of a scene (using a BSP Tree). It is instanced by a [RoomInstance] node to create rooms. See that class documentation for more information about rooms. - + - + - + - + - + @@ -24632,35 +24575,35 @@ - + - + - + - + - + - + @@ -24676,7 +24619,7 @@ Sample provides an audio sample class, containing audio data, together with some information for playback, such as format, mix rate and loop. It is used by sound playback routines. - + @@ -24687,91 +24630,91 @@ Create new data for the sample, with format "format" (see FORMAT_* enum), stereo hint, and length in frames (not samples or bytes!) "frame". Calling create overrides previous existing data if it exists. Stereo samples are interleaved pairs of left and right (in that order) points - + Return the sample format (see FORMAT_* enum). - + Return true if the sample was created stereo. - + Return the sample length in frames. - + Set sample data. Data must be little endian, no matter the host platform, and exactly as long to fit all frames. Example, if data is Stereo, 16 bits, 256 frames, it will be 1024 bytes long. - + - Return sample data. Data will be endian, no matter with the host platform, and exactly as long to fit all frames. Example, if data is Stereo, 16 bits, 256 frames, it will be 1024 bytes long. + Return sample data. Data will be little endian, no matter the host platform, and exactly as long to fit all frames. Example, if data is Stereo, 16 bits, 256 frames, it will be 1024 bytes long. - + Set the mix rate for the sample (expected playback frequency). - + Return the mix rate for the sample (expected playback frequency). - + Set the loop format, see LOOP_* enum - + Return the loop format, see LOOP_* enum. - + Set the loop begin position, it must be a valid frame and less than the loop end position. - + Return the loop begin position. - + Set the loop end position, it must be a valid frame and greater than the loop begin position. - + @@ -24787,7 +24730,7 @@ 16-Bits signed little endian PCM audio. - Ima-ADPCM Audio. + IMA-ADPCM Audio. No loop enabled. @@ -24808,16 +24751,16 @@ Library that contains a collection of Samples, each identified by an text id. This is used as a data containeer for the majority of the SamplePlayer classes and derivatives. - + - Add a sample to the library, with a given text id; + Add a sample to the library, with a given text id. - + @@ -24826,7 +24769,7 @@ Return a sample from the library, from a given text-id. Return null if the sample is not found. - + @@ -24835,14 +24778,14 @@ Return true if the sample text id exists in the library. - + Remove a sample given a specific text id. - + @@ -24850,7 +24793,7 @@ - + @@ -24858,7 +24801,7 @@ - + @@ -24866,7 +24809,7 @@ - + @@ -24886,33 +24829,33 @@ SamplePlayer is a [Node] meant for simple sample playback. A library of samples is loaded and played back "as is", without positioning or anything. - + - + - + Set the amount of simultaneous voices that will be used for playback. - + Return the amount of simultaneous voices that will be used for playback. - + @@ -24920,21 +24863,21 @@ - Play back sample, given it"apos;s identifier "name". if "unique" is true, all othere previous samples will be stopped. The voice allocated for playback will be returned. + Play back sample, given it's identifier "name". If "unique" is true, all othere previous samples will be stopped. The voice allocated for playback will be returned. - + Stop a voice "voice". (see [method play]). - + - + @@ -24943,7 +24886,7 @@ Change the mix rate of a voice "voice" to given "hz". - + @@ -24952,7 +24895,7 @@ Scale the pitch (mix rate) of a voice by a ratio value "ratio". A ratio of 1.0 means the voice is unscaled. - + @@ -24961,7 +24904,7 @@ Set the volume of a voice, 0db is maximum volume (every about -6db, volume is reduced in half). "db" does in fact go from zero to negative. - + @@ -24969,7 +24912,7 @@ - + @@ -24982,7 +24925,7 @@ Set the panning of a voice. Panning goes from -1 (left) to +1 (right). Optionally, if the hardware supports 3D sound, also set depth and height (also in range -1 to +1). - + @@ -24997,7 +24940,7 @@ Set and enable a filter of a voice, with type "type" (see FILTER_* enum), cutoff (0 to 22khz) frequency and resonance (0+). - + @@ -25006,7 +24949,7 @@ Set the chorus send level of a voice (0 to 1). For setting chorus parameters, see [AudioServer]. - + @@ -25014,10 +24957,10 @@ - Set the reverb send level and type of a voice (0 to 1). (see REVERB_* enum for type). + Set the reverb send level and type of a voice (0 to 1). (see REVERB_* enum for type). - + @@ -25026,7 +24969,7 @@ Return the current mix rate for a given voice. - + @@ -25035,7 +24978,7 @@ Return the current pitch scale for a given voice. - + @@ -25044,7 +24987,7 @@ Return the current volume (in db) for a given voice. 0db is maximum volume (every about -6db, volume is reduced in half). "db" does in fact go from zero to negative. - + @@ -25052,7 +24995,7 @@ - + @@ -25061,7 +25004,7 @@ Return the current panning for a given voice. Panning goes from -1 (left) to +1 (right). - + @@ -25070,7 +25013,7 @@ Return the current pan depth for a given voice (not used unless the hardware supports 3D sound) - + @@ -25079,7 +25022,7 @@ Return the current pan height for a given voice (not used unless the hardware supports 3D sound) - + @@ -25088,7 +25031,7 @@ Return the current filter type in use (see FILTER_* enum) for a given voice. - + @@ -25097,7 +25040,7 @@ Return the current filter cutoff for a given voice. Cutoff goes from 0 to 22khz. - + @@ -25106,7 +25049,7 @@ Return the current filter resonance for a given voice. Resonance goes from 0 up. - + @@ -25114,7 +25057,7 @@ - + @@ -25123,7 +25066,7 @@ Return the current chorus send level for a given voice. (0 to 1). - + @@ -25132,7 +25075,7 @@ Return the current reverb room type for a given voice (see REVERB_* enum). - + @@ -25141,25 +25084,25 @@ Return the current reverb send level for a given voice. (0 to 1). - + - + - + - + @@ -25169,7 +25112,7 @@ - + @@ -25181,13 +25124,13 @@ - + - + @@ -25195,91 +25138,91 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -25299,15 +25242,15 @@ Bandpass filter is used for voice. - HighPass filter is used for voice. + Highpass filter is used for voice. - Notch filter is used for voice. + Notch (band reject) filter is used for voice. - Band-Limit filter is used for voice, in this case resonance is the highpass cutoff. + Band-limit filter is used for voice, in this case resonance is the highpass cutoff. A band-limit filter has a different frequency response than a notch filter, but otherwise both are band-rejecting filters. @@ -25335,35 +25278,35 @@ Sample player for Positional 2D Sound. Plays sound samples positionally, left and right depending on the distance/place on the screen. - + Set the sample library for the player. - + Return the sample library used for the player. - + Set the polyphony of the player (maximum amount of simultaneous voices). - + Return the polyphony of the player (maximum amount of simultaneous voices). - + @@ -25374,7 +25317,7 @@ Play a sample, an internal polyphony id can be passed, or else it's assigned automatically. Returns a voice id which can be used to modify the voice parameters. - + @@ -25383,7 +25326,7 @@ Change the pitch scale of a currently playing voice. - + @@ -25392,7 +25335,7 @@ Change the volume scale of a currently playing voice (using dB). - + @@ -25401,25 +25344,25 @@ Return true if a voice is still active (false if it stopped playing). - + Stop a given voice. - + Stop all playing voices. - + - + @@ -25440,7 +25383,7 @@ - + @@ -25450,7 +25393,7 @@ - + @@ -25462,7 +25405,7 @@ - + @@ -25470,75 +25413,75 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -25548,13 +25491,13 @@ - + - + @@ -25624,14 +25567,14 @@ Base class for scripts. Any script that is loaded becomes one of these resources, which can then create instances. - + Return true if this script can be instance (ie not a library). - + @@ -25640,28 +25583,28 @@ Return true if a given object uses an instance of this script. - + Return true if the script contains source code. - + Return the script source code (if available). - + Set the script source code. - + @@ -25680,13 +25623,13 @@ Scrollbars are a [Range] based [Control], that display a draggable area (the size of the page). Horizontal ([HScrollBar]) and Vertical ([VScrollBar]) versions are available. - + - + @@ -25702,49 +25645,49 @@ - + - + - + - + - + - + - + - + @@ -25762,25 +25705,25 @@ Segment Shape for 2D Collision Detection, consists of two points, 'a' and 'b'. - + - + - + - + @@ -25796,13 +25739,13 @@ - + - + @@ -25832,19 +25775,19 @@ To be changed, ignore. - + - + - + @@ -25858,25 +25801,25 @@ - + - + - + - + @@ -25900,19 +25843,19 @@ - + - + - + @@ -25920,7 +25863,7 @@ - + @@ -25948,21 +25891,21 @@ Base class for all 2D Shapes. All 2D shape types inherit from this. - + Use a custom solver bias. No need to change this unless you really know what you are doing. - + Return the custom solver bias. No need to change this unless you really know what you are doing. - + @@ -25974,7 +25917,7 @@ - + @@ -25990,7 +25933,7 @@ - + @@ -26000,7 +25943,7 @@ - + @@ -26026,14 +25969,14 @@ Skeleton provides a hierachial interface for managing bones, including pose, rest and animation (see [Animation]). Skeleton will support rag doll dynamics in the future. - + Add a bone, with name "name". [method get_bone_count] will become the bone index. - + @@ -26042,7 +25985,7 @@ Return the bone index that matches "name" as its name. - + @@ -26051,7 +25994,7 @@ Return the name of the bone at index "index" - + @@ -26060,7 +26003,7 @@ Return the bone index which is the parent of the bone at "bone_idx". If -1, then bone has no parent. Note that the parent bone returned will always be less than "bone_idx". - + @@ -26069,14 +26012,14 @@ Set the bone index "parent_idx" as the parent of the bone at "bone_idx". If -1, then bone has no parent. Note: "parent_idx" must be less than "bone_idx". - + Return the amount of bones in the skeleton. - + @@ -26085,7 +26028,7 @@ Return the rest transform for a bone "bone_idx". - + @@ -26094,39 +26037,39 @@ Set the rest transform for bone "bone_idx" - + - Deprecated soon + Deprecated soon. - + - Deprecated soon + Deprecated soon. - + - Deprecated Soon + Deprecated soon. - + Clear all the bones in this skeleton. - + @@ -26135,7 +26078,7 @@ Return the pose transform for bone "bone_idx". - + @@ -26144,7 +26087,7 @@ Return the pose transform for bone "bone_idx". - + @@ -26152,7 +26095,7 @@ - + @@ -26160,7 +26103,7 @@ - + @@ -26168,7 +26111,7 @@ - + @@ -26176,7 +26119,7 @@ - + @@ -26198,28 +26141,28 @@ Base class for GUI Sliders. - + Set amount of ticks to display in slider. - + Return amounts of ticks to display on slider. - + Return true if ticks are visible on borders. - + @@ -26236,7 +26179,7 @@ - + @@ -26244,7 +26187,7 @@ - + @@ -26310,7 +26253,7 @@ Base class for playing spatial 2D sound. - + @@ -26318,7 +26261,7 @@ - + @@ -26348,7 +26291,7 @@ - + @@ -26356,7 +26299,7 @@ - + @@ -26364,25 +26307,25 @@ - + - + - + - + @@ -26400,132 +26343,132 @@ Spatial is the base for every type of 3D [Node]. It contains a 3D [Transform] which can be set or get as local or global. If a Spatial [Node] has Spatial children, their transforms will be relative to the parent. - + Set the transform locally, relative to the parent spatial node. - + Return the local transform, relative to the bone parent. - + - + - + - + - + - + - + Set the transform globally, relative to worldspace. - + Return the gloal transform, relative to worldspace. - + - Return the parent [Spatial], or an empty [Object] if no parent exists or parent is not of type [Spatial. + Return the parent [Spatial], or an empty [Object] if no parent exists or parent is not of type [Spatial]. - + - + - + - + - + - + - + - + - + - + - + @@ -26540,7 +26483,7 @@ - Spatial nodes receive this notifacation with their global transform changes. This means that either the current or a parent node changed it's transform. + Spatial nodes receive this notifacation with their global transform changes. This means that either the current or a parent node changed its transform. @@ -26556,7 +26499,7 @@ - + @@ -26564,7 +26507,7 @@ - + @@ -26598,31 +26541,31 @@ - + - + - + - + - + @@ -26632,7 +26575,7 @@ - + @@ -26640,7 +26583,7 @@ - + @@ -26648,7 +26591,7 @@ - + @@ -26656,13 +26599,13 @@ - + - + @@ -26722,63 +26665,63 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -26794,13 +26737,13 @@ - + - + @@ -26818,48 +26761,48 @@ SpinBox is a numerical input text field. It allows entering integers and floats. - + Set a specific suffix. - + Return the specific suffix. - + Set a prefix. - + - + Set whether the spinbox is editable. - + Return if the spinbox is editable. - + @@ -26881,41 +26824,41 @@ Container for splitting two controls vertically or horizontally, with a grabber that allows adjusting the split offset or ratio. - + Set the split offset. - + - Return the spluit offset; + Return the split offset. - + Set if the split must be collapsed. - + - Return if the split is collapsed; + Return if the split is collapsed. - + - + @@ -26927,7 +26870,7 @@ - Spotlight Light, such as a reflector spotlight or a latern. + Spotlight [Light], such as a reflector spotlight or a latern. 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. @@ -26945,154 +26888,154 @@ General purpose Sprite node. This Sprite node can show any texture as a sprite. The texture can be used as a spritesheet for animation, or only a region from a bigger texture can referenced, like an atlas. - + Set the base texture for the sprite. - + Return the base texture for the sprite. - + Set whether the sprite should be centered on the origin. - + Return if the sprite is centered at the local origin. - + Set the sprite draw offset, useful for setting rotation pivots. - + Return sprite draw offst. - + Set true to flip the sprite horizontaly. - + Return true if the sprite is flipped horizontally. - + Set true to flip the sprite vertically. - + Return true if the sprite is flipped vertically. - + Set the sprite as a sub-region of a bigger texture. Useful for texture-atlases. - + Return if the sprite reads from a region. - + Set the region rect to read from. - + Return the region rect to read from. - + Set the texture frame for a sprite-sheet, works when vframes or hframes are greater than 1. - + Return the texture frame for a sprite-sheet, works when vframes or hframes are greater than 1. - + Set the amount of vertical frames and converts the sprite into a sprite-sheet. This is useful for animation. - + Return the amount of vertical frames. See [set_vframes]. - + Set the amount of horizontal frames and converts the sprite into a sprite-sheet. This is useful for animation. - + Return the amount of horizontal frames. See [set_hframes]. - + Set color modulation for the sprite. All sprite pixels are multiplied by this color. - + @@ -27109,73 +27052,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -27191,103 +27134,103 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -27295,7 +27238,7 @@ - + @@ -27303,19 +27246,19 @@ - + - + - + @@ -27345,7 +27288,7 @@ Sprite frame library for [AnimatedSprite]. - + @@ -27354,14 +27297,14 @@ Add a frame (texture). - + Return the amount of frames. - + @@ -27370,7 +27313,7 @@ Return a texture (frame). - + @@ -27378,14 +27321,14 @@ - + Remove a frame - + Clear the frames. @@ -27402,49 +27345,49 @@ StaticBody implements a static collision [Node], by utilizing a rigid body in the [PhysicsServer]. Static bodies are used for static collision. For more information on physics body nodes, see [PhysicsBody]. - + - + - + - + - + - + - + - + @@ -27459,58 +27402,58 @@ Static body for 2D Physics. - Static body for 2D Physics. A static body is a simple body that is not intended to move. They don't consume any CPU resources in contrast to a [RigidBody2D] so they are great for scenaro collision.[br] - A static body also can be animated by using simulated motion mode, this is useful for implementing functionalities such as moving platforms, when this mode is active the body can be animated and automatically compute linear and angular velocity to apply in that frame and to influence other bodies. + Static body for 2D Physics. A static body is a simple body that is not intended to move. They don't consume any CPU resources in contrast to a [RigidBody2D] so they are great for scenaro collision. + A static body can also be animated by using simulated motion mode. This is useful for implementing functionalities such as moving platforms. When this mode is active the body can be animated and automatically computes linear and angular velocity to apply in that frame and to influence other bodies. Alternatively, a constant linear or angular velocity can be set for the static body, so even if it doesn't move, it affects other bodies as if it was moving (this is useful for simulating conveyor belts or conveyor wheels). - + Set a constant linear velocity for the body. - + Set a constant angular velocity for the body. - + Return the constant linear velocity for the body. - + Return the constant angular velocity for the body. - + - + - + - + @@ -27528,7 +27471,7 @@ StreamPeer is an abstration and base class for stream-based protocols (such as TCP or Unix Sockets). It provides an API for sending and receiving data through streams as raw data or strings. - + @@ -27537,7 +27480,7 @@ Send a chunk of data through the connection, blocking if necesary until the data is done sending. This function returns an [Error] code. - + @@ -27546,7 +27489,7 @@ Send a chunk of data through the connection, if all the data could not be sent at once, only part of it will. This function returns two values, an [Error] code and an integer, describing how much data was actually sent. - + @@ -27555,7 +27498,7 @@ Return a chunk data with the received bytes. The amount of bytes to be received can be requested in the "bytes" argument. If not enough bytes are available, the function will block until the desired amount is received. This function returns two values, an [Error] code and a data array. - + @@ -27574,7 +27517,7 @@ - + @@ -27582,7 +27525,7 @@ - + @@ -27594,13 +27537,13 @@ - + - + @@ -27624,7 +27567,7 @@ TCP Stream peer. This object can be used to connect to TCP servers, or also is returned by a tcp server. - + @@ -27634,31 +27577,31 @@ - + - + - + - + - + @@ -27682,117 +27625,117 @@ Base class for audio stream playback. Audio stream players inherit from it. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -27804,20 +27747,20 @@ - Built-In string class. + Built-in string class. - This is the built in string class (and the one used by GDScript). It supports Unicode and provides all necesary means for string handling. Strings are reference counted and use a copy-on-write approach, so passing them around is cheap in resources. + This is the built-in string class (and the one used by GDScript). It supports Unicode and provides all necesary means for string handling. Strings are reference counted and use a copy-on-write approach, so passing them around is cheap in resources. - + If the string is a path to a file, return the path to the file without the extension. - + @@ -27826,14 +27769,14 @@ Return true if the strings begins with the given string. - + Return the string in uppercase. - + @@ -27842,21 +27785,21 @@ Perform a case-sensitive comparison to antoher string, return -1 if less, 0 if equal and +1 if greater. - + Return true if the string is empty. - + If the string is a path to a file, return the extension. - + @@ -27867,7 +27810,7 @@ Find the first occurence of a substring, return the starting position of the substring or -1 if not found. Optionally, the initial search index can be passed. - + @@ -27876,7 +27819,7 @@ Find the last occurence of a substring, return the starting position of the substring or -1 if not found. Optionally, the initial search index can be passed. - + @@ -27887,34 +27830,35 @@ Find the first occurence of a substring but search as case-insensitive, return the starting position of the substring or -1 if not found. Optionally, the initial search index can be passed. - + If the string is a path to a file, return the base directory. - + If the string is a path to a file, return the file and ignore the base directory. - + Hash the string and return a 32 bits integer. - + + Convert a string containing an hexadecimal number into an int. - + @@ -27925,51 +27869,55 @@ Insert a substring at a given position. - + If the string is a path to a file or directory, return true if the path is absolute. - + If the string is a path to a file or directory, return true if the path is relative. - + + + + + Check whether the string contains a valid float. + + + + + + + Check whether the string contains a valid color in HTML notation. + + + - + + Check whether the string contains a valid integer. - + + Check whether the string contains a valid IP address. - - - - - - - - - - - - - + @@ -27978,14 +27926,14 @@ Return an amount of characters from the left of the string. - + Return the length of the string in characters. - + @@ -27994,7 +27942,7 @@ Do a simple expression matching, using ? and * wildcards. - + @@ -28003,19 +27951,19 @@ Do a simple, case insensitive, expression matching, using ? and * wildcards. - + - + - + @@ -28024,15 +27972,16 @@ Perform a case-insensitive comparison to antoher string, return -1 if less, 0 if equal and +1 if greater. - + + Return the character code at position "at". - + @@ -28040,7 +27989,7 @@ - + @@ -28048,19 +27997,19 @@ - + - + - + @@ -28068,7 +28017,7 @@ - + @@ -28079,7 +28028,7 @@ Replace occurrences of a substring for different ones inside the string. - + @@ -28090,7 +28039,7 @@ Replace occurrences of a substring for different ones inside the string, but search case-insensitive. - + @@ -28101,7 +28050,7 @@ Perform a search for a substring, but start from the end of the string instead of the begining. - + @@ -28112,7 +28061,7 @@ Perform a search for a substring, but start from the end of the string instead of the begining. Also search case-insensitive. - + @@ -28121,7 +28070,7 @@ Return the right side of the string from a given position. - + @@ -28132,7 +28081,7 @@ Split the string by a divisor string, return an array of the substrings. Example "One,Two,Three" will return ["One","Two","Three"] if split by ",". - + @@ -28143,14 +28092,14 @@ Split the string in floats by using a divisor string, return an array of the substrings. Example "1,2.5,3" will return [1,2.5,3] if split by ",". - + Return a copy of the string stripped of any non-printable character at the begining and the end. - + @@ -28158,42 +28107,45 @@ + Return part of the string from "from", with length "len". - + + Convert a string, containing a decimal number, into a float. - + + Convert a string, containing an integer number, into an int. - + Return the string converted to lowercase. - + Return the string converted to uppercase. - + Perform XML escaping on the string. - + @@ -28206,13 +28158,13 @@ - String Array . + String Array. - String Array. Array of strings. Can only contain strings. Optimized for memory usage, cant fragment the memory. + String Array. Array of strings. Can only contain strings. Optimized for memory usage, can't fragment the memory. - + @@ -28220,19 +28172,19 @@ - + - + - + @@ -28240,13 +28192,13 @@ - + - + @@ -28258,13 +28210,13 @@ - Base class for dawing stylized boxes for the UI. + Base class for drawing stylized boxes for the UI. - StyleBox is [Resource] that provides an abstract base class for dawing stylized boxes for the UI. StyleBoxes are used for dawing the styles of buttons, line edit backgrounds, tree backgrounds, etc. and also for testing a transparency mask for pointer signals. If mask test fails on a StyleBox assigned as mask to a control, clicks and motion signals will go through it to the one below. + StyleBox is [Resource] that provides an abstract base class for drawing stylized boxes for the UI. StyleBoxes are used for drawing the styles of buttons, line edit backgrounds, tree backgrounds, etc. and also for testing a transparency mask for pointer signals. If mask test fails on a StyleBox assigned as mask to a control, clicks and motion signals will go through it to the one below. - + @@ -28275,7 +28227,7 @@ Test a position in a rectangle, return wether it pases the mask test. - + @@ -28284,7 +28236,7 @@ Set the default offset "offset" of the margin "margin" (see MARGIN_* enum) for a StyleBox, Controls that draw styleboxes with context inside need to know the margin, so the border of the stylebox is not occluded. - + @@ -28293,7 +28245,7 @@ Return the default offset of the margin "margin" (see MARGIN_* enum) of a StyleBox, Controls that draw styleboxes with context inside need to know the margin, so the border of the stylebox is not occluded. - + @@ -28302,27 +28254,27 @@ Return the offset of margin "margin" (see MARGIN_* enum). - + Return the minimum size that this stylebox can be shrunk to. - + - + Return the "offset" of a stylebox, this is a helper function, like writing Point2( style.get_margin(MARGIN_LEFT), style.get_margin(MARGIN_TOP) ) - + @@ -28354,73 +28306,73 @@ Stylebox of a single color. Displays the stylebox of a single color, alternatively a border with light/dark colors can be assigned. - + - + - + - + - + - + - + - + - + - + - + - + @@ -28438,35 +28390,35 @@ This StyleBox is similar to [StyleBoxTexture], but only meant to be used for mask testing. It takes an image and applies stretch rules to determine if the poit clicked is masked or not. - + Set the image used for mask testing. Pixels (converted to grey) that have a value, less than 0.5 will fail the test. - + Return the image used for mask testing. (see [method set_imag]). - + Set the expand property (default). When expanding, the image will use the same rules as [StyleBoxTexture] for expand. If not expanding, the image will always be tested at its original size. - + Return wether the expand property is set(default). When expanding, the image will use the same rules as [StyleBoxTexture] for expand. If not expanding, the image will always be tested at its original size. - + @@ -28475,7 +28427,7 @@ Set an expand margin size (from enum MARGIN_*). Parts of the image below the size of the margin (and in the direction of the margin) will not expand. - + @@ -28496,19 +28448,19 @@ Texture Based 3x3 scale style. This stylebox performs a 3x3 scaling of a texture, where only the center cell is fully stretched. This allows for the easy creation of bordered styles. - + - + - + @@ -28516,7 +28468,7 @@ - + @@ -28524,7 +28476,7 @@ - + @@ -28532,7 +28484,7 @@ - + @@ -28540,13 +28492,13 @@ - + - + @@ -28564,85 +28516,85 @@ Helper tool to create geometry. - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -28650,7 +28602,7 @@ - + @@ -28663,10 +28615,10 @@ TCP Server. - TCP Server class. Listens to connections on a port and returns a StreamPeerTCP when got a connection. + TCP Server class. Listens to connections on a port and returns a [StreamPeerTCP] when got a connection. - + @@ -28677,21 +28629,21 @@ Listen on a port, alternatively give a white-list of accepted hosts. - + Return true if a connection is available for taking. - + If a connection is available, return a StreamPeerTCP with the connection/ - + Stop listening. @@ -28705,60 +28657,60 @@ Tabbed Container. - Tabbed Container. Contains several children controls, but shows only one at the same time. Clicking ont he top tabs allows to change the current visible one.[br] + Tabbed Container. Contains several children controls, but shows only one at the same time. Clicking on the top tabs allows to change the currently visible one. Children controls of this one automatically. - + Return the amount of tabs. - + Bring a tab (and the Control it represents) to the front, and hide the rest. - + Return the current tab that is being showed. - + Set tab alignment, from the ALIGN_* enum. Moves tabs to the left, right or center. - + - Return tab alignment, from the ALIGN_* enum + Return tab alignment, from the ALIGN_* enum. - + Set whether the tabs should be visible or hidden. - + Return whether the tabs should be visible or hidden. - + @@ -28767,7 +28719,7 @@ Set a title for the tab. Tab titles are by default the children node name, but this can be overriden. - + @@ -28776,7 +28728,7 @@ Return the title for the tab. Tab titles are by default the children node name, but this can be overriden. - + @@ -28785,7 +28737,7 @@ Set an icon for a tab. - + @@ -28846,25 +28798,25 @@ Simple tabs control, similar to [TabContainer] but is only in charge of drawing tabs, not interact with children. - + - + - + - + @@ -28872,7 +28824,7 @@ - + @@ -28880,7 +28832,7 @@ - + @@ -28888,7 +28840,7 @@ - + @@ -28896,13 +28848,13 @@ - + - + @@ -28962,35 +28914,35 @@ TextEdit is meant for editing large, multiline text. It also has facilities for editing code, such as syntax highlighting support and multiple levels of undo/redo. - + Set the entire text. - + Insert a given text at the cursor position. - + Return the amount of total lines in the text. - + Return the whole text. - + @@ -28999,76 +28951,76 @@ Return the text of a specific line. - + Set the current column of the text editor. - + Set the current line of the text editor. - + Return the column the editing cursor is at. - + Return the line the editing cursor is at. - + Set the text editor as read-only. Text can be displayed but not edited. - + Enable text wrapping when it goes beyond he edge of what is visible. - + Set the maximum amount of characters editable. - + Cut the current selection. - + Copy the current selection. - + Paste the current selection. - + Select all the text. - + @@ -29081,55 +29033,55 @@ Perform selection, from line/column to line/column. - + Return true if the selection is active. - + Return the selection begin line. - + Return the selection begin column. - + Return the selection end line. - + Return the selection end column. - + Return the text inside the selection. - + - + @@ -29144,45 +29096,45 @@ Perform a search inside the text. Search flags can be specified in the SEARCH_* enum. - + Perform undo operation. - + Perform redo operation. - + Clear the undo history. - + Set to enable the syntax coloring. - + Return true if the syntax coloring is enabled. - + - Add a keyword and it's color. + Add a keyword and its color. - + @@ -29192,24 +29144,24 @@ - Add color region (given the delimiters) and it's colors. + Add color region (given the delimiters) and its colors. - + Set the color for symbols. - + Set a custom background color. A background color with alpha==0 disables this. - + Clear all the syntax coloring information. @@ -29297,55 +29249,55 @@ A texture works by registering an image in the video hardware, which then can be used in 3D models or 2D [Sprite] or GUI [Control]s. - + Return the texture width. - + Return the texture height. - + Return the texture size. - + Return the texture RID as used in the [VisualServer]. - + - + Change the texture flags. - + Return the current texture flags. - + @@ -29356,7 +29308,7 @@ Draw the texture into a a [VisualServer] canvas item. - + @@ -29368,7 +29320,7 @@ - + @@ -29383,19 +29335,19 @@ - Generate mipmaps. + Generate mipmaps, to enable smooth zooming out of the texture. Repeat (instead of clamp to edge). - Turn on magnifying filter. + Turn on magnifying filter, to enable smooth zooming in of the texture. - Texture is a video surface + Texture is a video surface. - Default flags + Default flags. Generate mipmaps, repeat, and filter are enabled. @@ -29408,77 +29360,77 @@ Button that can be themed with textures. - Button that can be themed with textures. This is like a regular [Button] but can be themed by assigning textures to it. This button is intended to be easy to theme, however a regular button can expand (that uses styleboxes) and still be better if the interface is expect to have internationalization of texts.[br] + Button that can be themed with textures. This is like a regular [Button] but can be themed by assigning textures to it. This button is intended to be easy to theme, however a regular button can expand (that uses styleboxes) and still be better if the interface is expect to have internationalization of texts. Only the normal texture is required, the others are optional. - + - + - + - + - + - + - + - + - + - + - + - + @@ -29496,37 +29448,37 @@ Control frame that simply draws an assigned texture. It can stretch or not. It's a simple way to just show an image in a UI. - + - + - + - + - + - + @@ -29544,37 +29496,37 @@ [ProgressBar] implementation that is easier to theme (by just passing a few textures). - + - + - + - + - + - + @@ -29589,11 +29541,11 @@ Theme for controls. - Theme for skinning controls. Controls can be skinned individually, but for complex applications it's more efficient to just create a global theme that defines everything. This theme can be applied to any [Control], and it and the children will automatically use it.[br] + Theme for skinning controls. Controls can be skinned individually, but for complex applications it's more efficient to just create a global theme that defines everything. This theme can be applied to any [Control], and it and its children will automatically use it. Theme resources can be alternatively loaded by writing them in a .theme file, see wiki for more info. - + @@ -29603,7 +29555,7 @@ - + @@ -29613,7 +29565,7 @@ - + @@ -29623,7 +29575,7 @@ - + @@ -29631,7 +29583,7 @@ - + @@ -29639,7 +29591,7 @@ - + @@ -29649,7 +29601,7 @@ - + @@ -29659,7 +29611,7 @@ - + @@ -29669,7 +29621,7 @@ - + @@ -29677,7 +29629,7 @@ - + @@ -29685,7 +29637,7 @@ - + @@ -29695,7 +29647,7 @@ - + @@ -29705,7 +29657,7 @@ - + @@ -29715,7 +29667,7 @@ - + @@ -29723,7 +29675,7 @@ - + @@ -29731,7 +29683,7 @@ - + @@ -29741,7 +29693,7 @@ - + @@ -29751,7 +29703,7 @@ - + @@ -29761,7 +29713,7 @@ - + @@ -29769,7 +29721,7 @@ - + @@ -29777,7 +29729,7 @@ - + @@ -29787,7 +29739,7 @@ - + @@ -29797,7 +29749,7 @@ - + @@ -29807,7 +29759,7 @@ - + @@ -29815,7 +29767,7 @@ - + @@ -29823,19 +29775,19 @@ - + - + - + @@ -29843,7 +29795,7 @@ - + @@ -29857,7 +29809,7 @@ - + @@ -29871,19 +29823,19 @@ - + - + - + @@ -29903,152 +29855,152 @@ Node for 2D Tile-Based games. Tilemaps use a TileSet which contain a list of tiles (textures, their rect and a collision) and are used to create complex grid-based maps. - To optimize drawing and culling (sort of like [GridMap]), you can specify a quadrant size, so chunks of the map will be batched together the time of drawing. + To optimize drawing and culling (sort of like [GridMap]), you can specify a quadrant size, so chunks of the map will be batched together at drawing time. - + Set the current tileset. - + Return the current tileset. - + - + - + - + - + - + - + Set the cell size. - + Return the cell size. - + Set the quadrant size, this optimizes drawing by batching chunks of map at draw/cull time. - + Return the quadrant size, this optimizes drawing by batching chunks of map at draw/cull time. - + Set tiles to be centered in x coordinate. (by default this is false and they are drawn from upper left cell corner). - + Return true if tiles are to be centered in x coordinate (by default this is false and they are drawn from upper left cell corner). - + Set tiles to be centered in y coordinate. (by default this is false and they are drawn from upper left cell corner). - + Return true if tiles are to be centered in y coordinate (by default this is false and they are drawn from upper left cell corner). - + - + - + - + - + - + - + @@ -30063,7 +30015,7 @@ Set the contents of a cell. Cells can be optionally flipped in y or x. - + @@ -30074,7 +30026,7 @@ Return the contents of a cell. - + @@ -30085,7 +30037,7 @@ Return if a given cell is flipped in x axis. - + @@ -30096,12 +30048,12 @@ Return if a given cell is flipped in y axis. - + Clear all cells. - + @@ -30111,7 +30063,7 @@ - + @@ -30152,14 +30104,14 @@ A TileSet is a library of tiles for a [TileMap]. It contains a list of tiles, each consisting of a sprite and optional collision shapes. - + Create a new tile, the ID must be specified. - + @@ -30168,7 +30120,7 @@ Set the name of a tile, for decriptive purposes. - + @@ -30177,7 +30129,7 @@ Return the name of a tile, for decriptive purposes. - + @@ -30186,7 +30138,7 @@ Set the texture of the tile. - + @@ -30195,7 +30147,7 @@ Return the texture of the tile. - + @@ -30203,7 +30155,7 @@ - + @@ -30211,7 +30163,7 @@ - + @@ -30219,7 +30171,7 @@ - + @@ -30227,7 +30179,7 @@ - + @@ -30236,7 +30188,7 @@ Set the tile sub-region in the texture. This is common in texture atlases. - + @@ -30245,16 +30197,16 @@ Return the tile sub-region in the texture. This is common in texture atlases. - + - Set a shape for the tile, enabling physics to collide it. + Set a shape for the tile, enabling physics to collide with it. - + @@ -30263,7 +30215,7 @@ Return the shape of the tile. - + @@ -30271,7 +30223,7 @@ - + @@ -30279,26 +30231,26 @@ - + Remove a tile, by integer id. - + Clear all tiles. - + Find an empty id for creating a new tile. - + @@ -30307,7 +30259,7 @@ Find the first tile with the given name. - + @@ -30324,59 +30276,59 @@ Timer node. This is a simple node that will emit a timeout callback when the timer runs out. It can optinally be set to loop. - + - Set wait time. When the time is over, it will emit timeout signal. + Set wait time. When the time is over, it will emit the timeout signal. - + - Return the wait time. When the time is over, it will emit timeout signal. + Return the wait time. When the time is over, it will emit the timeout signal. - + Set as one-shot. If true, timer will stop after timeout, otherwise it will automatically restart. - + Return true if is set as one-shot. If true, timer will stop after timeout, otherwise it will automatically restart. - + Set to automatically start when entering the scene. - + Return true if set to automatically start when entering the scene. - + Start the timer. - + Stop (cancel) the timer. - + @@ -30400,79 +30352,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -30500,20 +30452,20 @@ Transform is used to store transformations, including translations. It consists of a Matrix3 "basis" and Vector3 "origin". Transform is used to represent transformations of any object in space. It is similar to a 4x3 matrix. - + - + Returns the inverse of the transform. - + @@ -30523,13 +30475,13 @@ - + - + @@ -30539,7 +30491,7 @@ - + @@ -30547,7 +30499,7 @@ - + @@ -30555,7 +30507,7 @@ - + @@ -30564,7 +30516,7 @@ Transforms vector "v" by this transform. - + @@ -30573,7 +30525,7 @@ Inverse-transforms vector "v" by this transform. - + @@ -30585,7 +30537,7 @@ - + @@ -30593,19 +30545,19 @@ - + - + - + @@ -30629,21 +30581,21 @@ Translations are resources that can be loaded/unloaded on demand. They map a string to another string. - + Set the locale of the translation. - + Return the locale of the translation. - + @@ -30652,7 +30604,7 @@ Add a message for translation. - + @@ -30661,21 +30613,21 @@ Return a message for translation. - + Erase a message. - + Return all the messages (keys). - + @@ -30692,19 +30644,19 @@ - + - + - + @@ -30712,19 +30664,19 @@ - + - + - + @@ -30738,11 +30690,11 @@ - + - + @@ -30750,13 +30702,13 @@ - + - + @@ -30764,7 +30716,7 @@ - + @@ -30772,7 +30724,7 @@ - + @@ -30780,13 +30732,13 @@ - + - + @@ -30794,61 +30746,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -30858,23 +30810,23 @@ - + - + - + - + @@ -30882,7 +30834,7 @@ - + @@ -30890,7 +30842,7 @@ - + @@ -31022,7 +30974,7 @@ - + @@ -31030,7 +30982,7 @@ - + @@ -31038,7 +30990,7 @@ - + @@ -31046,7 +30998,7 @@ - + @@ -31054,7 +31006,7 @@ - + @@ -31062,7 +31014,7 @@ - + @@ -31070,7 +31022,7 @@ - + @@ -31078,7 +31030,7 @@ - + @@ -31086,7 +31038,7 @@ - + @@ -31094,7 +31046,7 @@ - + @@ -31102,7 +31054,7 @@ - + @@ -31110,7 +31062,7 @@ - + @@ -31118,7 +31070,7 @@ - + @@ -31126,7 +31078,7 @@ - + @@ -31134,7 +31086,7 @@ - + @@ -31148,7 +31100,7 @@ - + @@ -31156,7 +31108,7 @@ - + @@ -31164,13 +31116,13 @@ - + - + @@ -31180,61 +31132,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -31242,7 +31194,7 @@ - + @@ -31250,7 +31202,7 @@ - + @@ -31258,19 +31210,19 @@ - + - + - + @@ -31278,7 +31230,7 @@ - + @@ -31286,7 +31238,7 @@ - + @@ -31294,13 +31246,13 @@ - + - + @@ -31308,13 +31260,13 @@ - + - + @@ -31322,7 +31274,7 @@ - + @@ -31332,7 +31284,7 @@ - + @@ -31340,7 +31292,7 @@ - + @@ -31350,7 +31302,7 @@ - + @@ -31358,7 +31310,7 @@ - + @@ -31366,7 +31318,7 @@ - + @@ -31374,11 +31326,11 @@ - + - + @@ -31402,61 +31354,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -31466,13 +31418,13 @@ - + - + @@ -31482,13 +31434,13 @@ - + - + @@ -31498,13 +31450,13 @@ - + - + @@ -31514,13 +31466,13 @@ - + - + @@ -31528,19 +31480,19 @@ - + - + - + @@ -31562,7 +31514,7 @@ - + @@ -31584,7 +31536,7 @@ - + @@ -31598,7 +31550,7 @@ - + @@ -31622,7 +31574,7 @@ - + @@ -31646,7 +31598,7 @@ - + @@ -31670,7 +31622,7 @@ - + @@ -31764,37 +31716,37 @@ - + - + - + - + - + - + @@ -31954,7 +31906,7 @@ - + @@ -31962,7 +31914,7 @@ - + @@ -31970,13 +31922,13 @@ - + - + @@ -31990,7 +31942,7 @@ - + @@ -31998,7 +31950,7 @@ - + @@ -32007,7 +31959,7 @@ Returns the distance to vector "b". - + @@ -32016,39 +31968,39 @@ Returns the dot product with vector "b". - + Remove the fractional part of x and y. - + - + - + Returns the length of the vector. - + - + @@ -32059,14 +32011,14 @@ Returns the result of the linear interpolation between this vector and "b", by amount "i". - + Returns a normalized vector to unit length. - + @@ -32074,7 +32026,7 @@ - + @@ -32082,7 +32034,7 @@ - + @@ -32090,7 +32042,7 @@ - + @@ -32098,13 +32050,13 @@ - + - + @@ -32132,7 +32084,7 @@ - + @@ -32140,19 +32092,19 @@ - + - + - + @@ -32160,13 +32112,13 @@ - + - + @@ -32184,13 +32136,13 @@ Vector3 is one of the core classes of the engine, and includes several built-in helper functions to perform basic vecor math operations. - + - + @@ -32199,7 +32151,7 @@ Return the cross product with b. - + @@ -32214,7 +32166,7 @@ Perform a cubic interpolation between vectors a,b,c,d (b is current), by the given amount (i). - + @@ -32223,7 +32175,7 @@ Return the squared distance (distance minus the last square root) to b. - + @@ -32232,7 +32184,7 @@ Return the distance to b. - + @@ -32241,28 +32193,28 @@ Return the dot product with b. - + Returns the inverse of the vector. this is the same as Vector3( 1.0 / v.x, 1.0 / v.y, 1.0 / v.z ) - + Return the length of the vector. - + - Return the length of the vector, without the square root step. + Return the length of the vector, squared. - + @@ -32270,29 +32222,29 @@ - Linearly interpolates the vector to a given one (b), by the given amount (i) + Linearly interpolates the vector to a given one (b), by the given amount (i). - + - + - + Return a copy of the normalized vector to unit length. This is the same as v / v.length() - + @@ -32300,7 +32252,7 @@ - + @@ -32310,7 +32262,7 @@ - + @@ -32318,7 +32270,7 @@ - + @@ -32327,7 +32279,7 @@ Return a copy of the vector, snapped to the lowest neared multiple. - + @@ -32361,7 +32313,7 @@ - + @@ -32369,19 +32321,19 @@ - + - + - + @@ -32389,13 +32341,13 @@ - + - + @@ -32411,61 +32363,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -32481,121 +32433,121 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -32611,99 +32563,99 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -32719,25 +32671,25 @@ - + - + - + - + @@ -32752,104 +32704,104 @@ Creates a sub-view into the screen. - A Viewport creates a different view into the screen, or a sub-view inside another viewport. Children 2D Nodes will display on it, and children Camera 3D nodes will renderon it too.[br] - Optionally, a viewport can have it's own 2D or 3D world, so they don't share what they draw with other viewports.[br] - If a viewport is a child of a [Control], it will automatically take up it's same rect and position, otherwise they must be set manually.[br] - Viewports can also choose to be audio listeners, so they generate positional audio depending on a 2D or 3D camera child of it.[br] - Also, viewports can be assigned to different screens in the situation while devices have multiple screens.[br] - Finaly, viewports can also behave as render targets, in which case they will not be visible unless the associated texture is used to draw. + A Viewport creates a different view into the screen, or a sub-view inside another viewport. Children 2D Nodes will display on it, and children Camera 3D nodes will render on it too. + Optionally, a viewport can have its own 2D or 3D world, so they don't share what they draw with other viewports. + If a viewport is a child of a [Control], it will automatically take up its same rect and position, otherwise they must be set manually. + Viewports can also choose to be audio listeners, so they generate positional audio depending on a 2D or 3D camera child of it. + Also, viewports can be assigned to different screens in case the devices have multiple screens. + Finally, viewports can also behave as render targets, in which case they will not be visible unless the associated texture is used to draw. - + - Set the viewport rect. If the viewport is child of a control, it will use the same as the parent. + Set the viewport rect. If the viewport is child of a control, it will use the same rect as the parent. - + - Return the viewport rect. If the viewport is child of a control, it will use the same as the parent, otherwise if the rect is empty, the viewport will use all the allowed space. + Return the viewport rect. If the viewport is child of a control, it will use the same rect as the parent. Otherwise, if the rect is empty, the viewport will use all the allowed space. - + - + - + - + - + - + - + - + - + - + Return the final, visuble rect in global screen coordinates. - + - Keep whathver the parent viewport has drawn - - - - - - If this viewport is a child of another viewport, keep the previously drawn background visible. - + + + + + Reurn whether the viewport lets whatever is behind it to show. + + + @@ -32859,184 +32811,184 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + Get the viewport RID from the visual server. - + - + - + - + - + - + - + - + - + - + - + @@ -33066,49 +33018,49 @@ - + - + - + - + - + - + - + - + @@ -33124,7 +33076,7 @@ - + @@ -33132,7 +33084,7 @@ - + @@ -33156,7 +33108,7 @@ - + @@ -33164,7 +33116,7 @@ - + @@ -33188,19 +33140,19 @@ - + - + - + @@ -33238,19 +33190,19 @@ - + - + - + @@ -33288,19 +33240,19 @@ - + - + - + @@ -33315,17 +33267,17 @@ Server for anything visible. - Server for anything visible. The visual server is the API backend for everything visible. The whole scene system mounts on it to display.[br] + Server for anything visible. The visual server is the API backend for everything visible. The whole scene system mounts on it to display. The visual server is completely opaque, the internals are entirely implementation specific and cannot be accessed. - + - + @@ -33335,7 +33287,7 @@ - + @@ -33343,7 +33295,7 @@ - + @@ -33351,7 +33303,7 @@ - + @@ -33359,7 +33311,7 @@ - + @@ -33367,7 +33319,7 @@ - + @@ -33375,7 +33327,7 @@ - + @@ -33383,13 +33335,13 @@ - + - + @@ -33397,7 +33349,7 @@ - + @@ -33405,7 +33357,7 @@ - + @@ -33415,7 +33367,7 @@ - + @@ -33423,7 +33375,7 @@ - + @@ -33433,7 +33385,7 @@ - + @@ -33443,7 +33395,7 @@ - + @@ -33451,7 +33403,7 @@ - + @@ -33459,7 +33411,7 @@ - + @@ -33467,7 +33419,7 @@ - + @@ -33475,13 +33427,13 @@ - + - + @@ -33495,7 +33447,7 @@ - + @@ -33507,7 +33459,7 @@ - + @@ -33517,7 +33469,7 @@ - + @@ -33527,7 +33479,7 @@ - + @@ -33537,7 +33489,7 @@ - + @@ -33547,7 +33499,7 @@ - + @@ -33557,7 +33509,7 @@ - + @@ -33565,7 +33517,7 @@ - + @@ -33573,13 +33525,13 @@ - + - + @@ -33587,7 +33539,7 @@ - + @@ -33595,7 +33547,7 @@ - + @@ -33605,7 +33557,7 @@ - + @@ -33615,7 +33567,7 @@ - + @@ -33623,7 +33575,7 @@ - + @@ -33633,7 +33585,7 @@ - + @@ -33643,7 +33595,7 @@ - + @@ -33653,13 +33605,13 @@ - + - + @@ -33667,7 +33619,7 @@ - + @@ -33675,7 +33627,7 @@ - + @@ -33683,7 +33635,7 @@ - + @@ -33691,7 +33643,7 @@ - + @@ -33699,7 +33651,7 @@ - + @@ -33707,7 +33659,7 @@ - + @@ -33717,7 +33669,7 @@ - + @@ -33727,7 +33679,7 @@ - + @@ -33737,7 +33689,7 @@ - + @@ -33747,7 +33699,7 @@ - + @@ -33755,7 +33707,7 @@ - + @@ -33763,7 +33715,7 @@ - + @@ -33773,7 +33725,7 @@ - + @@ -33783,7 +33735,7 @@ - + @@ -33793,7 +33745,7 @@ - + @@ -33803,7 +33755,7 @@ - + @@ -33811,7 +33763,7 @@ - + @@ -33819,7 +33771,7 @@ - + @@ -33829,7 +33781,7 @@ - + @@ -33839,7 +33791,7 @@ - + @@ -33849,7 +33801,7 @@ - + @@ -33859,7 +33811,7 @@ - + @@ -33869,7 +33821,7 @@ - + @@ -33877,7 +33829,7 @@ - + @@ -33885,7 +33837,7 @@ - + @@ -33893,7 +33845,7 @@ - + @@ -33901,7 +33853,7 @@ - + @@ -33911,7 +33863,7 @@ - + @@ -33921,7 +33873,7 @@ - + @@ -33929,7 +33881,7 @@ - + @@ -33937,7 +33889,7 @@ - + @@ -33945,7 +33897,7 @@ - + @@ -33953,7 +33905,7 @@ - + @@ -33961,7 +33913,7 @@ - + @@ -33969,7 +33921,7 @@ - + @@ -33979,7 +33931,7 @@ - + @@ -33989,13 +33941,13 @@ - + - + @@ -34003,7 +33955,7 @@ - + @@ -34011,7 +33963,7 @@ - + @@ -34021,7 +33973,7 @@ - + @@ -34031,13 +33983,13 @@ - + - + @@ -34045,7 +33997,7 @@ - + @@ -34053,13 +34005,13 @@ - + - + @@ -34067,7 +34019,7 @@ - + @@ -34075,7 +34027,7 @@ - + @@ -34083,7 +34035,7 @@ - + @@ -34091,7 +34043,7 @@ - + @@ -34099,7 +34051,7 @@ - + @@ -34107,7 +34059,7 @@ - + @@ -34115,7 +34067,7 @@ - + @@ -34123,13 +34075,13 @@ - + - + @@ -34141,7 +34093,7 @@ - + @@ -34153,7 +34105,7 @@ - + @@ -34161,13 +34113,13 @@ - + - + @@ -34175,7 +34127,7 @@ - + @@ -34183,7 +34135,7 @@ - + @@ -34191,7 +34143,7 @@ - + @@ -34199,7 +34151,7 @@ - + @@ -34207,7 +34159,7 @@ - + @@ -34215,7 +34167,7 @@ - + @@ -34223,7 +34175,7 @@ - + @@ -34231,13 +34183,13 @@ - + - + @@ -34245,13 +34197,13 @@ - + - + @@ -34259,7 +34211,7 @@ - + @@ -34267,7 +34219,7 @@ - + @@ -34275,7 +34227,7 @@ - + @@ -34283,7 +34235,7 @@ - + @@ -34291,7 +34243,7 @@ - + @@ -34299,7 +34251,7 @@ - + @@ -34307,7 +34259,7 @@ - + @@ -34315,7 +34267,7 @@ - + @@ -34323,7 +34275,7 @@ - + @@ -34331,7 +34283,7 @@ - + @@ -34339,7 +34291,7 @@ - + @@ -34347,7 +34299,7 @@ - + @@ -34357,7 +34309,7 @@ - + @@ -34369,7 +34321,7 @@ - + @@ -34379,7 +34331,7 @@ - + @@ -34387,7 +34339,7 @@ - + @@ -34395,25 +34347,25 @@ - + - + - + - + @@ -34421,7 +34373,7 @@ - + @@ -34429,7 +34381,7 @@ - + @@ -34437,7 +34389,7 @@ - + @@ -34447,7 +34399,7 @@ - + @@ -34455,7 +34407,7 @@ - + @@ -34463,7 +34415,7 @@ - + @@ -34473,7 +34425,7 @@ - + @@ -34481,7 +34433,7 @@ - + @@ -34491,7 +34443,7 @@ - + @@ -34505,7 +34457,7 @@ - + @@ -34515,7 +34467,7 @@ - + @@ -34529,7 +34481,7 @@ - + @@ -34543,7 +34495,7 @@ - + @@ -34557,7 +34509,7 @@ - + @@ -34569,7 +34521,7 @@ - + @@ -34579,19 +34531,19 @@ - + - + - + @@ -34599,7 +34551,7 @@ - + @@ -34609,7 +34561,7 @@ - + @@ -34617,7 +34569,7 @@ - + @@ -34625,7 +34577,7 @@ - + @@ -34637,7 +34589,7 @@ - + @@ -34649,7 +34601,7 @@ - + @@ -34661,7 +34613,7 @@ - + @@ -34669,27 +34621,27 @@ - + - + - + - + - + @@ -34933,21 +34885,21 @@ Windowdialog is the base class for all window-based dialogs. It's a by-default toplevel [Control] that draws a window decoration and allows motion and resizing. - + Set the title of the window. - + Return the title of the window. - + @@ -34986,31 +34938,31 @@ 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. - + - + - + - + - + @@ -35028,19 +34980,19 @@ 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. - + - + - + @@ -35056,13 +35008,13 @@ - + - + @@ -35078,43 +35030,43 @@ - + - + - + - + - + - + - + @@ -35122,7 +35074,7 @@ - + @@ -35130,7 +35082,7 @@ - + @@ -35138,7 +35090,7 @@ - + @@ -35146,7 +35098,7 @@ - + @@ -35154,23 +35106,23 @@ - + - + - + - + @@ -35178,7 +35130,7 @@ - + @@ -35186,7 +35138,7 @@ - + @@ -35218,13 +35170,13 @@ - + - + @@ -35242,19 +35194,19 @@ Boolean built-in type. - + - + - + @@ -35270,19 +35222,19 @@ - + - + - + @@ -35300,19 +35252,19 @@ Integer built-in type. - + - + - + diff --git a/doc/engine_classes.xml b/doc/engine_classes.xml index acbb9d47fe..af153a16ef 100644 --- a/doc/engine_classes.xml +++ b/doc/engine_classes.xml @@ -6,31 +6,31 @@ - + - + - + - + - + @@ -38,7 +38,7 @@ - + @@ -46,19 +46,19 @@ - + - + - + @@ -86,7 +86,7 @@ - + @@ -96,19 +96,19 @@ - + - + - + @@ -116,7 +116,7 @@ - + @@ -124,7 +124,7 @@ - + @@ -132,19 +132,19 @@ - + - + - + @@ -160,7 +160,7 @@ - + @@ -172,7 +172,7 @@ - + @@ -180,7 +180,7 @@ - + @@ -188,7 +188,7 @@ - + @@ -198,7 +198,7 @@ - + @@ -208,7 +208,7 @@ - + @@ -218,7 +218,7 @@ - + @@ -226,7 +226,7 @@ - + @@ -234,7 +234,7 @@ - + @@ -244,7 +244,7 @@ - + @@ -256,7 +256,7 @@ - + @@ -264,7 +264,7 @@ - + @@ -272,7 +272,7 @@ - + @@ -282,7 +282,7 @@ - + @@ -290,7 +290,7 @@ - + @@ -298,7 +298,7 @@ - + @@ -310,7 +310,7 @@ - + @@ -322,7 +322,7 @@ - + @@ -332,7 +332,7 @@ - + @@ -342,31 +342,31 @@ - + - + - + - + - + @@ -392,7 +392,7 @@ - + @@ -402,13 +402,13 @@ - + - + @@ -416,7 +416,7 @@ - + @@ -424,7 +424,7 @@ - + @@ -432,13 +432,13 @@ - + - + @@ -448,7 +448,7 @@ - + @@ -458,81 +458,81 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -540,13 +540,13 @@ - + - + @@ -554,17 +554,17 @@ - + - + - + @@ -590,7 +590,7 @@ - + @@ -598,7 +598,7 @@ - + @@ -606,7 +606,7 @@ - + @@ -614,7 +614,7 @@ - + @@ -622,7 +622,7 @@ - + @@ -630,7 +630,7 @@ - + @@ -638,7 +638,7 @@ - + @@ -646,7 +646,7 @@ - + @@ -654,7 +654,7 @@ - + @@ -662,7 +662,7 @@ - + @@ -670,7 +670,7 @@ - + @@ -678,7 +678,7 @@ - + @@ -686,7 +686,7 @@ - + @@ -694,7 +694,7 @@ - + @@ -702,7 +702,7 @@ - + @@ -710,7 +710,7 @@ - + @@ -718,7 +718,7 @@ - + @@ -726,7 +726,7 @@ - + @@ -734,19 +734,19 @@ - + - + - + @@ -754,7 +754,7 @@ - + @@ -762,7 +762,7 @@ - + @@ -770,7 +770,7 @@ - + @@ -778,7 +778,7 @@ - + @@ -786,7 +786,7 @@ - + @@ -794,7 +794,7 @@ - + @@ -802,7 +802,7 @@ - + @@ -810,7 +810,7 @@ - + @@ -818,7 +818,7 @@ - + @@ -826,7 +826,7 @@ - + @@ -834,7 +834,7 @@ - + @@ -842,7 +842,7 @@ - + @@ -850,7 +850,7 @@ - + @@ -858,7 +858,7 @@ - + @@ -866,7 +866,7 @@ - + @@ -876,7 +876,7 @@ - + @@ -886,7 +886,7 @@ - + @@ -894,7 +894,7 @@ - + @@ -902,7 +902,7 @@ - + @@ -910,7 +910,7 @@ - + @@ -918,7 +918,7 @@ - + @@ -926,7 +926,7 @@ - + @@ -934,13 +934,13 @@ - + - + @@ -952,7 +952,7 @@ - + @@ -964,7 +964,7 @@ - + @@ -972,41 +972,41 @@ - + - + - + - + - + - + - + @@ -1040,85 +1040,85 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -1176,7 +1176,7 @@ - + @@ -1188,7 +1188,7 @@ - + @@ -1196,7 +1196,7 @@ - + @@ -1206,7 +1206,7 @@ - + @@ -1214,7 +1214,7 @@ - + @@ -1222,7 +1222,7 @@ - + @@ -1230,7 +1230,7 @@ - + @@ -1238,7 +1238,7 @@ - + @@ -1246,7 +1246,7 @@ - + @@ -1254,7 +1254,7 @@ - + @@ -1262,7 +1262,7 @@ - + @@ -1270,7 +1270,7 @@ - + @@ -1278,7 +1278,7 @@ - + @@ -1286,7 +1286,7 @@ - + @@ -1294,7 +1294,7 @@ - + @@ -1302,7 +1302,7 @@ - + @@ -1310,7 +1310,7 @@ - + @@ -1318,13 +1318,13 @@ - + - + @@ -1332,7 +1332,7 @@ - + @@ -1340,7 +1340,7 @@ - + @@ -1352,7 +1352,7 @@ - + @@ -1366,7 +1366,7 @@ - + @@ -1374,7 +1374,7 @@ - + @@ -1384,7 +1384,7 @@ - + @@ -1392,7 +1392,7 @@ - + @@ -1400,7 +1400,7 @@ - + @@ -1408,7 +1408,7 @@ - + @@ -1416,7 +1416,7 @@ - + @@ -1424,7 +1424,7 @@ - + @@ -1432,7 +1432,7 @@ - + @@ -1440,7 +1440,7 @@ - + @@ -1448,7 +1448,7 @@ - + @@ -1456,7 +1456,7 @@ - + @@ -1464,7 +1464,7 @@ - + @@ -1472,7 +1472,7 @@ - + @@ -1480,7 +1480,7 @@ - + @@ -1488,7 +1488,7 @@ - + @@ -1496,37 +1496,37 @@ - + - + - + - + - + - + @@ -1584,69 +1584,69 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -1666,49 +1666,49 @@ - + - + - + - + - + - + - + - + @@ -1724,13 +1724,13 @@ - + - + @@ -1766,13 +1766,13 @@ - + - + @@ -1818,49 +1818,49 @@ - + - + - + - + - + - + - + - + @@ -1908,13 +1908,13 @@ - + - + @@ -1930,49 +1930,49 @@ - + - + - + - + - + - + - + - + @@ -1988,13 +1988,13 @@ - + - + @@ -2002,7 +2002,7 @@ - + @@ -2010,7 +2010,7 @@ - + @@ -2018,7 +2018,7 @@ - + @@ -2026,7 +2026,7 @@ - + @@ -2034,37 +2034,37 @@ - + - + - + - + - + - + @@ -2096,31 +2096,31 @@ - + - + - + - + - + @@ -2136,7 +2136,7 @@ - + @@ -2144,7 +2144,7 @@ - + @@ -2152,7 +2152,7 @@ - + @@ -2160,7 +2160,7 @@ - + @@ -2168,7 +2168,7 @@ - + @@ -2176,7 +2176,7 @@ - + @@ -2186,7 +2186,7 @@ - + @@ -2196,51 +2196,51 @@ - + - + - + - + - + - + - + - + - + @@ -2260,41 +2260,41 @@ - + - + - + - + - + - + - + @@ -2302,7 +2302,7 @@ - + @@ -2310,7 +2310,7 @@ - + @@ -2318,7 +2318,7 @@ - + @@ -2326,13 +2326,13 @@ - + - + @@ -2346,113 +2346,113 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2464,7 +2464,7 @@ - + @@ -2472,7 +2472,7 @@ - + @@ -2482,7 +2482,7 @@ - + @@ -2490,7 +2490,7 @@ - + @@ -2504,7 +2504,7 @@ - + @@ -2518,7 +2518,7 @@ - + @@ -2526,7 +2526,7 @@ - + @@ -2540,7 +2540,7 @@ - + @@ -2554,7 +2554,7 @@ - + @@ -2568,7 +2568,7 @@ - + @@ -2582,7 +2582,7 @@ - + @@ -2598,7 +2598,7 @@ - + @@ -2608,13 +2608,13 @@ - + - + @@ -2666,73 +2666,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -2748,25 +2748,25 @@ - + - + - + - + @@ -2782,25 +2782,25 @@ - + - + - + - + @@ -2826,13 +2826,13 @@ - + - + @@ -2848,13 +2848,13 @@ - + - + @@ -2870,7 +2870,7 @@ - + @@ -2878,13 +2878,13 @@ - + - + @@ -2892,7 +2892,7 @@ - + @@ -2900,7 +2900,7 @@ - + @@ -2908,7 +2908,7 @@ - + @@ -2916,13 +2916,13 @@ - + - + @@ -2956,25 +2956,25 @@ - + - + - + - + @@ -2998,13 +2998,13 @@ - + - + @@ -3020,13 +3020,13 @@ - + - + @@ -3042,7 +3042,7 @@ - + @@ -3058,11 +3058,11 @@ - + - + @@ -3088,29 +3088,29 @@ - + - + - + - + - + @@ -3118,7 +3118,7 @@ - + @@ -3126,7 +3126,7 @@ - + @@ -3134,7 +3134,7 @@ - + @@ -3144,37 +3144,37 @@ - + - + - + - + - + - + @@ -3182,141 +3182,141 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3324,7 +3324,7 @@ - + @@ -3332,7 +3332,7 @@ - + @@ -3340,7 +3340,7 @@ - + @@ -3348,7 +3348,7 @@ - + @@ -3356,7 +3356,7 @@ - + @@ -3366,7 +3366,7 @@ - + @@ -3376,7 +3376,7 @@ - + @@ -3386,7 +3386,7 @@ - + @@ -3396,7 +3396,7 @@ - + @@ -3406,19 +3406,19 @@ - + - + - + @@ -3426,19 +3426,19 @@ - + - + - + @@ -3446,7 +3446,7 @@ - + @@ -3454,7 +3454,7 @@ - + @@ -3462,13 +3462,13 @@ - + - + @@ -3578,13 +3578,13 @@ - + - + @@ -3600,13 +3600,13 @@ - + - + @@ -3632,49 +3632,49 @@ - + - + - + - + - + - + - + - + @@ -3700,103 +3700,103 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -3804,31 +3804,31 @@ - + - + - + - + - + @@ -3854,7 +3854,7 @@ - + @@ -3880,13 +3880,13 @@ - + - + @@ -3902,7 +3902,7 @@ - + @@ -3912,89 +3912,89 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4002,101 +4002,101 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4120,65 +4120,65 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -4214,19 +4214,19 @@ - + - + - + @@ -4234,13 +4234,13 @@ - + - + @@ -4248,7 +4248,7 @@ - + @@ -4256,19 +4256,19 @@ - + - + - + @@ -4276,7 +4276,7 @@ - + @@ -4284,25 +4284,25 @@ - + - + - + - + @@ -4362,205 +4362,205 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -4578,37 +4578,37 @@ - + - + - + - + - + - + @@ -4618,7 +4618,7 @@ - + @@ -4628,13 +4628,13 @@ - + - + @@ -4648,7 +4648,7 @@ - + @@ -4658,7 +4658,7 @@ - + @@ -4666,11 +4666,11 @@ - + - + @@ -4684,7 +4684,7 @@ - + @@ -4710,7 +4710,7 @@ - + @@ -4724,7 +4724,7 @@ - + @@ -4748,7 +4748,7 @@ - + @@ -4756,7 +4756,7 @@ - + @@ -4770,7 +4770,7 @@ - + @@ -4786,7 +4786,7 @@ - + @@ -4810,25 +4810,25 @@ - + - + - + - + @@ -4844,7 +4844,7 @@ - + @@ -4852,7 +4852,7 @@ - + @@ -4860,7 +4860,7 @@ - + @@ -4868,7 +4868,7 @@ - + @@ -4876,7 +4876,7 @@ - + @@ -4884,13 +4884,13 @@ - + - + @@ -4898,7 +4898,7 @@ - + @@ -4926,79 +4926,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -5012,7 +5012,7 @@ - + @@ -5024,7 +5024,7 @@ - + @@ -5036,49 +5036,49 @@ - + - + - + - + - + - + - + - + @@ -5090,7 +5090,7 @@ - + @@ -5100,7 +5100,7 @@ - + @@ -5108,7 +5108,7 @@ - + @@ -5116,7 +5116,7 @@ - + @@ -5124,7 +5124,7 @@ - + @@ -5132,7 +5132,7 @@ - + @@ -5140,7 +5140,7 @@ - + @@ -5148,7 +5148,7 @@ - + @@ -5156,7 +5156,7 @@ - + @@ -5164,7 +5164,7 @@ - + @@ -5172,13 +5172,13 @@ - + - + @@ -5196,25 +5196,25 @@ - + - + - + - + @@ -5290,7 +5290,7 @@ - + @@ -5298,7 +5298,7 @@ - + @@ -5306,7 +5306,7 @@ - + @@ -5314,7 +5314,7 @@ - + @@ -5322,7 +5322,7 @@ - + @@ -5370,43 +5370,43 @@ - + - + - + - + - + - + - + @@ -5422,25 +5422,25 @@ - + - + - + - + @@ -5456,61 +5456,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -5542,7 +5542,7 @@ - + @@ -5550,7 +5550,7 @@ - + @@ -5558,7 +5558,7 @@ - + @@ -5566,7 +5566,7 @@ - + @@ -5574,37 +5574,37 @@ - + - + - + - + - + - + @@ -5638,81 +5638,81 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -5742,25 +5742,25 @@ - + - + - + - + @@ -5776,7 +5776,7 @@ - + @@ -5808,7 +5808,7 @@ - + @@ -5816,7 +5816,7 @@ - + @@ -5824,7 +5824,7 @@ - + @@ -5832,7 +5832,7 @@ - + @@ -5840,43 +5840,43 @@ - + - + - + - + - + - + - + @@ -5884,7 +5884,7 @@ - + @@ -5948,7 +5948,7 @@ - + @@ -5970,19 +5970,19 @@ - + - + - + @@ -5990,23 +5990,23 @@ - + - + - + - + @@ -6018,19 +6018,19 @@ - + - + - + @@ -6042,7 +6042,7 @@ - + @@ -6050,7 +6050,7 @@ - + @@ -6058,7 +6058,7 @@ - + @@ -6066,7 +6066,7 @@ - + @@ -6074,7 +6074,7 @@ - + @@ -6082,7 +6082,7 @@ - + @@ -6090,7 +6090,7 @@ - + @@ -6162,25 +6162,25 @@ - + - + - + - + @@ -6194,13 +6194,13 @@ - + - + @@ -6208,7 +6208,7 @@ - + @@ -6216,7 +6216,7 @@ - + @@ -6224,7 +6224,7 @@ - + @@ -6232,7 +6232,7 @@ - + @@ -6240,7 +6240,7 @@ - + @@ -6248,23 +6248,23 @@ - + - + - + - + @@ -6280,31 +6280,31 @@ - + - + - + - + - + @@ -6312,7 +6312,7 @@ - + @@ -6320,7 +6320,7 @@ - + @@ -6328,7 +6328,7 @@ - + @@ -6336,19 +6336,19 @@ - + - + - + @@ -6362,13 +6362,13 @@ - + - + @@ -6384,43 +6384,43 @@ - + - + - + - + - + - + - + @@ -6428,7 +6428,7 @@ - + @@ -6436,7 +6436,7 @@ - + @@ -6444,13 +6444,13 @@ - + - + @@ -6458,7 +6458,7 @@ - + @@ -6466,13 +6466,13 @@ - + - + @@ -6480,7 +6480,7 @@ - + @@ -6488,13 +6488,13 @@ - + - + @@ -6502,7 +6502,7 @@ - + @@ -6510,13 +6510,13 @@ - + - + @@ -6524,7 +6524,7 @@ - + @@ -6532,167 +6532,167 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -6754,43 +6754,43 @@ - + - + - + - + - + - + - + @@ -6806,43 +6806,43 @@ - + - + - + - + - + - + - + @@ -6854,7 +6854,7 @@ - + @@ -6862,7 +6862,7 @@ - + @@ -6870,7 +6870,7 @@ - + @@ -6878,7 +6878,7 @@ - + @@ -6886,37 +6886,37 @@ - + - + - + - + - + - + @@ -6928,7 +6928,7 @@ - + @@ -6936,7 +6936,7 @@ - + @@ -6944,7 +6944,7 @@ - + @@ -6952,115 +6952,115 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -7114,13 +7114,13 @@ - + - + @@ -7128,7 +7128,7 @@ - + @@ -7136,19 +7136,19 @@ - + - + - + @@ -7156,25 +7156,25 @@ - + - + - + - + @@ -7182,13 +7182,13 @@ - + - + @@ -7196,13 +7196,13 @@ - + - + @@ -7216,7 +7216,7 @@ - + @@ -7230,7 +7230,7 @@ - + @@ -7238,7 +7238,7 @@ - + @@ -7246,13 +7246,13 @@ - + - + @@ -7266,7 +7266,7 @@ - + @@ -7276,7 +7276,7 @@ - + @@ -7288,31 +7288,31 @@ - + - + - + - + - + @@ -7320,7 +7320,7 @@ - + @@ -7358,25 +7358,25 @@ - + - + - + - + @@ -7384,7 +7384,7 @@ - + @@ -7402,7 +7402,7 @@ - + @@ -7410,7 +7410,7 @@ - + @@ -7420,7 +7420,7 @@ - + @@ -7428,7 +7428,7 @@ - + @@ -7436,7 +7436,7 @@ - + @@ -7444,7 +7444,7 @@ - + @@ -7452,7 +7452,7 @@ - + @@ -7460,7 +7460,7 @@ - + @@ -7468,7 +7468,7 @@ - + @@ -7476,7 +7476,7 @@ - + @@ -7484,13 +7484,13 @@ - + - + @@ -7498,43 +7498,43 @@ - + - + - + - + - + - + - + - + @@ -7578,7 +7578,7 @@ - + @@ -7604,61 +7604,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -7674,37 +7674,37 @@ - + - + - + - + - + - + @@ -7720,91 +7720,91 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -7812,7 +7812,7 @@ - + @@ -7820,7 +7820,7 @@ - + @@ -7828,7 +7828,7 @@ - + @@ -7836,7 +7836,7 @@ - + @@ -7844,7 +7844,7 @@ - + @@ -7852,7 +7852,7 @@ - + @@ -7860,7 +7860,7 @@ - + @@ -7868,49 +7868,49 @@ - + - + - + - + - + - + - + - + @@ -7954,67 +7954,67 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -8022,7 +8022,7 @@ - + @@ -8030,7 +8030,7 @@ - + @@ -8038,7 +8038,7 @@ - + @@ -8046,55 +8046,55 @@ - + - + - + - + - + - + - + - + - + @@ -8102,7 +8102,7 @@ - + @@ -8110,7 +8110,7 @@ - + @@ -8118,7 +8118,7 @@ - + @@ -8126,37 +8126,37 @@ - + - + - + - + - + - + @@ -8206,7 +8206,7 @@ - + @@ -8214,7 +8214,7 @@ - + @@ -8222,7 +8222,7 @@ - + @@ -8230,13 +8230,13 @@ - + - + @@ -8250,85 +8250,85 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -8336,7 +8336,7 @@ - + @@ -8344,7 +8344,7 @@ - + @@ -8352,7 +8352,7 @@ - + @@ -8360,7 +8360,7 @@ - + @@ -8368,7 +8368,7 @@ - + @@ -8376,7 +8376,7 @@ - + @@ -8384,7 +8384,7 @@ - + @@ -8392,7 +8392,7 @@ - + @@ -8400,13 +8400,13 @@ - + - + @@ -8430,7 +8430,7 @@ - + @@ -8438,7 +8438,7 @@ - + @@ -8446,7 +8446,7 @@ - + @@ -8454,19 +8454,19 @@ - + - + - + @@ -8474,7 +8474,7 @@ - + @@ -8482,7 +8482,7 @@ - + @@ -8492,7 +8492,7 @@ - + @@ -8502,13 +8502,13 @@ - + - + @@ -8516,7 +8516,7 @@ - + @@ -8524,7 +8524,7 @@ - + @@ -8534,7 +8534,7 @@ - + @@ -8544,7 +8544,7 @@ - + @@ -8554,7 +8554,7 @@ - + @@ -8562,7 +8562,7 @@ - + @@ -8572,7 +8572,7 @@ - + @@ -8582,7 +8582,7 @@ - + @@ -8590,13 +8590,13 @@ - + - + @@ -8604,7 +8604,7 @@ - + @@ -8612,7 +8612,7 @@ - + @@ -8620,7 +8620,7 @@ - + @@ -8628,7 +8628,7 @@ - + @@ -8636,7 +8636,7 @@ - + @@ -8644,7 +8644,7 @@ - + @@ -8654,7 +8654,7 @@ - + @@ -8662,7 +8662,7 @@ - + @@ -8670,7 +8670,7 @@ - + @@ -8678,7 +8678,7 @@ - + @@ -8688,7 +8688,7 @@ - + @@ -8698,7 +8698,7 @@ - + @@ -8708,7 +8708,7 @@ - + @@ -8718,7 +8718,7 @@ - + @@ -8726,7 +8726,7 @@ - + @@ -8736,7 +8736,7 @@ - + @@ -8746,7 +8746,7 @@ - + @@ -8754,13 +8754,13 @@ - + - + @@ -8768,7 +8768,7 @@ - + @@ -8776,7 +8776,7 @@ - + @@ -8784,7 +8784,7 @@ - + @@ -8792,7 +8792,7 @@ - + @@ -8802,7 +8802,7 @@ - + @@ -8812,7 +8812,7 @@ - + @@ -8820,7 +8820,7 @@ - + @@ -8830,7 +8830,7 @@ - + @@ -8838,7 +8838,7 @@ - + @@ -8848,7 +8848,7 @@ - + @@ -8856,7 +8856,7 @@ - + @@ -8864,7 +8864,7 @@ - + @@ -8872,7 +8872,7 @@ - + @@ -8880,7 +8880,7 @@ - + @@ -8888,7 +8888,7 @@ - + @@ -8896,7 +8896,7 @@ - + @@ -8904,7 +8904,7 @@ - + @@ -8916,7 +8916,7 @@ - + @@ -8932,7 +8932,7 @@ - + @@ -8946,7 +8946,7 @@ - + @@ -8956,7 +8956,7 @@ - + @@ -8966,7 +8966,7 @@ - + @@ -8974,7 +8974,7 @@ - + @@ -8988,7 +8988,7 @@ - + @@ -8996,7 +8996,7 @@ - + @@ -9004,7 +9004,7 @@ - + @@ -9012,7 +9012,7 @@ - + @@ -9026,7 +9026,7 @@ - + @@ -9036,7 +9036,7 @@ - + @@ -9046,7 +9046,7 @@ - + @@ -9056,13 +9056,13 @@ - + - + @@ -9070,7 +9070,7 @@ - + @@ -9078,13 +9078,13 @@ - + - + @@ -9192,7 +9192,7 @@ - + @@ -9200,13 +9200,13 @@ - + - + @@ -9214,7 +9214,7 @@ - + @@ -9222,7 +9222,7 @@ - + @@ -9230,7 +9230,7 @@ - + @@ -9238,41 +9238,41 @@ - + - + - + - + - + - + - + @@ -9298,85 +9298,85 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -9384,7 +9384,7 @@ - + @@ -9392,7 +9392,7 @@ - + @@ -9400,7 +9400,7 @@ - + @@ -9408,7 +9408,7 @@ - + @@ -9416,7 +9416,7 @@ - + @@ -9424,7 +9424,7 @@ - + @@ -9432,7 +9432,7 @@ - + @@ -9460,7 +9460,7 @@ - + @@ -9468,7 +9468,7 @@ - + @@ -9476,7 +9476,7 @@ - + @@ -9484,19 +9484,19 @@ - + - + - + @@ -9506,7 +9506,7 @@ - + @@ -9516,7 +9516,7 @@ - + @@ -9524,7 +9524,7 @@ - + @@ -9532,7 +9532,7 @@ - + @@ -9540,7 +9540,7 @@ - + @@ -9548,7 +9548,7 @@ - + @@ -9556,7 +9556,7 @@ - + @@ -9564,7 +9564,7 @@ - + @@ -9572,7 +9572,7 @@ - + @@ -9582,7 +9582,7 @@ - + @@ -9590,7 +9590,7 @@ - + @@ -9600,7 +9600,7 @@ - + @@ -9610,7 +9610,7 @@ - + @@ -9620,7 +9620,7 @@ - + @@ -9630,7 +9630,7 @@ - + @@ -9638,7 +9638,7 @@ - + @@ -9648,7 +9648,7 @@ - + @@ -9658,7 +9658,7 @@ - + @@ -9666,7 +9666,7 @@ - + @@ -9674,7 +9674,7 @@ - + @@ -9682,7 +9682,7 @@ - + @@ -9692,7 +9692,7 @@ - + @@ -9702,7 +9702,7 @@ - + @@ -9712,7 +9712,7 @@ - + @@ -9720,7 +9720,7 @@ - + @@ -9730,7 +9730,7 @@ - + @@ -9738,7 +9738,7 @@ - + @@ -9746,7 +9746,7 @@ - + @@ -9754,7 +9754,7 @@ - + @@ -9762,7 +9762,7 @@ - + @@ -9770,7 +9770,7 @@ - + @@ -9778,7 +9778,7 @@ - + @@ -9788,7 +9788,7 @@ - + @@ -9796,7 +9796,7 @@ - + @@ -9804,7 +9804,7 @@ - + @@ -9818,7 +9818,7 @@ - + @@ -9826,7 +9826,7 @@ - + @@ -9834,7 +9834,7 @@ - + @@ -9842,7 +9842,7 @@ - + @@ -9854,7 +9854,7 @@ - + @@ -9864,7 +9864,7 @@ - + @@ -9874,7 +9874,7 @@ - + @@ -9884,7 +9884,7 @@ - + @@ -9894,13 +9894,13 @@ - + - + @@ -9908,7 +9908,7 @@ - + @@ -9916,13 +9916,13 @@ - + - + @@ -10048,13 +10048,13 @@ - + - + @@ -10070,35 +10070,35 @@ - + - + - + - + - + - + @@ -10132,7 +10132,7 @@ - + @@ -10144,7 +10144,7 @@ - + @@ -10154,7 +10154,7 @@ - + @@ -10166,7 +10166,7 @@ - + @@ -10176,7 +10176,7 @@ - + @@ -10186,7 +10186,7 @@ - + @@ -10194,7 +10194,7 @@ - + @@ -10202,7 +10202,7 @@ - + @@ -10210,7 +10210,7 @@ - + @@ -10218,7 +10218,7 @@ - + @@ -10226,7 +10226,7 @@ - + @@ -10234,7 +10234,7 @@ - + @@ -10242,7 +10242,7 @@ - + @@ -10250,7 +10250,7 @@ - + @@ -10258,7 +10258,7 @@ - + @@ -10266,7 +10266,7 @@ - + @@ -10274,7 +10274,7 @@ - + @@ -10282,13 +10282,13 @@ - + - + @@ -10296,7 +10296,7 @@ - + @@ -10304,7 +10304,7 @@ - + @@ -10312,7 +10312,7 @@ - + @@ -10320,7 +10320,7 @@ - + @@ -10328,7 +10328,7 @@ - + @@ -10336,7 +10336,7 @@ - + @@ -10344,7 +10344,7 @@ - + @@ -10352,23 +10352,23 @@ - + - + - + - + @@ -10400,61 +10400,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -10490,13 +10490,13 @@ - + - + @@ -10504,19 +10504,19 @@ - + - + - + @@ -10542,25 +10542,25 @@ - + - + - + - + @@ -10590,121 +10590,121 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -10730,13 +10730,13 @@ - + - + @@ -10752,13 +10752,13 @@ - + - + @@ -10774,17 +10774,17 @@ - + - + - + @@ -10810,31 +10810,31 @@ - + - + - + - + - + @@ -10856,7 +10856,7 @@ - + @@ -10866,7 +10866,7 @@ - + @@ -10884,7 +10884,7 @@ - + @@ -10892,13 +10892,13 @@ - + - + @@ -10906,7 +10906,7 @@ - + @@ -10914,7 +10914,7 @@ - + @@ -10922,7 +10922,7 @@ - + @@ -10938,7 +10938,7 @@ - + @@ -10948,7 +10948,7 @@ - + @@ -10966,113 +10966,113 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -11132,145 +11132,145 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -11278,13 +11278,13 @@ - + - + @@ -11348,25 +11348,25 @@ - + - + - + - + @@ -11382,29 +11382,29 @@ - + - + - + - + - + @@ -11430,7 +11430,7 @@ - + @@ -11440,79 +11440,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -11540,7 +11540,7 @@ - + @@ -11548,7 +11548,7 @@ - + @@ -11556,7 +11556,7 @@ - + @@ -11564,7 +11564,7 @@ - + @@ -11580,31 +11580,31 @@ - + - + - + - + - + @@ -11614,17 +11614,17 @@ - + - + - + @@ -11632,7 +11632,7 @@ - + @@ -11640,7 +11640,7 @@ - + @@ -11648,7 +11648,7 @@ - + @@ -11656,7 +11656,7 @@ - + @@ -11668,7 +11668,7 @@ - + @@ -11682,7 +11682,7 @@ - + @@ -11690,7 +11690,7 @@ - + @@ -11700,7 +11700,7 @@ - + @@ -11708,7 +11708,7 @@ - + @@ -11716,7 +11716,7 @@ - + @@ -11724,7 +11724,7 @@ - + @@ -11732,7 +11732,7 @@ - + @@ -11740,7 +11740,7 @@ - + @@ -11748,7 +11748,7 @@ - + @@ -11756,7 +11756,7 @@ - + @@ -11764,7 +11764,7 @@ - + @@ -11772,7 +11772,7 @@ - + @@ -11780,7 +11780,7 @@ - + @@ -11788,7 +11788,7 @@ - + @@ -11796,7 +11796,7 @@ - + @@ -11804,7 +11804,7 @@ - + @@ -11812,25 +11812,25 @@ - + - + - + - + @@ -11840,7 +11840,7 @@ - + @@ -11852,13 +11852,13 @@ - + - + @@ -11866,91 +11866,91 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -12004,7 +12004,7 @@ - + @@ -12012,7 +12012,7 @@ - + @@ -12026,7 +12026,7 @@ - + @@ -12044,37 +12044,37 @@ - + - + - + - + - + - + @@ -12084,7 +12084,7 @@ - + @@ -12096,63 +12096,63 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -12206,7 +12206,7 @@ - + @@ -12214,19 +12214,19 @@ - + - + - + @@ -12242,11 +12242,11 @@ - + - + @@ -12270,13 +12270,13 @@ - + - + @@ -12284,25 +12284,25 @@ - + - + - + - + @@ -12318,13 +12318,13 @@ - + - + @@ -12340,25 +12340,25 @@ - + - + - + - + @@ -12384,55 +12384,55 @@ - + - + - + - + - + - + - + - + - + @@ -12440,13 +12440,13 @@ - + - + @@ -12466,13 +12466,13 @@ - + - + @@ -12508,13 +12508,13 @@ - + - + @@ -12522,7 +12522,7 @@ - + @@ -12530,7 +12530,7 @@ - + @@ -12538,7 +12538,7 @@ - + @@ -12546,13 +12546,13 @@ - + - + @@ -12560,7 +12560,7 @@ - + @@ -12568,7 +12568,7 @@ - + @@ -12576,7 +12576,7 @@ - + @@ -12584,7 +12584,7 @@ - + @@ -12592,11 +12592,11 @@ - + - + @@ -12604,7 +12604,7 @@ - + @@ -12612,7 +12612,7 @@ - + @@ -12620,7 +12620,7 @@ - + @@ -12628,7 +12628,7 @@ - + @@ -12658,25 +12658,25 @@ - + - + - + - + @@ -12692,7 +12692,7 @@ - + @@ -12700,7 +12700,7 @@ - + @@ -12708,25 +12708,25 @@ - + - + - + - + @@ -12742,37 +12742,37 @@ - + - + - + - + - + - + @@ -12792,7 +12792,7 @@ - + @@ -12800,7 +12800,7 @@ - + @@ -12834,31 +12834,31 @@ - + - + - + - + - + @@ -12868,7 +12868,7 @@ - + @@ -12876,7 +12876,7 @@ - + @@ -12884,7 +12884,7 @@ - + @@ -12892,13 +12892,13 @@ - + - + @@ -12936,63 +12936,63 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -13008,13 +13008,13 @@ - + - + @@ -13030,37 +13030,37 @@ - + - + - + - + - + - + @@ -13086,121 +13086,121 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -13226,25 +13226,25 @@ - + - + - + - + @@ -13258,37 +13258,37 @@ - + - + - + - + - + - + @@ -13304,7 +13304,7 @@ - + @@ -13312,7 +13312,7 @@ - + @@ -13320,7 +13320,7 @@ - + @@ -13328,7 +13328,7 @@ - + @@ -13346,7 +13346,7 @@ - + @@ -13356,25 +13356,25 @@ - + - + - + - + @@ -13388,117 +13388,117 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -13514,7 +13514,7 @@ - + @@ -13524,7 +13524,7 @@ - + @@ -13532,7 +13532,7 @@ - + @@ -13540,7 +13540,7 @@ - + @@ -13548,25 +13548,25 @@ - + - + - + - + @@ -13594,73 +13594,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -13676,31 +13676,31 @@ - + - + - + - + - + @@ -13708,7 +13708,7 @@ - + @@ -13726,19 +13726,19 @@ - + - + - + @@ -13746,7 +13746,7 @@ - + @@ -13754,7 +13754,7 @@ - + @@ -13762,7 +13762,7 @@ - + @@ -13770,13 +13770,13 @@ - + - + @@ -13792,87 +13792,87 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -13880,7 +13880,7 @@ - + @@ -13894,7 +13894,7 @@ - + @@ -13904,19 +13904,19 @@ - + - + - + @@ -13930,49 +13930,49 @@ - + - + - + - + - + - + - + - + @@ -13980,7 +13980,7 @@ - + @@ -13988,7 +13988,7 @@ - + @@ -13996,7 +13996,7 @@ - + @@ -14032,31 +14032,31 @@ - + - + - + - + - + @@ -14064,65 +14064,65 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -14134,43 +14134,43 @@ - + - + - + - + - + - + - + @@ -14184,31 +14184,31 @@ - + - + - + - + - + - + @@ -14216,7 +14216,7 @@ - + @@ -14228,19 +14228,19 @@ - + - + - + @@ -14270,7 +14270,7 @@ - + @@ -14284,7 +14284,7 @@ - + @@ -14292,31 +14292,31 @@ - + - + - + - + - + @@ -14324,7 +14324,7 @@ - + @@ -14332,37 +14332,37 @@ - + - + - + - + - + - + @@ -14406,73 +14406,73 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -14488,25 +14488,25 @@ - + - + - + - + @@ -14522,37 +14522,37 @@ - + - + - + - + - + - + @@ -14568,7 +14568,7 @@ - + @@ -14578,7 +14578,7 @@ - + @@ -14588,7 +14588,7 @@ - + @@ -14598,7 +14598,7 @@ - + @@ -14606,7 +14606,7 @@ - + @@ -14614,7 +14614,7 @@ - + @@ -14624,7 +14624,7 @@ - + @@ -14634,7 +14634,7 @@ - + @@ -14644,7 +14644,7 @@ - + @@ -14652,7 +14652,7 @@ - + @@ -14660,7 +14660,7 @@ - + @@ -14670,7 +14670,7 @@ - + @@ -14680,7 +14680,7 @@ - + @@ -14690,7 +14690,7 @@ - + @@ -14698,7 +14698,7 @@ - + @@ -14706,7 +14706,7 @@ - + @@ -14716,7 +14716,7 @@ - + @@ -14726,7 +14726,7 @@ - + @@ -14736,7 +14736,7 @@ - + @@ -14744,7 +14744,7 @@ - + @@ -14752,7 +14752,7 @@ - + @@ -14762,7 +14762,7 @@ - + @@ -14772,7 +14772,7 @@ - + @@ -14782,7 +14782,7 @@ - + @@ -14790,7 +14790,7 @@ - + @@ -14798,7 +14798,7 @@ - + @@ -14806,7 +14806,7 @@ - + @@ -14820,67 +14820,67 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -14894,7 +14894,7 @@ - + @@ -14904,7 +14904,7 @@ - + @@ -14914,7 +14914,7 @@ - + @@ -14924,7 +14924,7 @@ - + @@ -14940,13 +14940,13 @@ - + - + @@ -14954,7 +14954,7 @@ - + @@ -14962,7 +14962,7 @@ - + @@ -14970,7 +14970,7 @@ - + @@ -14978,7 +14978,7 @@ - + @@ -14986,7 +14986,7 @@ - + @@ -14994,7 +14994,7 @@ - + @@ -15002,7 +15002,7 @@ - + @@ -15010,7 +15010,7 @@ - + @@ -15018,7 +15018,7 @@ - + @@ -15026,23 +15026,23 @@ - + - + - + - + @@ -15050,7 +15050,7 @@ - + @@ -15067,51 +15067,51 @@ - + - + - + - + - + - + - + - + - + @@ -15133,19 +15133,19 @@ - + - + - + @@ -15153,7 +15153,7 @@ - + @@ -15161,13 +15161,13 @@ - + - + @@ -15193,11 +15193,11 @@ - + - + @@ -15205,13 +15205,13 @@ - + - + @@ -15219,7 +15219,7 @@ - + @@ -15227,7 +15227,7 @@ - + @@ -15235,13 +15235,13 @@ - + - + @@ -15249,61 +15249,61 @@ - + - + - + - + - + - + - + - + - + - + @@ -15313,23 +15313,23 @@ - + - + - + - + @@ -15337,7 +15337,7 @@ - + @@ -15345,7 +15345,7 @@ - + @@ -15411,7 +15411,7 @@ - + @@ -15419,7 +15419,7 @@ - + @@ -15427,7 +15427,7 @@ - + @@ -15435,7 +15435,7 @@ - + @@ -15443,7 +15443,7 @@ - + @@ -15451,7 +15451,7 @@ - + @@ -15459,7 +15459,7 @@ - + @@ -15467,7 +15467,7 @@ - + @@ -15475,7 +15475,7 @@ - + @@ -15483,7 +15483,7 @@ - + @@ -15491,7 +15491,7 @@ - + @@ -15499,7 +15499,7 @@ - + @@ -15507,7 +15507,7 @@ - + @@ -15515,7 +15515,7 @@ - + @@ -15523,7 +15523,7 @@ - + @@ -15537,7 +15537,7 @@ - + @@ -15545,7 +15545,7 @@ - + @@ -15553,67 +15553,67 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -15621,7 +15621,7 @@ - + @@ -15629,7 +15629,7 @@ - + @@ -15637,19 +15637,19 @@ - + - + - + @@ -15657,7 +15657,7 @@ - + @@ -15665,7 +15665,7 @@ - + @@ -15673,13 +15673,13 @@ - + - + @@ -15687,13 +15687,13 @@ - + - + @@ -15701,7 +15701,7 @@ - + @@ -15711,7 +15711,7 @@ - + @@ -15719,7 +15719,7 @@ - + @@ -15729,7 +15729,7 @@ - + @@ -15737,7 +15737,7 @@ - + @@ -15745,7 +15745,7 @@ - + @@ -15823,99 +15823,99 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -15931,19 +15931,19 @@ - + - + - + @@ -15969,37 +15969,37 @@ - + - + - + - + - + - + @@ -16015,7 +16015,7 @@ - + @@ -16031,13 +16031,13 @@ - + - + @@ -16047,7 +16047,7 @@ - + @@ -16055,7 +16055,7 @@ - + @@ -16063,7 +16063,7 @@ - + @@ -16071,7 +16071,7 @@ - + @@ -16079,7 +16079,7 @@ - + @@ -16087,7 +16087,7 @@ - + @@ -16095,7 +16095,7 @@ - + @@ -16103,7 +16103,7 @@ - + @@ -16111,7 +16111,7 @@ - + @@ -16119,7 +16119,7 @@ - + @@ -16127,7 +16127,7 @@ - + @@ -16135,7 +16135,7 @@ - + @@ -16145,7 +16145,7 @@ - + @@ -16153,7 +16153,7 @@ - + @@ -16161,7 +16161,7 @@ - + @@ -16169,7 +16169,7 @@ - + @@ -16177,13 +16177,13 @@ - + - + @@ -16191,7 +16191,7 @@ - + @@ -16199,7 +16199,7 @@ - + @@ -16209,7 +16209,7 @@ - + @@ -16217,7 +16217,7 @@ - + @@ -16227,7 +16227,7 @@ - + @@ -16237,7 +16237,7 @@ - + @@ -16245,7 +16245,7 @@ - + @@ -16253,7 +16253,7 @@ - + @@ -16261,7 +16261,7 @@ - + @@ -16269,7 +16269,7 @@ - + @@ -16279,7 +16279,7 @@ - + @@ -16287,7 +16287,7 @@ - + @@ -16297,7 +16297,7 @@ - + @@ -16307,7 +16307,7 @@ - + @@ -16315,7 +16315,7 @@ - + @@ -16323,7 +16323,7 @@ - + @@ -16333,7 +16333,7 @@ - + @@ -16343,7 +16343,7 @@ - + @@ -16351,7 +16351,7 @@ - + @@ -16359,13 +16359,13 @@ - + - + @@ -16379,7 +16379,7 @@ - + @@ -16393,7 +16393,7 @@ - + @@ -16403,7 +16403,7 @@ - + @@ -16415,7 +16415,7 @@ - + @@ -16425,7 +16425,7 @@ - + @@ -16435,7 +16435,7 @@ - + @@ -16445,7 +16445,7 @@ - + @@ -16455,7 +16455,7 @@ - + @@ -16465,7 +16465,7 @@ - + @@ -16473,7 +16473,7 @@ - + @@ -16481,13 +16481,13 @@ - + - + @@ -16495,7 +16495,7 @@ - + @@ -16503,7 +16503,7 @@ - + @@ -16513,7 +16513,7 @@ - + @@ -16523,7 +16523,7 @@ - + @@ -16531,7 +16531,7 @@ - + @@ -16541,7 +16541,7 @@ - + @@ -16551,7 +16551,7 @@ - + @@ -16561,13 +16561,13 @@ - + - + @@ -16577,19 +16577,19 @@ - + - + - + @@ -16597,7 +16597,7 @@ - + @@ -16605,7 +16605,7 @@ - + @@ -16613,7 +16613,7 @@ - + @@ -16621,7 +16621,7 @@ - + @@ -16629,7 +16629,7 @@ - + @@ -16637,7 +16637,7 @@ - + @@ -16647,7 +16647,7 @@ - + @@ -16657,7 +16657,7 @@ - + @@ -16667,7 +16667,7 @@ - + @@ -16677,7 +16677,7 @@ - + @@ -16685,7 +16685,7 @@ - + @@ -16693,7 +16693,7 @@ - + @@ -16703,7 +16703,7 @@ - + @@ -16713,7 +16713,7 @@ - + @@ -16723,7 +16723,7 @@ - + @@ -16733,7 +16733,7 @@ - + @@ -16741,7 +16741,7 @@ - + @@ -16749,7 +16749,7 @@ - + @@ -16759,7 +16759,7 @@ - + @@ -16769,7 +16769,7 @@ - + @@ -16779,7 +16779,7 @@ - + @@ -16789,7 +16789,7 @@ - + @@ -16799,7 +16799,7 @@ - + @@ -16807,7 +16807,7 @@ - + @@ -16815,7 +16815,7 @@ - + @@ -16823,7 +16823,7 @@ - + @@ -16831,7 +16831,7 @@ - + @@ -16841,7 +16841,7 @@ - + @@ -16851,7 +16851,7 @@ - + @@ -16859,7 +16859,7 @@ - + @@ -16867,7 +16867,7 @@ - + @@ -16875,7 +16875,7 @@ - + @@ -16883,7 +16883,7 @@ - + @@ -16891,7 +16891,7 @@ - + @@ -16899,7 +16899,7 @@ - + @@ -16909,7 +16909,7 @@ - + @@ -16919,13 +16919,13 @@ - + - + @@ -16933,7 +16933,7 @@ - + @@ -16941,7 +16941,7 @@ - + @@ -16951,7 +16951,7 @@ - + @@ -16961,13 +16961,13 @@ - + - + @@ -16975,7 +16975,7 @@ - + @@ -16983,13 +16983,13 @@ - + - + @@ -16997,7 +16997,7 @@ - + @@ -17005,7 +17005,7 @@ - + @@ -17013,7 +17013,7 @@ - + @@ -17021,7 +17021,7 @@ - + @@ -17029,7 +17029,7 @@ - + @@ -17037,7 +17037,7 @@ - + @@ -17045,7 +17045,7 @@ - + @@ -17053,13 +17053,13 @@ - + - + @@ -17071,7 +17071,7 @@ - + @@ -17083,7 +17083,7 @@ - + @@ -17091,13 +17091,13 @@ - + - + @@ -17105,7 +17105,7 @@ - + @@ -17113,7 +17113,7 @@ - + @@ -17121,7 +17121,7 @@ - + @@ -17129,7 +17129,7 @@ - + @@ -17137,7 +17137,7 @@ - + @@ -17145,7 +17145,7 @@ - + @@ -17153,13 +17153,13 @@ - + - + @@ -17167,7 +17167,7 @@ - + @@ -17175,7 +17175,7 @@ - + @@ -17185,7 +17185,7 @@ - + @@ -17195,7 +17195,7 @@ - + @@ -17205,7 +17205,7 @@ - + @@ -17215,7 +17215,7 @@ - + @@ -17227,13 +17227,13 @@ - + - + @@ -17241,7 +17241,7 @@ - + @@ -17249,7 +17249,7 @@ - + @@ -17257,7 +17257,7 @@ - + @@ -17265,7 +17265,7 @@ - + @@ -17273,7 +17273,7 @@ - + @@ -17281,7 +17281,7 @@ - + @@ -17289,7 +17289,7 @@ - + @@ -17297,7 +17297,7 @@ - + @@ -17305,7 +17305,7 @@ - + @@ -17313,7 +17313,7 @@ - + @@ -17321,7 +17321,7 @@ - + @@ -17329,7 +17329,7 @@ - + @@ -17339,7 +17339,7 @@ - + @@ -17351,7 +17351,7 @@ - + @@ -17363,7 +17363,7 @@ - + @@ -17371,7 +17371,7 @@ - + @@ -17379,7 +17379,7 @@ - + @@ -17387,7 +17387,7 @@ - + @@ -17395,19 +17395,19 @@ - + - + - + @@ -17415,7 +17415,7 @@ - + @@ -17423,7 +17423,7 @@ - + @@ -17431,7 +17431,7 @@ - + @@ -17441,7 +17441,7 @@ - + @@ -17449,7 +17449,7 @@ - + @@ -17457,7 +17457,7 @@ - + @@ -17467,7 +17467,7 @@ - + @@ -17475,7 +17475,7 @@ - + @@ -17485,7 +17485,7 @@ - + @@ -17499,7 +17499,7 @@ - + @@ -17509,7 +17509,7 @@ - + @@ -17523,7 +17523,7 @@ - + @@ -17537,7 +17537,7 @@ - + @@ -17551,7 +17551,7 @@ - + @@ -17563,7 +17563,7 @@ - + @@ -17573,19 +17573,19 @@ - + - + - + @@ -17593,7 +17593,7 @@ - + @@ -17603,7 +17603,7 @@ - + @@ -17611,7 +17611,7 @@ - + @@ -17619,7 +17619,7 @@ - + @@ -17631,7 +17631,7 @@ - + @@ -17639,7 +17639,7 @@ - + @@ -17887,19 +17887,19 @@ - + - + - + @@ -17915,19 +17915,19 @@ - + - + - +