summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-22Merge pull request #35452 from nekomatata/tween-start-failRémi Verschelde
Fixed Tween::start() with pending updates
2020-01-22Fixed Tween::start() with pending updatesPouleyKetchoupp
Start was canceled instead of deferred in case of an update in progress. Fixes #35441
2020-01-22Merge pull request #35414 from Ovnuniarchos/AlsaMidiBadPitchBendRémi Verschelde
ALSA MIDI: Pitch bend and System Common messages
2020-01-22Merge pull request #35449 from bojidar-bg/35439-scenetree-settingsRémi Verschelde
Add settings from SceneTree in the documentation
2020-01-22Merge pull request #35406 from lawnjelly/ortho-shadowRémi Verschelde
Replace CameraMatrix::get_viewport_size with get_viewport_half_extents, shadow culling with ortho camera and other affected issues
2020-01-22ALSA MIDI driver:Ovnuniarchos
Pith bend message now has correct size (was 2 bytes instead of 3). Recognized (but not implemented) 0xF? messages. SysEx messages will be reocognized as such, but their contents will be ignored.
2020-01-22Add settings from SceneTree in the documentationBojidar Marinov
Fixes #35439
2020-01-22Merge pull request #35421 from williamd1k0/improve-top-animation-menuRémi Verschelde
Use an icon in the top Animation Key menu
2020-01-22Merge pull request #35338 from rburing/fix_find_focus_neighborRémi Verschelde
Fix Control::_window_find_focus_neighbour
2020-01-22Use an icon in the top Animation Key menuWilliam Tumeo
2020-01-22Merge pull request #35412 from DaividFrank/check_overriding_selfRémi Verschelde
Disabled re-assigning 'self'
2020-01-22Change CameraMatrix::get_viewport_size to get_viewport_half_extentslawnjelly
Fixes #26637. Fixes #19900. The viewport_size returned by get_viewport_size was previously incorrect, being half the correct value. The function is renamed to get_viewport_half_extents, and now returns a Vector2. Code which called this function has also been modified accordingly. This PR also fixes shadow culling when using ortho cameras, because the correct input for CameraMatrix::set_orthogonal should be the full HEIGHT from get_viewport_half_extents, and not half the width. It also fixes state.ubo_data.viewport_size in rasterizer_scene_gles3.cpp to be the width and the height of the viewport in pixels as stated in the documentation, rather than the current value which is half the viewport extents in worldspace, presumed to be a bug.
2020-01-22Merge pull request #35440 from ericrybick/27104-input-buggy-linuxRémi Verschelde
Remove buggy check if key was already released for accumulated input on linux
2020-01-22Merge pull request #35435 from bojidar-bg/34154-project-setting-propertiesRémi Verschelde
Get real default values for project settings in documentation
2020-01-22GDScript: Added checks in assign operations to disable re-assigning 'self'DaividFrank
2020-01-22Merge pull request #35437 from akien-mga/gles3-texture-mag-filter-wrong-valueRémi Verschelde
GLES3: Fix invalid value for GL_TEXTURE_MAG_FILTER parameter
2020-01-22Remove buggy check if key was already released for accumulated inputEric Rybicki
Fixes #27104
2020-01-22GLES3: Fix invalid value for GL_TEXTURE_MAG_FILTER parameterRémi Verschelde
`GL_LINEAR_MIPMAP_LINEAR` can be used for `GL_TEXTURE_MIN_FILTER`, but not for `GL_TEXTURE_MAG_FILTER`. Cf. https://www.khronos.org/opengl/wiki/GLAPI/glTexParameter Fixes #35436.
2020-01-22Get real default values for project settings in documentationBojidar Marinov
Also, ignore custom project settings and values for input/ entries Fixes #34154
2020-01-22Merge pull request #35423 from Faless/fix/object_emit_freeRémi Verschelde
Make sure we know when deleting an emitting object
2020-01-22Make sure we know when deleting an emitting objectFabio Alessandrelli
We used a lock signals in the signal_map while emitting, because it was not allowed to disconnect them while being emitted. We used that lock to check if we where deleting an object during signal emission. Now that we allow to disconnect signals while they are being emitted, if an object first disconnects, then gets deleted we can't know that a signal was being emitted during the destructor. This commit adds a new `_emitting` boolean member to Object to be set while emitting and checked in the destructor, while removing the old signal lock which is now unused.
2020-01-22Merge pull request #35352 from Feniks-Gaming/BetterDictionaryRémi Verschelde
Improve dictionary description
2020-01-22Thread: Fix typo in destructor error messageRémi Verschelde
2020-01-22Merge pull request #35430 from BastiaanOlij/fix_vr_joystick_idRémi Verschelde
Incorrect joystick id was returned on an inactive ARVR controller
2020-01-22Incorrect joystick id was returned on an inactive ARVR controllerBastiaan Olij
2020-01-22Merge pull request #35404 from Calinou/update-changelog-3.2Rémi Verschelde
Update CHANGELOG.md for Godot 3.2
2020-01-22Merge pull request #35389 from clayjohn/DOCS-materialsRémi Verschelde
Finish up docs for materials
2020-01-22Merge pull request #35425 from timothyqiu/assetlib-import-leakRémi Verschelde
Fixes leak when importing zip in AssetLib
2020-01-22Merge pull request #35419 from Calinou/project-manager-loading-placeholderRémi Verschelde
Use a loading placeholder for project icons in the project manager
2020-01-21Finish up docs for materialsclayjohn
2020-01-22Fixes leak when importing zip in AssetLibHaoyu Qiu
2020-01-21Use a loading placeholder for project icons in the project managerHugo Locurcio
Now that projects are loaded asynchronously, some projects in the list may be displayed before their icon is done loading. This is especially common on slower hardware. In such cases, this makes the project manager display a loading placeholder instead of the default project icon.
2020-01-21Merge pull request #35413 from akien-mga/if-0-means-couperetRémi Verschelde
Remove unused #if 0'ed code
2020-01-21Merge pull request #35411 from akien-mga/greater-font-sizes-for-everyoneRémi Verschelde
Allow greater values for DynamicFont size property
2020-01-21Remove unused #if 0'ed codeRémi Verschelde
2020-01-21Merge pull request #35408 from Faless/ws/fix_packet_countRémi Verschelde
Fix MultiplayerAPI crash when peer implementation misbehave.
2020-01-21Allow greater values for DynamicFont size propertyRémi Verschelde
See https://github.com/godotengine/godot/issues/22581#issuecomment-576836691. Not using `or_greater` as there *is* a max size value that the current implementation can accept. If using e.g. size 6000 with FiraSans-Regular.ttf, errors are printed due to failing asserts on a glyph size that should be within 4096x4096 px.
2020-01-21Fix MultiplayerAPI crash when peer impl misbehave.Fabio Alessandrelli
Also fix WebSocketMultiplayer::get_available_packet_count() return value when peer is not configured to use the multiplayer API.
2020-01-21Merge pull request #35407 from neikeq/issue-27285Ignacio Roldán Etcheverry
Add dummy preprocessor for the C# script class parser
2020-01-21Make script class parser errors to not abort the buildIgnacio Etcheverry
As our script class parser is error prone, we should not impede the build from continuing because of a parsing error. This should be reverted in the future once we switch to Roslyn.
2020-01-21Add dummy preprocessor for the C# script class parserIgnacio Etcheverry
No attempts are made at conditional compilation. The main if branch is always assumed to be true.
2020-01-21Update CHANGELOG.md for Godot 3.2Hugo Locurcio
2020-01-21Merge pull request #35393 from YeldhamDev/plugin_script_syntaxRémi Verschelde
Make script made via plugin creation obey syntax settings
2020-01-21Merge pull request #35399 from ↵Rémi Verschelde
ericrybick/35367-signals-dock-size-jumps-when-selecting-nodes Clip text in NodeDock toolbuttons to prevent dock size changes
2020-01-21Clip text in NodeDock toolbuttons to prevent dock size changesEric Rybicki
Fixes #35367
2020-01-21Merge pull request #35394 from ericrybick/fix-assetlib-thumbnail-overlay-Rémi Verschelde
Fix asset library video play overlay not being centered on the thumbnail
2020-01-21Merge pull request #35385 from akien-mga/bullet-prevent-div-by-zeroRémi Verschelde
Bullet: Prevent potential division by zero
2020-01-21Merge pull request #35390 from timothyqiu/find-in-files-leakRémi Verschelde
Fixes leak in Find in Files utility
2020-01-21Fix asset library video play overlay not being centered on the thumbnailEric Rybicki
2020-01-21Make script made via plugin creation obey syntax settingsMichael Alexsander