Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
Expose connection hot zones in `GraphNode`
|
|
cdemirer/fix-script-editor-unexpected-scroll-upon-resize
|
|
|
|
|
|
|
|
|
|
Replace String comparisons with "", String() to is_empty()
|
|
|
|
Also:
- Adds two stress tests to test_string.h
- Changes to .empty() on std::strings
|
|
|
|
|
|
|
|
ScrollContainer's scrollbar visibility is now enum
|
|
|
|
|
|
|
|
|
|
It's a player for `VideoStream` resources, just like `AudioStreamPlayer` is a
player for `AudioStream` resources.
Closes https://github.com/godotengine/godot-proposals/issues/3624.
|
|
KoBeWi/update_minimum_size_changed_to_update_minimum_size
|
|
Co-authored-by: Gil Arasa Verge <gilarasaverge@gmail.com>
Co-authored-by: Tomasz Chabora <kobewi4e@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
We prefer to prevent using chained assignment (`T a = b = c = T();`) as this
can lead to confusing code and subtle bugs.
According to https://en.wikipedia.org/wiki/Assignment_operator_(C%2B%2B), C++
allows any arbitrary return type, so this is standard compliant.
This could be re-assessed if/when we have an actual need for a behavior more
akin to that of the C++ STL, for now this PR simply changes a handful of
cases which were inconsistent with the rest of the codebase (`void` return
type was already the most common case prior to this commit).
|
|
|
|
|
|
Fix nine patch of circular TextureProgressBar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This matches the name of the GDScript function (except it's uppercase
here).
|
|
|
|
|
|
|