| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Remove ECMAScript 6 "arrow operator".
|
| |
| |
| |
| |
| | |
We don't need it, it's not well supported by compilers, and it was a
mistake in the first place.
|
|\ \
| |/
|/| |
Fix uninstallation of mono templates directory
|
| |
| |
| |
| |
| |
| | |
The previous code didn't take into account that templates directories
can have subdirectories like the mono templates have.
Also fix an unclosed dir handle.
|
|\ \
| | |
| | | |
Fix rendering tooltip
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix incorrect text rendering with smaller display scale
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
Display error messages in console when vformat is called
|
| | | |
|
|\ \ \
| | | |
| | | | |
[macOS ] Project manager dock menu improvements.
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Initialise VMap and HashMap values to the default when they are created.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Assigns a default value in VMap and HashMap when new keys are created using
the array operator so they are the same as the other Map classes.
The non const version of the array operator can be used for both assigning a
value and retrieving a writeable version. In the Map template classes the
assign version is being used to create new keys, but sometimes not assigning
a value when retrieving a writeable version.
This does not address the problem that the default value may not be the
correct one, and it does not address the problem that new keys probably
should not be created when the array operator is used. These problems will
be addressed in a separate commit.
|
|\ \ \
| | | |
| | | | |
Refactor VideoPlayer and VideoStream
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
VideoStream:
- Fix const correctenss
VideoPlayer:
- Remove unused member variable last_frame
- Move _mix_audios function definition to source file
- Fix function parameter naming to match p_ convention
- Fix const correctness
- Add null checking
|
|\ \ \
| |/ /
|/| | |
Travis: Update Android NDK to r20
|
|/ /
| |
| |
| | |
Drop unused and outdated OSX setup.
|
|\ \
| | |
| | | |
Resize custom class icon
|
| | | |
|
|\ \ \
| | | |
| | | | |
[Mono] Change Plane intersect methods to return nullable Vector3
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
Allows change Sprite3D scale if Billboard mode is enabled
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fixed variables with built-in resource in remote inspector
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Now loading the base resource first in ScriptEditorDebugger, the same way it's done in ScriptEditorPlugin.
Fixes #33013
|
|\ \ \ \
| | | | |
| | | | | |
Fix layout saving error
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
As a result of commit b49226e085 FileAccess::open no longer returns ERR_CANT_OPEN if the file cannot be found/opened.
Instead check against ERR_FILE_NOT_FOUND or ERR_FILE_CANT_OPEN.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Implement HTTP server for HTML5 "run" export
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Since most browsers no longer allow making async requests from a page
loaded from `file://`, we now need a proper HTTP server to load the
exported HTML5 game.
This should also allow us to get the debugger to work over a WebSocket
connection.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Convert all get_device* methods to get_option* and normalize their usage
as icon, label, tooltip.
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
EditorNode was not correctly setting the class memeber when creating the
theme, using a local variable instead.
Theme is now created before registering exporters (as they might need it).
|
|\ \ \ \
| |/ / /
|/| | | |
Theme code refactoring
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- Move GDScript-exposed function definitions from header to source file
- Add null check to functions taking list pointers as parameters
- Call clear() in copy_theme() if null is passed
|
|\ \ \ \
| | | | |
| | | | | |
Add request defined permissions in AndroidManifest.xml
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixes spinbox not releasing focus on value change
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Trying to release focus of the spinbox's lineedit would not work when done in the "value_changed" callback. The reason is because the "value_change" signal is called first, then the "get_focus" method is called next. This causes the spinbox to get_focus after you try to release focus within the "value_changed" callback.
To resolve this, spinbox should get focus first and then emit "value_changed".
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Auto-increment frame_coords when keying
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Add separate menu entries for extending and replacing scripts
|
| | |_|/ / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Shadows Now Properly Translate by RichTextEffect Offset.
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Bugfix 32981.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Mention body length getter caveats in HTTPClient and HTTPRequest
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Draw arcs to indicate angles being measured by ruler
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Changed `set_text` to place caret at start of the text.
|
| | | | | | | | | |
|