Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-25 | Merge pull request #30796 from YeldhamDev/anim_undo_dict_duplicate | Rémi Verschelde | |
Fix undo problems with method and transform tracks in the animation editor | |||
2019-07-25 | Merge pull request #30803 from YeldhamDev/debugger_monitor_text_center | Rémi Verschelde | |
Center text in the debugger's "Monitors" tab | |||
2019-07-25 | Merge pull request #30799 from guilhermefelipecgs/fix_30795 | Rémi Verschelde | |
Fix crash when using custom cursor | |||
2019-07-24 | Center text in the debugger's "Monitors" tab | Michael Alexsander Silva Dias | |
2019-07-25 | Merge pull request #30802 from neikeq/exc-policy-and-issue-30519 | Ignacio Roldán Etcheverry | |
Unhandled exception policy and fix external editors on Windows | |||
2019-07-24 | Mono: Fix regression: external editors not working on Windows | Ignacio Etcheverry | |
2019-07-24 | Mono: Add option to keep running after unhandled exceptions | Ignacio Etcheverry | |
By default, an unhandled exception will cause the application to be terminated; but the project setting `mono/unhandled_exception_policy` was added to change this behaviour. The editor is hard-coded to never terminate because of unhandled exceptions, as that would make writing editor plugins a painful task, and we cannot kill the editor because of a mistake in a thirdparty plugin. | |||
2019-07-24 | Fix crash caused by a9a0d0fb15cc5e028dbf8dab8b46d3dc197c4678 | Guilherme Felipe | |
2019-07-24 | Fix undo problems with method and transform tracks in the animation editor | Michael Alexsander Silva Dias | |
2019-07-24 | Merge pull request #30778 from YeldhamDev/anim_multi_key_edit | Rémi Verschelde | |
Make possible to edit multiple keys in an animation again | |||
2019-07-24 | Merge pull request #23334 from malbach/align_sel_view | Rémi Verschelde | |
Add 'Move to view' and make 'Align to view' only align | |||
2019-07-24 | Merge pull request #25090 from Chaosus/string_count | Rémi Verschelde | |
Added String.count method | |||
2019-07-24 | Merge pull request #30786 from YeldhamDev/update_dead_links | Rémi Verschelde | |
Update some dead links in the codebase | |||
2019-07-23 | Update some dead links in the codebase | Michael Alexsander Silva Dias | |
2019-07-23 | Added count method to String | Chaosus | |
2019-07-23 | Merge pull request #30772 from mbrlabs/view-distance | Rémi Verschelde | |
Increased max view distance in spatial editor plugin | |||
2019-07-23 | Add 'Align Rotation with View' to spatial editor | malbach | |
2019-07-23 | Merge pull request #30716 from qarmin/fixed_static_analiser_code | Rémi Verschelde | |
Fix some code found by Coverity Scan and PVS Studio | |||
2019-07-23 | Increased max view distance in spatial editor plugin | Marcus Brummer | |
Increased from 10000 to 1000000. I also removed two related magic numbers. Closes #30766. | |||
2019-07-23 | Fix some code found by Coverity Scan and PVS Studio | qarmin | |
2019-07-23 | Merge pull request #30735 from Zylann/project_manager_improvement | Rémi Verschelde | |
Project manager improvements | |||
2019-07-23 | Merge pull request #30771 from YeldhamDev/open_screenshot_editor_settings | Rémi Verschelde | |
Move "Open Screenshot" from the "Editor" menu to the editor settings | |||
2019-07-23 | Move "Open Screenshot" from the "Editor" menu to the editor settings | Michael Alexsander Silva Dias | |
2019-07-23 | Merge pull request #30764 from clayjohn/contact-shadow | Rémi Verschelde | |
Fix contact shadows appearing when shading casting is off | |||
2019-07-22 | Make possible to edit multiple keys in an animation again | Michael Alexsander Silva Dias | |
2019-07-22 | fix contact shadows appearing when shading casting is off | clayjohn | |
2019-07-22 | Merge pull request #30732 from Calinou/default-disable-high-quality-vct | Rémi Verschelde | |
Disable high-quality voxel cone tracing by default | |||
2019-07-22 | Merge pull request #30728 from FlamyAT/fix-inputevent-doc | Rémi Verschelde | |
Documents the need for input_pickable in _input_event | |||
2019-07-22 | Merge pull request #30753 from Calinou/make-header-run-from-any-location | Rémi Verschelde | |
Make `make_header.py` functional when run from any location | |||
2019-07-22 | Merge pull request #30759 from akien-mga/ios-camera-type-mismatch | Rémi Verschelde | |
Fix type mismatch in iOS interface orientation checks | |||
2019-07-22 | Fix type mismatch in iOS interface orientation checks | Rémi Verschelde | |
Not sure why this error popped up when I enabled C++11 on the codebase, but I guess this should fix it. | |||
2019-07-22 | SCons: Enable C++11 on the whole codebase | Rémi Verschelde | |
**Important:** This does not mean *yet* that C++11 features should be used in contributions to Godot's codebase. For now this change is done solely for feature branches working on Vulkan support and GDScript typed instruction sets for Godot 4.0, which will both use C++11 features and are based on the master branch. The plan is to start porting the codebase to C++11 after Godot 3.2 is released, following upcoming guidelines on the subset of new features that should be used, and when/how to use them. We will advertise clearly when C++11 contributions are open, especially once we start a coordinated effort to port Godot's massive codebase. In the meantime, please bear with us and good ol' C++03. :) | |||
2019-07-22 | Merge pull request #30752 from akien-mga/scons-fix-add_source_files | Rémi Verschelde | |
SCons: Fix uses of [].append instead of env.add_source_files() | |||
2019-07-22 | Documents the need for input_pickable in _input_event | FlamyAT | |
Update CollisionObject2D.xml Added member tags to missing docs | |||
2019-07-22 | SCons: Fix uses of [].append instead of env.add_source_files() | Rémi Verschelde | |
Also added support for SCons project-absolute paths (starting with #) and warning about duplicates in add_source_files(), and fixed default_controller_mappings.gen.cpp being included twice after first build due to *.cpp globbing. Part of #30270. | |||
2019-07-22 | Merge pull request #30713 from bojidar-bg/30615-trackpad-2d-viewport | Rémi Verschelde | |
Improve touchpad support in 2d editor viewport | |||
2019-07-22 | Make `make_header.py` functional when run from any location | Hugo Locurcio | |
This removes the need to `cd` to `scene/resources/default_theme/` to get the expected result. | |||
2019-07-22 | Merge pull request #30751 from akien-mga/emscripten-binaryen-trap-mode | Rémi Verschelde | |
Emscripten: Do not define BINARYEN_TRAP_MODE='clamp' | |||
2019-07-22 | Merge pull request #30745 from clayjohn/gles2-shadow-transparency | Rémi Verschelde | |
Fix GLES2 shadow transparency bug | |||
2019-07-22 | Emscripten: Do not define BINARYEN_TRAP_MODE='clamp' | Rémi Verschelde | |
It is not supported in Emscripten's `latest-upstream` LLVM backend, and doesn't seem necessary in the `latest` backend either. It was initially added in #22857 to solve a compilation error with the latter. Part of #30270. | |||
2019-07-22 | doc: More formatting fixes | Rémi Verschelde | |
2019-07-22 | doc: Formatting fixes in EditorPlugin docs | Rémi Verschelde | |
2019-07-22 | doc: Sync classref with current source | Rémi Verschelde | |
2019-07-22 | Merge pull request #30749 from godotengine/revert-22642-inspector_metadata | Rémi Verschelde | |
Revert "Expose "meta" to the Inspector" | |||
2019-07-22 | Merge pull request #30748 from ↵ | Rémi Verschelde | |
godotengine/revert-26205-spatialmaterial-use-packed-channels Revert "Tweak SpatialMaterial's default metallic and roughness texture channels" | |||
2019-07-22 | Revert "Expose "meta" to the Inspector" | Rémi Verschelde | |
2019-07-22 | Merge pull request #30726 from ↵ | Rémi Verschelde | |
GodotExplorer/revert-30657-optimize_dir_access_unix_get_next Revert "Optimize DirAccessUnix::get_next() for some file systems" | |||
2019-07-22 | Revert "Tweak SpatialMaterial's default metallic and roughness texture channels" | Rémi Verschelde | |
2019-07-22 | Merge pull request #30659 from henriiquecampos/docs | Rémi Verschelde | |
Add description for EditorSceneImporter, EditorPlugin.enable/disable and EditorInterface.select_file | |||
2019-07-22 | Merge pull request #30717 from akien-mga/zstd-1.4.1 | Rémi Verschelde | |
zstd: Update to upstream version 1.4.1 |