Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-05-16 | Fix Object::get_indexed for simple properties. | Fabio Alessandrelli | |
Object::get_indexed was not correctly reporting invalid keys if the name was a direct property (not a subproperty), causing for example Tween to not report correctly a bad interpolate_property key. | |||
2019-05-16 | Merge pull request #28917 from Faless/gdnative/singleton_editor_fix_pr | Rémi Verschelde | |
Update GDNativeLibrarySingletonEditor. | |||
2019-05-16 | Fix OS_UWP::execute's signature after cd4449e | Rémi Verschelde | |
Same as #28919. | |||
2019-05-16 | Merge pull request #28924 from fsecilia/master | Rémi Verschelde | |
Fix indexing failure in unregister_binding_functions. | |||
2019-05-15 | Merge pull request #28919 from Faless/javascript/os_fixes | Max Hilbrunner | |
Fix OS_Javascript execute method | |||
2019-05-15 | Fix indexing failure in NativeScriptLanguage::unregister_binding_functions. | Frank Secilia | |
binding_functions.size() and an instance's binding_data.size() can get out of sync. They sync up when an instance's bindings are requested. When binding functions are registered after creating an instance's bindings, the instance's bindings are out of sync until requested again. If they're never requested, they're never synced. unregister_binding_functions indexes into binding_data, but only checks that its safe to index into binding_functions. When they're out of sync, indexing fails. This revision checks that it's safe to index into binding_data. | |||
2019-05-15 | Fix OS_Javascript execute method | Fabio Alessandrelli | |
Signature was changed in OS via: cd4449e7abe97b2bc883e2d182db2cc41eb35f8c | |||
2019-05-15 | Update GDNativeLibrarySingletonEditor. | Fabio Alessandrelli | |
Moved GDNative singletons discoverer from register_types to GDNativeSingletonEditor. Fix enable/disable switch in GDNativeLibrarySingletonEditor. Separate `gdnative/singletons` and `gdnative/singletons_disabled` project settings, keeping "on by default" behavior. | |||
2019-05-15 | doc: Fix issues found by the parser | Rémi Verschelde | |
2019-05-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-05-15 | Merge pull request #28902 from groud/fix_nan_strength | Rémi Verschelde | |
Fix NaN with get_action_strength | |||
2019-05-15 | Fix NaN with get_action_strength | Gilles Roudière | |
2019-05-15 | Merge pull request #28873 from YeldhamDev/undo_scriptbutton_update | Rémi Verschelde | |
Properly update script button when undoing a script addition | |||
2019-05-15 | Merge pull request #28891 from clayjohn/brdf-fix | Rémi Verschelde | |
Fix lighting bug introduced in clear color changes | |||
2019-05-14 | fix lighting bug introduced in clear color changes | clayjohn | |
2019-05-14 | Merge pull request #28583 from theoniko/show-long-name-variables-correctly | Michael Alexsander Silva Dias | |
Fix First Ctrl+R and Ctrl+F not showing long name variables correctly | |||
2019-05-14 | Merge pull request #28153 from DrMoriarty/recursive-framework-search-paths | Max Hilbrunner | |
Make Xcode recursively search frameworks in project dir | |||
2019-05-14 | Make Xcode recursive search frameworks in project dir | Vasiliy Makarov | |
2019-05-14 | Merge pull request #27569 from Faless/net/ipv4_link_local | Max Hilbrunner | |
Exclude link-local IPv4s from editor host list. | |||
2019-05-14 | Merge pull request #28875 from Calinou/doc-improve-canvasitem | Max Hilbrunner | |
Improve the CanvasItem documentation | |||
2019-05-14 | Improve the CanvasItem documentation | Hugo Locurcio | |
This makes it clear that line width and antialiasing in `draw_multiline()` aren't implemented yet (see #16448). | |||
2019-05-14 | Merge pull request #27898 from clayjohn/metallic_radiance | Rémi Verschelde | |
Added radiance when using clear color | |||
2019-05-13 | Properly update script button when undoing a script addition | Michael Alexsander Silva Dias | |
Fixes #28870. | |||
2019-05-13 | added radiance when using clear color and fixed brdf | clayjohn | |
2019-05-13 | Merge pull request #27798 from clayjohn/gles2-proj-mat-bug | Rémi Verschelde | |
Fixes bug when setting projection matrix in shader GLES2 | |||
2019-05-13 | Merge pull request #28518 from clayjohn/GLES2-MSAA | Rémi Verschelde | |
Added MSAA to GLES2 backend | |||
2019-05-13 | Merge pull request #28723 from SouzaGuilherme/fix_shadows | Rémi Verschelde | |
Fix SHADOWS_DISABLED flag in GLES2 | |||
2019-05-13 | Merge pull request #28761 from aqnuep/texture_resource_reload_fix | Rémi Verschelde | |
Fix texture resource reload bug | |||
2019-05-13 | Merge pull request #28750 from YeldhamDev/filedock_rmb_inherent | Rémi Verschelde | |
Make possible to create inherited scenes via the RMB menu in the FileSystem dock | |||
2019-05-13 | Merge pull request #28780 from bojidar-bg/x-audio-record-passthrough | Rémi Verschelde | |
Fix AudioEffectRecord messing up the effect stack by not writing to dst_frames | |||
2019-05-13 | Merge pull request #28809 from bojidar-bg/x-navmesh-wrong-vertex-order | Rémi Verschelde | |
Fix orientation of generated navmeshes | |||
2019-05-13 | Merge pull request #28839 from Faless/gdnative/lib_resource_fix | Rémi Verschelde | |
Fix GDNative library resource loading. | |||
2019-05-13 | Merge pull request #28326 from BastiaanOlij/center_heightmap | Rémi Verschelde | |
Center shape according to logic Bullet applies | |||
2019-05-13 | Merge pull request #28831 from dankan1890/spriteframes_sheet_fix | Rémi Verschelde | |
AnimatedSprite: Add from spritesheets now work as expected. Fix #28030 | |||
2019-05-13 | Merge pull request #28729 from freestraws/animated_sprite_fps | Rémi Verschelde | |
Apply sprite frames editor FPS value correctly upon _animation_select | |||
2019-05-13 | Merge pull request #28832 from hbina/issue_28689_new | Max Hilbrunner | |
[Old PR was messed up] Document reproducability of Array.shuffle() | |||
2019-05-12 | Fix GDNative library resource loading. | Fabio Alessandrelli | |
Store general properties in ConfigFile too when modifying them. Additionally set config_file property as internal as it's not editable from inspector. It also does not appear to get saved in a meaningful way (saved as Object(ConfigFile, ...)) | |||
2019-05-12 | Merge pull request #28783 from Faless/mp/avoid_selfcall | Max Hilbrunner | |
Better handle some self-RSET/RPC in MultiplayerAPI | |||
2019-05-12 | Better handle some self-RSET/RPC in MultiplayerAPI | Fabio Alessandrelli | |
Allow calling yourself via RPC/RSET if the mode allows it. Better error messages when you are not allowed to call yourself. | |||
2019-05-12 | AnimatedSprite: Add from spritesheets now work as expected. Fix #28030 | dankan1890 | |
2019-05-11 | updated description of Array.shuffle to properly describe that it uses the ↵ | hbina085 | |
same common seed at every runtime, thus being reproducible in general | |||
2019-05-11 | Apply sprite frames editor FPS value correctly upon _animation_select | freestraws | |
2019-05-11 | Fix orientation of generated navmeshes | Bojidar Marinov | |
Fixes #23817 | |||
2019-05-11 | Make possible to create inherited scenes via the RMB menu in the FileSystem dock | Michael Alexsander Silva Dias | |
2019-05-11 | Merge pull request #28807 from bojidar-bg/28798-open-filesystem | Rémi Verschelde | |
Open selected folder when pressing the "Open" option in the menu | |||
2019-05-11 | Merge pull request #28742 from guilhermefelipecgs/fix_28737 | Rémi Verschelde | |
[EditorSpatialGizmo] Fix error in intersect_ray | |||
2019-05-11 | Merge pull request #28770 from volzhs/fix-scroll-back-top | Rémi Verschelde | |
Fix scroll back top | |||
2019-05-11 | Add RegEx substitution testcase and fix relevant docs | Ryan Stein | |
(cherry picked from commit a31bbb4bd920e28cbb2c737a785e91da5e7a599f) | |||
2019-05-11 | Merge pull request #28806 from bojidar-bg/28624-navmesh-cellsize | Rémi Verschelde | |
Allow or_greater for most properties of NavMesh | |||
2019-05-10 | Open selected folder when pressing the "Open" option in the menu | Bojidar Marinov | |
An attempt to fix #28798 |