Age | Commit message (Collapse) | Author |
|
|
|
Resets the "Child Process Connected" when the child process is no longer
connected.
|
|
|
|
|
|
This commit makes operator[] on Vector const and adds a write proxy to it. From
now on writes to Vectors need to happen through the .write proxy. So for
instance:
Vector<int> vec;
vec.push_back(10);
std::cout << vec[0] << std::endl;
vec.write[0] = 20;
Failing to use the .write proxy will cause a compilation error.
In addition COWable datatypes can now embed a CowData pointer to their data.
This means that String, CharString, and VMap no longer use or derive from
Vector.
_ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug
builds. This is a lot faster for Vector in the editor and while running tests.
The reason why this difference used to exist is because force-inlined methods
used to give a bad debugging experience. After extensive testing with modern
compilers this is no longer the case.
|
|
exiting game - Fixes #20075
|
|
Autowrap to expand to up to 3 lines + display full error in tooltip.
|
|
-Changed UI resizing code, gained huge amount of speed.
-Reorganized timer sync to clean up behavior (sorry forgot commit this before)
-
|
|
Save runtime node as scene from remote scene tree.
|
|
Fixes most current reports on Coverity Scan of uninitialized scalar
variable (CWE-457): https://cwe.mitre.org/data/definitions/457.html
These happen most of the time (in our code) when instanciating structs
without a constructor (or with an incomplete one), and later returning
the instance. This is sometimes intended though, as some parameters are
only used in some situations and should not be double-initialized for
performance reasons (e.g. `constant` in ShaderLanguage::Token).
|
|
|
|
do not show line number and/or file if not defined
|
|
|
|
|
|
includes new enum, MeshInstance2D, Skeleton2D, Cut, Copy and Paste icons.
|
|
stopped.
Clear debugger stack inspector if the debugger is stopped when selected stack changed.
|
|
|
|
|
|
|
|
|
|
|
|
Fix Godot getting swamped by debug events
|
|
|
|
Using `misc/scripts/fix_headers.py` on all Godot files.
Some missing header guards were added, and the header inclusion order
was fixed in the Bullet module.
|
|
|
|
A few small Debugger->Errors tab enhancements:
|
|
Happy new year to the wonderful Godot community!
|
|
1. Added "Clear" button to clear list.
2. Errors list now populated with newest items comes first, so no need to scroll everytime.
3. Added PopupMenu to errors list with ability to quickly Copy error text & details.
|
|
The performance cost is too high for now, so it should be opt-in for users
who really need it all the time. Fixes #13833.
|
|
|
|
|
|
Rename editor setting scene_tree_refresh_interval to remote_scene_tree_refresh_interval.
|
|
|
|
Ignore all script constants in the global section of the breakpoint stack.
Check property size before send to avoid too large of data be sent.
Fix crash while clear the remote objects from the debugger.
|
|
Remove remote inspector panel
|
|
so that users don't have to hold CTRL to select multiple entries.
|
|
|
|
|
|
Renamed fixed_process to physics_process
|
|
|
|
- make it work in combination with the border for tabs
- fixed updating when changing theme
|
|
Implements set_margins_preset(...)
|
|
|
|
set_anchors_and_margins_preset(PRESET_WIDE)
|
|
|
|
|
|
|
|
Add a hint that helps user discover monitor graph
Fix last row drawn outside when only one graph is in that row
|
|
Currently we rely on some undefined behavior when Object->cast_to() gets
called with a Null pointer. This used to work fine with GCC < 6 but
newer versions of GCC remove all codepaths in which the this pointer is
Null. However, the non-static cast_to() was supposed to be null safe.
This patch makes cast_to() Null safe and removes the now redundant Null
checks where they existed.
It is explained in this article: https://www.viva64.com/en/b/0226/
|
|
|