| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Remove now unnecessary bindings of signal callbacks in the public API.
There might be some false positives that need rebinding if they were
meant to be public.
No regular expressions were harmed in the making of this commit.
(Nah, just kidding.)
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Renames PackedIntArray to PackedInt32Array.
- Renames PackedFloatArray to PackedFloat32Array.
- Adds PackedInt64Array and PackedFloat64Array.
- Renames Variant::REAL to Variant::FLOAT for consistency.
Packed arrays are for storing large amount of data and creating stuff like
meshes, buffers. textures, etc. Forcing them to be 64 is a huge waste of
memory. That said, many users requested the ability to have 64 bits packed
arrays for their games, so this is just an optional added type.
For Variant, the float datatype is always 64 bits, and exposed as `float`.
We still have `real_t` which is the datatype that can change from 32 to 64
bits depending on a compile flag (not entirely working right now, but that's
the idea). It affects math related datatypes and code only.
Neither Variant nor PackedArray make use of real_t, which is only intended
for math precision, so the term is removed from there to keep only float.
|
|
|
|
|
|
|
|
|
|
| |
This attribute is now part of the standard we target so we no longer
need compiler-specific hacks.
Also enables -Wimplicit-fallthrough for Clang now that we can properly
support it. It's already on by default for GCC's -Wextra.
Fixes new warnings raised by Clang's -Wimplicit-fallthrough.
|
|
|
|
| |
objects and made them default.
|
|
|
|
|
| |
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are
sugar for `Vector<Type>`.
|
| |
|
|
|
|
|
|
|
|
| |
-Texture renamed to Texture2D
-TextureLayered as base now inherits 2Darray, cubemap and cubemap array
-Removed all references to flags in textures (they will go in the shader)
-Texture3D gone for now (will come back later done properly)
-Create base rasterizer for RenderDevice, RasterizerRD
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Happy new year to the wonderful Godot community!
We're starting a new decade with a well-established, non-profit, free
and open source game engine, and tons of further improvements in the
pipeline from hundreds of contributors.
Godot will keep getting better, and we're looking forward to all the
games that the community will keep developing and releasing with it.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* "Add" button text in Groups Editor
* "Receiver Method" in Connect Signal Dialog
* "Play Mode" in Animation State Machine Editor
* "Mesh Library" button text in Mesh Library editor plugin
* Compose Array node button texts in Visual Script
* Various button texts in TileSet Editor
* Various Run Script errors
|
| |
|
|
|
|
|
|
| |
* File type names in file dialogs
* Layout option names
* Visual shader editor UI
|
|
|
| |
When adding a node in the visual script editor while zoomed in, the position of the newly added node would be wrong.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Using codespell 1.16.0.
Method:
```
$ cat > ../godot-word-whitelist.txt << EOF
ang
curvelinear
dof
doubleclick
leapyear
lod
merchantibility
nd
numer
ois
ony
que
seeked
synching
te
uint
unselect
webp
EOF
$ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"
$ git diff // undo unwanted changes
```
|
|\
| |
| | |
Set the properties of a Set node after add_node
|
| | |
|
| |
| |
| | |
Typo found in source string, reported by linux-man on weblate
|
|/ |
|
|
|
|
| |
Closes #32817
|
| |
|
|\
| |
| | |
Fix VS editor's "Create Function" dialog
|
| | |
|
|/
|
|
| |
Adds deconstruct nodes for the built-in types and adds default text to function rename_input_box for the visualscript.
|
|\
| |
| | |
Cleanup VS editor's left menu
|
| | |
|
|/ |
|
|
|
|
| |
Removes the need to have separate graphs per function for the VisualScript Nodes, and refactoring UI and other improvements such as fuzzy search, right click search boxes and in-graph editable nodes
|
|\
| |
| | |
Tool Mode for Visualscript
|
| |
| |
| |
| | |
Add the ability to VisualScript to function in Tool mode aka the Editor itself similar to GDScript or Mono
|
| | |
|
|/
|
|
|
|
|
|
|
| |
In the Visual Script editor, the override icon is not very clear what it's intended purpose is for. Currently, its tooltip just says: "Function:" which is the same tooltip as the "add new function" icon.
To resolve this issue, this PR adds descriptive tooltips to the following icons in the Visual Script editor:
-Override Function
-Add Function
-Add Variable
-Add Signal
|
| |
|
|
|
|
|
| |
This results in slightly smaller binaries (-17 KB for an editor binary)
as no strings need to be allocated.
|
|\
| |
| | |
fixed an issue with double clicking available node in VisualScriptEditor
|
| |
| |
| |
| | |
an available functions
|
| | |
|
|\ \
| | |
| | | |
Changing method signature in other class in not recognized in working…
|
| | |
| | |
| | |
| | | |
in typed GDScript #28685
|
|\ \ \
| |_|/
|/| | |
Automatically add new line to scripts
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Change the call mode to self when adding nodes via the node search
|
| | |/
| |/|
| | |
| | | |
fixes #28614
|
|\ \ \
| | | |
| | | | |
Fix VisualScript Change Base Type title
|
| |/ / |
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
Improve wording of various messages and make casing more consistent
|