Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-14 | Merge pull request #34353 from Calinou/increase-2d-editor-zoom-limits | Rémi Verschelde | |
Increase the TileSet and polygon UV editor zoom limits to 16× | |||
2019-12-14 | Increase the TileSet and polygon UV editor zoom limits to 16× | Hugo Locurcio | |
This also changes the TileSet editor's minimum zoom to match other 2D editors. This closes #34346. | |||
2019-12-13 | Makes int and bool clickable in documentation | Haoyu Qiu | |
Also adjusted the way to check empty strings. | |||
2019-12-13 | i18n: Sync translation template with current source | Rémi Verschelde | |
2019-12-13 | i18n: Sync translations with Weblate | Rémi Verschelde | |
2019-12-13 | Make more editor strings translatable | Haoyu Qiu | |
2019-12-13 | Merge pull request #34016 from ↵ | Rémi Verschelde | |
norton-corbett/hotfix/tileset-editor-point-grabbing Fix TileSet Editor polygon point grabbing | |||
2019-12-13 | Merge pull request #34304 from Calinou/improve-editor-shortcuts-search | Rémi Verschelde | |
Don't search in unassigned shortcut labels in the editor shortcuts | |||
2019-12-12 | Fix OptionButton's arrow margin in editor theme | Michael Alexsander | |
2019-12-12 | Don't search in unassigned shortcut labels in the editor shortcuts | Hugo Locurcio | |
This also fades out shortcut labels for unassigned shortcuts, which makes for easier visual grepping. This closes #33299. | |||
2019-12-11 | Fix for #34186: "Center Selection" in 2D editor introduces graphic bias. | Hannah Crawford | |
2019-12-11 | Fixes infinite loop when switching editor | Haoyu Qiu | |
2019-12-10 | Merge pull request #34040 from qarmin/unused_variable_more_precise_numbers | Rémi Verschelde | |
Removed unused variables, add some constants numbers | |||
2019-12-10 | Removed unused variables, add some constants numbers | Rafał Mikrut | |
2019-12-09 | Merge pull request #34217 from timothyqiu/delete-lines | Rémi Verschelde | |
Fixes Delete Line doesn't delete first line in script | |||
2019-12-09 | Merge pull request #34144 from timothyqiu/closing | Rémi Verschelde | |
Fixes prompt closes the wrong scene on quit | |||
2019-12-09 | Fixes Delete Line doesn't delete first line in script | Haoyu Qiu | |
Also, match multi-line delete behavior in script with single line: If there are four lines: A, B, C, D. Before the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on A After the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on D | |||
2019-12-08 | Fix TilesetEditorContext separation snap. | dankan1890 | |
Fixes #34182 | |||
2019-12-06 | Add spaces after commas and strip extra ones in *FileDialog filter menu | Michael Alexsander | |
2019-12-06 | Merge pull request #34141 from YeldhamDev/filediag_parenthesis_space_removal | Rémi Verschelde | |
Remove extra spaces from parenthesis in *FileDialog's filter menu | |||
2019-12-06 | Fixes prompt closes the wrong scene when exiting | Haoyu Qiu | |
2019-12-06 | Remove extra spaces from parenthesis in *FileDialog's filter menu | Michael Alexsander | |
2019-12-06 | clear_meta when clearing guides with the ruler | Haoyu Qiu | |
2019-12-05 | Merge pull request #34114 from simpuid/clear-guides-meta | Rémi Verschelde | |
changed set_meta to remove_meta in CLEAR_GUIDES menu option | |||
2019-12-05 | Fixed errors in JointSpatialGizmoPlugin when selecting a joint with unset nodes | PouleyKetchoupp | |
Fixes #34122 | |||
2019-12-05 | Fixes crash when clearing guides in empty scene | Haoyu Qiu | |
2019-12-05 | changed set_meta to remove_meta in CLEAR_GUIDES menu option | simpuid | |
2019-12-04 | i18n: Sync translations with Weblate | Rémi Verschelde | |
2019-12-04 | Fixes translation for project sort options | Haoyu Qiu | |
2019-12-02 | Tweak error timestamp formatting to be more readable | Hugo Locurcio | |
This uses a `.` instead of `:` as the decimal separator and trims the decimal part to 3 digits, as millisecond precision is usually sufficient. | |||
2019-12-01 | Fixed another point grabbing issue at lower zoom levels. | Norton Corbett | |
This was caused by the fact that the points were being iterated sequentially and we were breaking out of the loop as soon as we found a point that was "close enough", rather than actually finding the closest point. The previous fix exposed this new issue. | |||
2019-12-01 | Center Script Editor when jumping to bookmarks/breakpoints | Tomasz Chabora | |
2019-12-01 | Merge pull request #34022 from nekomatata/animation-player-stop-errors | Rémi Verschelde | |
Fixed errors in AnimationPlayerEditor when switching current_animation in the inspector | |||
2019-12-01 | Fixed errors in AnimationPlayerEditor when switching current_animation in ↵ | PouleyKetchoupp | |
the inspector Case 1: start and stop an animation in the inspector Case 2: start an animation in the inspector, then stop and start again in the track editor Fixes #34021 | |||
2019-12-01 | Take into account the current zoom level when grabbing polygon points in the ↵ | Norton Corbett | |
TileSet editor. The transform of the TileSet editor workspace is now used to calculate the distance from the mouse click to the nearest polygon point. Fixes https://github.com/godotengine/godot/issues/34001 | |||
2019-11-30 | Fixed error when creating physical skeleton | PouleyKetchoupp | |
An error was systematically triggered on the root bone, when trying to access its parent (the return value wasn't used in this case anyway). Fixes #23920 | |||
2019-11-29 | i18n: Sync translations with Weblate | Rémi Verschelde | |
2019-11-28 | Don't cast item to Spatial when checking if it's locked | Aaron Franke | |
Not a necessary cast, and causes a crash any time it's not a Spatial. | |||
2019-11-28 | Merge pull request #33952 from KoBeWi/not_my_fault | Rémi Verschelde | |
Fix box selection being cancelled immediately | |||
2019-11-27 | Bugfix: Sanitize glTF importer Animation Names and do not set bone_pose | Marios Staikopoulos | |
2019-11-27 | Fix box selection being cancelled immediately | Tomasz Chabora | |
2019-11-27 | Show thumbnail for DynamicFont resource | volzhs | |
2019-11-26 | Range: Remove min/max check added in #33908 | Rémi Verschelde | |
This wasn't a very good idea as it puts too strict requirements on how to set `min` and `max` values. For example, since the default min and max are 0 and 100, this triggers an error: ``` set_min(256) set_max(16384) ``` Since `min` will be higher than `max` temporarily. It can be worked around by setting max first, but it's not really intuitive. I'll relax the requirement as it's only a problem in `get_as_ratio`, which already has a check. Fix another min == max occurrence. | |||
2019-11-26 | Merge pull request #33887 from dankan1890/old_search_fix | Rémi Verschelde | |
Fixed missing scrolling in Search Help Dialog. | |||
2019-11-26 | Range: Fix cases where max was set to or below min value | Rémi Verschelde | |
It will now raise an error whenever this happens so that we can fix these situations. `max == min` is not allowed as it could lead to divisions by zero in ratios, and `max < min` doesn't make much sense. Fixes #33907. | |||
2019-11-26 | Merge pull request #33892 from nekomatata/scirpt-editor-fixes | Rémi Verschelde | |
Fixes around ScriptEditor script list | |||
2019-11-25 | Fixes around ScriptEditor script list | PouleyKetchoupp | |
- Fixed "Previous Script" shortcut not working (CTRL+SHIFT+<) - Fixed crash (integer division by zero) when using previous/next script shortcut with no script open - Fixed error when dropping a script file with no script open ERROR: ItemList::get_item_metadata: Index p_idx=-1 out of size (items.size()=0) At: scene\gui\item_list.cpp:257 | |||
2019-11-25 | Debug menu in editor doesn't hide on checkbox toggle | PouleyKetchoupp | |
Fixes #33850 | |||
2019-11-25 | Fixed missing scrolling in Search Help Dialog. | dankan1890 | |
Fix #33675 | |||
2019-11-25 | Merge pull request #33860 from nekomatata/stylebox-preview-shadow | Rémi Verschelde | |
StyleBox preview adjusted to fit all drawn content |