| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
Changed type to avoid casting.
|
| |\
| |
| | |
X11: Turn warning about not finding cursor theme into verbose output.
|
| |/
|
|
|
|
| |
Failing to get the cursor theme should not cause any issues since we're then using the default one anyway.
So I removed the warning and made it a verbose-only print instead, as people tend to mistake it for a real error..
(pretty much like `iCCP: known incorrect sRGB profile` :P)
|
| |\
| |
| | |
NaturalSort: strings start with . treated differently
|
| | | |
|
| |/ |
|
| |
|
|
|
|
| |
-Added default environment editor setting
-Added environment created by default in new projects
-Removed default light and ambient from spatial editor, to make the editor more PBR compliant
|
| |\
| |
| | |
Use new icons everywhere
|
| | |
| |
| |
| | |
Closes #8879
|
| | | |
|
| |/ |
|
| |\
| |
| | |
Fixing typo for rect_position in _change_notify call for Control
|
| | | |
|
| |\ \
| | |
| | | |
Fix moving path controls in edit mode.
|
| | | |
| | |
| | |
| | |
| | |
| | | |
The previous code would never trigger the subsequent conditionals (for
moving the control points) when in EDIT_MODE because the point
conditionals were nested instead of being a conjunction.
|
| |\ \ \
| | | |
| | | | |
CreateDialog: fix activating recent item creates node selected in search result
|
| | |/ / |
|
| |\ \ \
| |/ /
|/| | |
CreateDialog: select root if search exactly match
|
| |/ / |
|
| |\ \
| |/
|/| |
OpenSSL: Cleanup and document update process from upstream sources + 1.0.2l
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
This avoids namespace collisions with things such as X509_NAME.
Also force include of necessary definitions in `crypto/o_str.c`
which seem missing on MSVC (but work on MinGW).
|
| | |
| |
| |
| |
| | |
Our necessary custom changes will be reapplied in later commits for clarity,
and saved as patches for future updates.
|
| |/ |
|
| | |
|
| |
|
|
|
| |
MinGW-w64 is at version 2.0.1 on our current Travis CI toolchain, and seems
not to like fopen_s.
|
| |
|
|
| |
(cherry picked from commit cd778e00dc5362d00d4760c79fc301951f6f9b75)
|
| |
|
|
|
|
| |
Remove the extra `set_val` action after the proper one, so the right scroll value won’t get overrided any more.
(cherry picked from commit 064dce7a4c4bdca13b5358ccc9f9829f0e1068fb)
|
| |\
| |
| | |
Fix incorrect input event reference in editor_profiler.cpp
|
| | | |
|
| |\ \
| | |
| | | |
Fix incorrect input event reference in animation_editor.cpp
|
| | |/ |
|
| |\ \
| | |
| | | |
GDScript: Use "is" keyword for type checking.
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Replaces the `extends` keyword with `is` in the context of testing for type compatibility.
`extends` is still used for declaring class inheritance.
Example:
```gdscript
extends Node2D
func _input(ev):
if ev is InputEventKey:
print("yay, key event")
```
|
| |\ \
| | |
| | | |
Rework warning levels
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Now you have: extra, all (the default), moderate, no.
The old 'yes' option is still supported, but a warning will be printed and 'all' will be assumed.
The different options will translate to the following:
MSVC:
extra -> /Wall (implies /W4)
all -> /W3 + disable non-essential (*)
moderate -> /W2 + disable non-essential (*)
no -> /w
GCC/Clang:
extra -> -Wall -Wextra
all -> -Wall
moderate -> -Wall -Wno-unused
no -> -w
* = Truncations, narrowing conversions...: /wd4267 /wd4244 /wd4305 /wd4800
|
| |\ \ \
| | | |
| | | | |
Fix InputEvent actions.
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
The `InputEvent::is_action(pressed|released)` methods weren't implemented yet.
Also fixed a typo in `InputDefault` that prevented `Input.is_action(pressed|released)` from working.
|
| |\ \ \ \
| | | | |
| | | | | |
Make OS.get_locale() returns same value
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
Added color presets for easy theme switching
|
| | |/ / / /
| | | | |
| | | | |
| | | | | |
Also tweaked the default colors (darker and less satured)
|
| |\ \ \ \ \
| |_|_|_|/
|/| | | | |
Added an help menu
|
| | |/ / /
| | | |
| | | |
| | | |
| | | | |
Also renamed the "tutorials" button in the script editor to be consistent with the help menu entry.
Fixed #8921
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
-Improvements to texture importer
-Proper detection of S3TC compression modes, and added all modes to Image
-Fixes to non-power of 2 compressed textures, which should all be supported by GLES3
|
| |\ \ \ \
| |_|/ /
|/| | | |
Allow custom CCFLAGS for iPhone builds
|
| |/ / /
| | |
| | |
| | | |
plus disable exceptions by default
|
| |\ \ \
| | | |
| | | | |
Fix audio can't resume in iOS platform
|
| | |/ / |
|