Rémi Verschelde
c7dd58a4d5
Merge pull request #23981 from khairul169/fix_gles2_clearcolor
...
GLES2: Set clear color based on env background mode when rendering scene and fix viewport transparent bg flag
2018-11-28 15:10:28 +01:00
Guillaume Laforte
fdb1fe6b92
Changes the check for a singular matrix to use the scale vector.
...
The check for the determinant does not have enough precision when used with a 0.01 uniform scale.
2018-11-28 08:56:01 -05:00
Erik
78c9677816
GDscript function str2var now returns input string on invalid input
...
str2var used to raise a blocking error when invalid input was passed. Now it logs an error message and
returns the input string. This solution was proposed in #13021 .
Closes #11457 and #13021 .
2018-11-28 14:47:40 +01:00
Rémi Verschelde
06db076fc6
Merge pull request #24025 from aaronfranke/analyzer-errors
...
Fix many errors found by PVS-Studio
2018-11-28 14:08:50 +01:00
Juan Linietsky
39028cc161
Improved the mouse focus system (mouse keeps focus on a control while buttons are pressed). Fixes #19154 and likely many others.
...
WARNING: Test well in every OS, if mouse wheel events are not properly sent as pressed+unpressed pair, it will fail and break (and the OS needs to be fixed). Only tested on X11 so far.
2018-11-28 09:33:13 -03:00
Rémi Verschelde
05755618c5
Merge pull request #23993 from Kanabenki/autocomplete-ignore-case
...
Add suggestions ignoring case at the end of the code autocomplete
2018-11-28 13:26:28 +01:00
Juan Linietsky
ab9bbce311
Disable progress dialog on export from command line, stab at fixing #24031
2018-11-28 08:46:26 -03:00
Rémi Verschelde
b47d4e1ba5
Merge pull request #24017 from eska014/rt-squish
...
Enable squish decompression in runtime builds
2018-11-28 12:40:43 +01:00
Leon Krause
c4784426bd
Merge pull request #22857 from marcelofg55/jsmic
...
Implemented audio input support for JavaScript audio driver
2018-11-28 12:34:08 +01:00
Leon Krause
93bed8cf57
Check for WebGL RGTC extension
2018-11-28 11:12:26 +01:00
Leon Krause
32751e09ac
Build squish decompression in runtime
2018-11-28 11:11:58 +01:00
Aaron Franke
cb01268562
Fix many errors found by PVS-Studio
...
Fix errors 2, 3, 4, 6, 8, 9, 11, 12, 13, 14, and 15.
2018-11-28 05:03:24 -05:00
Rémi Verschelde
aa08ef2bed
Merge pull request #23924 from Kanabenki/font-size-update
...
Display font size with zoom in code editor and refresh on settings change
2018-11-28 10:39:56 +01:00
Rémi Verschelde
6612d2cb2b
Merge pull request #23942 from buresu/fix-osx-build-error
...
[macOS] Fixed a problem sdk path could not be detected
2018-11-28 10:36:42 +01:00
Rémi Verschelde
78cdbc54b0
Merge pull request #23994 from AndreaCatania/prec
...
Added function to control 6DOF precision
2018-11-28 10:30:47 +01:00
Rémi Verschelde
3f41bd1522
Merge pull request #23996 from Windfisch/bulletfix
...
Add more max-checking to physics queries
2018-11-28 10:30:09 +01:00
Rémi Verschelde
62f25142ee
Merge pull request #24011 from Xrayez/fix-23031
...
Init `ignore_camera_zoom` property in parallax background constructor
2018-11-28 10:25:51 +01:00
Rémi Verschelde
405d055768
Merge pull request #24018 from bbeco/fix_filename_check
...
uwp export: fix existing template check
2018-11-28 10:24:52 +01:00
Rémi Verschelde
dd06f6ee70
Fix style issues and signature mismatch
2018-11-28 10:21:07 +01:00
Rémi Verschelde
0307f2885c
Merge pull request #24024 from DualMatrix/queue
...
Made it possible to read AnimationPlayer queue from GDscript
2018-11-28 09:56:36 +01:00
Juan Linietsky
af8d941c55
Added luminance capping to avoid glitches on small dots. closes #17996
2018-11-28 01:22:20 -03:00
DualMatrix
0cc8a3b9a6
Made it possible to read AnimationPlayer queue from GDscript
2018-11-28 01:43:34 +01:00
Juan Linietsky
b243c26697
Get rid of ancient .theme format for Theme resource. It was not working and can be done the same using .tres format. Closes #19038
2018-11-27 20:42:47 -03:00
Juan Linietsky
3a93499f89
Allow signal connecting even if script is invalid (only when compiled with tools), fixes #17070
2018-11-27 19:55:37 -03:00
Juan Linietsky
616b91b498
Added test to avoid saving cyclic scene instancing, fixes #9686
2018-11-27 18:56:31 -03:00
Juan Linietsky
f2ae14f309
Attempt to avoid breaking people's workflows on the change from 8ba0d513fa
2018-11-27 18:13:36 -03:00
Juan Linietsky
e6bc152de8
NORMALMAP was not working (no normal being used detected), fixes #9263
2018-11-27 18:05:20 -03:00
Rémi Verschelde
6e1255ec53
Merge pull request #23971 from DavidSichma/compressNormal
...
Fix GLES2 Red Green Texture Decompression
2018-11-27 21:37:27 +01:00
David Sichma
555c4bcb19
Fix GLES2 Red Green Texture Decompression
...
Replaced broken decompression code with two calls to DXT5 decompression.
This should fix some issues with normal maps as they usually are stored
as RG Textures and were decompressed incorrectly.
2018-11-27 20:45:28 +01:00
Rémi Verschelde
1b7d0c9343
Merge pull request #24016 from qarmin/change_old_godot_logo_in_UWP
...
Change old Godot logo/splash screen in UWP assets
2018-11-27 20:24:22 +01:00
Andrea Beconcini
11a1624202
uwp export: fix existing template check
2018-11-27 20:20:54 +01:00
qarmin
ee39441cb3
Change old Godot logo/splash screen in UWP assets
2018-11-27 20:09:56 +01:00
Juan Linietsky
2e0a94edc6
Changed theme notifications to work with newly introduced reference counted connections. Closes #21265 , Fixes #6145 .
...
Probably fixes more theme notification related open issues, should check.
2018-11-27 14:34:43 -03:00
Andrii Doroshenko (Xrayez)
86eaded7b4
Init ignore_camera_zoom
property in parallax background constructor
...
The default value for `ignore_camera_zoom` property was initialized by garbage value,
leading to camera's zoom to be ignored even if unset in editor most of the time.
2018-11-27 14:10:19 +02:00
Andrea Catania
a395d809a5
Added function to control 6DOF precision
2018-11-27 07:11:28 +01:00
Marcelo Fernandez
3a702b3ed8
Implemented audio input support for JavaScript audio driver
2018-11-26 19:14:52 -03:00
Rémi Verschelde
c23710adde
Merge pull request #24000 from allkhor/fix_tab_font_3.1
...
Ceil tabs font size
2018-11-26 21:46:48 +01:00
khairul169
797bcfd44d
GLES2: clear color on scene render
2018-11-27 01:47:34 +07:00
allkhor
a04ba76d89
Ceil tabs font size
2018-11-27 00:30:12 +06:00
Florian Jung
e10c3e7ec5
Add more max-checking to physics queries
...
Fixes some out-of-bounds problems when there are more collisions than
have been requested for. This extends what has been done in 444b8471a3
.
Fixes godotengine/godot#23990
2018-11-26 18:15:58 +01:00
Rémi Verschelde
a92e885e55
Merge pull request #23992 from YeldhamDev/editor_help_scroll_value
...
Restore previous scroll position when reopening the search help dialog with a old search
2018-11-26 17:28:33 +01:00
Rémi Verschelde
24c38628b5
i18n: Sync translation template with current source
2018-11-26 17:25:11 +01:00
Rémi Verschelde
f0c7a545db
i18n: Sync translations with Weblate
...
Adds initial translations for Malayalam and Sinhala.
2018-11-26 17:23:42 +01:00
Michael Alexsander Silva Dias
78b9b7c42b
Restore previous scroll position when reopening the search help dialog with a old search
2018-11-26 13:40:59 -02:00
Kanabenki
99ffd748f1
Add suggestions ignoring case at the end of the code autocomplete
2018-11-26 16:36:46 +01:00
Guillaume Laforte
675dc00d04
Generate the tangents without de-indexing and re-indexing the vertices.
...
The support for shape keys / blend shapes depends on a consistent order for the vertices.
Fixes https://github.com/godotengine/godot/issues/19195 .
2018-11-26 10:09:52 -05:00
bruvzg
56b26c4369
Fix macOS icon export (add 1024px PNG icon and 32px/16px RLE icons).
2018-11-26 16:12:36 +02:00
Rémi Verschelde
942855a9ee
Merge pull request #23961 from Faless/lws_poll_all
...
Websocket LWS keep servicing till no CB are left
2018-11-26 11:48:31 +01:00
Naoto Kondo
577e547b6a
[macOS] Fixed a problem sdk path could not be detected
2018-11-26 19:42:17 +09:00
Rémi Verschelde
3e1e508b64
Merge pull request #23962 from Windfisch/arvr_conf_warn
...
Update ARVR{Anchor,Controller}'s configuration warning
2018-11-26 11:35:14 +01:00