Age | Commit message (Collapse) | Author |
|
|
|
|
|
The description is displayed as a tooltip when hovering the project
in the Project Manager. It can span multiple lines.
This partially addresses #8167.
|
|
I also slid in a fix to C++ Vector3 > and >=
|
|
Allow to reserve space for nodes in A* and elements in OAHashMap explicitly.
|
|
* also handle overflow occurring in _get_probe_length
|
|
[macOS] Add ability to open multiple editor instances and global/dock menu access
|
|
Godot doesn't support indexed images anymore (FORMAT_INDEXED),
so those are removed to avoid any confusion.
|
|
multiple editor/project manager instances, recent/favourite project list to project manager dock menu and opened scene list to editor dock menu.
|
|
|
|
Add Vector2/3 sign and posmod functions, axis, docs, misc additions
|
|
Prevent int overflow and underflow
|
|
Previously it was only possible to create custom script templates per
editor instance which could lead to certain name collisions, but now one
can create such templates per project tailored for specific use cases.
The default path to search for custom script templates is defined in
project settings via `editor/script_templates_search_path` setting as
`res://script_templates` path, yet this can be configured per project.
Templates have at most two origins now:
1. Project-specific, defined in `ProjectSettings`, for instance:
- res://script_templates/
2. Editor script templates, for instance:
- %APPDATA%/Godot/script_templates/
As script templates can have the same name over different paths,
the override mechanism was also added, enabling project-specific
templates over the editor ones.
|
|
|
|
This reverts commit e2c3bbabb0a12f58585bb441d91ee8882225b0ee.
This was superseded by #29871 which adds more crypto features with a
dedicated interface.
Since this commit was never in a stable release (merged during 3.2 dev),
we revert it to avoid having to deprecate it in favor of the Crypto API.
See https://github.com/godotengine/godot/pull/31187#issuecomment-523377965
|
|
Support vibration for Android and iOS
|
|
More Crypto, SSL server, crt/key as Resource, HashingContext
|
|
connect_to_stream now accepts optional parameter to specify which
certificates to trust.
Implement accept_stream (SSL server) with key/cert parameters to specify
the RSA key and X509 certificate resources.
|
|
|
|
|
|
|
|
|
|
A* performance improvements, use OAHashMap.
|
|
Setting project metadata doesn't fail when project_metadata.cfg doesn't exist
|
|
|
|
EditorSettings::set_project_metadata: creates project_metadata.cfg if it doesn't exist
EditorPlugin::get_config: removed (not used)
Fixes #31444
|
|
Replace is_zero_approx(A.distance_to(B)) with A==B
|
|
Related to #22988 (Fixes the holes in the shape of
the first comment)
|
|
Crypto classes will be placed in core/crypto.
|
|
Fix hash size in SHA256 signature
Fix source parameter in hash context update function to be const.
Add SHA1 hash context.
|
|
Improve the scene tree signals/groups tooltip
|
|
Also make the docs more consistent, add Axis enum to Vector2, add > and >=. and C# also gets % and an override for vector-vector mod.
|
|
Both methods check against containers using relative paths as index,
so the `res://` part needs to be stripped.
Fixes #26009.
|
|
The tooltip now displays the number of connections and groups
that are assigned to the hovered node.
|
|
The last remaining ERR_EXPLAIN call is in FreeType code and makes sense as is
(conditionally defines the error message).
There are a few ERR_EXPLAINC calls for C-strings where String is not included
which can stay as is to avoid adding additional _MSGC macros just for that.
Part of #31244.
|
|
Condensed some if and ERR statements. Added dots to end of error messages
Couldn't figure out EXPLAINC. These files gave me trouble: core/error_macros.h, core/io/file_access_buffered_fa.h (where is it?),
core/os/memory.cpp,
drivers/png/png_driver_common.cpp,
drivers/xaudio2/audio_driver_xaudio2.cpp (where is it?)
|
|
|
|
Add __atomic_* operators support for atomic operations
|
|
|
|
IAmActuallyCthulhu/pr/remove-redundant-author-comments
Remove redundant author doc comments
|
|
|
|
Fixes issue with debug inspecing of nodes that are not in the scene tree
|
|
|
|
So far we left most temporary files lying around, so this attempts to
fix that.
I added a helper method to DirAccess to factor out the boilerplate of
creating a DirAccess, checking if the file exists, remove it or print
an error on failure.
|
|
Add Basis constants and format Transform constants
|
|
|
|
|
|
|
|
Implement error macros that come with an error message, replacing ERR_EXPLAIN.
|
|
replace ERR_EXPLAIN usage.
|