summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-20Remove faces in in QuickHull::build() that we don't need anymoreHein-Pieter van Braam
We delete the faces for consideration in this loop but we can still sometimes find an edge that connects to this face. We now interate over all edges and disconnect edges connecting to this face. This fixes #16560 and fixes #17569
2018-08-16Merge pull request #20561 from willnationsdev/script-class-nsRémi Verschelde
Add NativeScript support for script classes via exported script properties.
2018-08-16Merge pull request #21084 from akien-mga/theora-webm-loadingRémi Verschelde
Fix Theora/Webm loaders declaring binary extension
2018-08-16Fix Theora/Webm loaders declaring binary extensionRémi Verschelde
RES_BASE_EXTENSION is only to declare our proprietary binary formats (e.g. "scn", "res", etc.). Fixes #20395.
2018-08-16Merge pull request #21047 from gotnospirit/fix_tween_reversed_durationRémi Verschelde
Tween: Always remove the desired InterpolateData when finished
2018-08-16Merge pull request #21046 from DualMatrix/recent_custom_typeRémi Verschelde
Fixed custom nodes not working with favorites and recently used
2018-08-16Merge pull request #21067 from natrim/Particles2D_AABBRémi Verschelde
Particles2D: set emitting if not set before generating Visibility Rect
2018-08-16Merge pull request #21081 from akien-mga/fix-19289Rémi Verschelde
Fix crash assigning script to a Resource
2018-08-16Fixed custom nodes not working properly with favorites and recently used in ↵DualMatrix
create node window.
2018-08-16Tween: Add a unique identifier to InterpolateData to be able to remove the ↵James
right one when finished
2018-08-16Fix crash assigning script to a ResourceRémi Verschelde
We were dereferencing the wrong identifier, which could be NULL. Fixes #19289, supersedes and closes #20985.
2018-08-16Particles2D: set emitting if not set before generating Visibility RectNatrim
and removed not needed running zeroing in ParticlesEditor::_generate_aabb
2018-08-16Merge pull request #20804 from karroffel/vector-projectRémi Verschelde
add `project` method to Vector2/3
2018-08-16Merge pull request #21075 from akien-mga/rotation_degrees_rangeRémi Verschelde
Lift 1440 limit in rotation_degrees hint range
2018-08-16Merge pull request #21074 from akien-mga/range-bool-propertiesRémi Verschelde
Fix type of Range allow_greater/allow_lesser properties
2018-08-16Lift 1440 limit in rotation_degrees hint rangeRémi Verschelde
Fixes #15947.
2018-08-16Fix type of Range allow_greater/allow_lesser propertiesRémi Verschelde
2018-08-16Merge pull request #21069 from BastiaanOlij/change_mobile_vr_initRémi Verschelde
Delay initializing lens distortion shader so GLES2 doesn't crash
2018-08-16Merge pull request #21062 from Ovnuniarchos/PopupCheckablesJuan Linietsky
PopupMenu item_pressed is sent before checking hide flags.
2018-08-16add project method to Vector2/3Thomas Herzog
2018-08-16Delay initialising lens distortion shader so GLES2 doesn't crashBastiaan Olij
2018-08-16Merge pull request #21063 from Chaosus/fix_error_iconRémi Verschelde
Fix debugger icon for warnings
2018-08-16Fix debugger icon for warningsChaosus
2018-08-16PopupMenu item_pressed is sent before checking hide flags.Ovnuniarchos
2018-08-15Merge pull request #21023 from Paulb23/fix_reopening_text_fileRémi Verschelde
Fix re-opening of TextFiles when its already being edited.
2018-08-15Merge pull request #21022 from Paulb23/create_text_filesRémi Verschelde
Ability to create TextFiles.
2018-08-15Merge pull request #21045 from karroffel/black-bar-fixesRémi Verschelde
[gles2] fix black bar artifacts
2018-08-15Merge pull request #21044 from willnationsdev/class_iconsRémi Verschelde
Fix error spam from loading script class icons
2018-08-15Added method to create TextFilesPaulb23
2018-08-15Merge pull request #21053 from akien-mga/doc-dialog_hide_on_okRémi Verschelde
Doc: Clarify usage of dialog_hide_on_ok and caveat for FileDialog
2018-08-15Doc: Clarify usage of dialog_hide_on_ok and caveat for FileDialogRémi Verschelde
Fixes #20817.
2018-08-15Attempting to workaround the problem present in #20904, let me know if it works.Juan Linietsky
2018-08-15Add NativeScript support for script classes.willnationsdev
2018-08-15Fix error spam from loading script class iconsWill Nations
2018-08-15[gles2] fix black bar artifactsThomas Herzog
2018-08-15Merge pull request #21021 from DualMatrix/new_node_warningRémi Verschelde
Fixed error spam in create node dialog with custom types.
2018-08-15Fixed error spam in create node dialog with custom types.DualMatrix
This should fix #20789
2018-08-15Merge pull request #20560 from willnationsdev/class_iconsRémi Verschelde
Add custom icons to script classes.
2018-08-15Merge pull request #21040 from volzhs/fix-configure-warningRémi Verschelde
Fix not to show configuration warning on every node has script
2018-08-15Fix not to show configuration warning on every node has scriptvolzhs
2018-08-15Merge pull request #19837 from willnationsdev/plugin-utilitiesRémi Verschelde
Add PluginConfigDialog.
2018-08-15Merge pull request #21007 from guilhermefelipecgs/disable_camera_interpolationRémi Verschelde
Disable camera interpolation when switching scene tabs
2018-08-15Merge pull request #20941 from codingHahn/fix-normals-on-shaderRémi Verschelde
Fix handling of normals that approach 1
2018-08-14Merge pull request #21024 from godotengine/revert-20860-fix_border_artifactJuan Linietsky
Revert "Fix border artifacts at the edge of deep parallax."
2018-08-14Revert "Fix border artifacts at the edge of deep parallax."Juan Linietsky
2018-08-15Merge pull request #21010 from YeldhamDev/tile_editors_changesRémi Verschelde
Changes to the TileSet and TextureRegion editors
2018-08-15Merge pull request #20873 from ttencate/masterRémi Verschelde
Allow middle-click to close scripts
2018-08-15Merge pull request #20945 from neikeq/dict-erase-retboolRémi Verschelde
Dictionary: remove erase_checked(key), make erase(key) return bool
2018-08-15Merge pull request #21008 from groud/fix_action_initRémi Verschelde
Fixes initialization of action list
2018-08-14Fix re-opening of TextFiles when its already being editedPaulb23