Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-17 | Merge pull request #38261 from pycbouh/adjust-graph-edit-zoom-levels | Rémi Verschelde | |
Make zoom limits and step adjustable in `GraphEdit` | |||
2021-06-17 | Merge pull request #49258 from megalobyte/editor-fix | Rémi Verschelde | |
Fixes for documentation search | |||
2021-06-16 | Refactor VisibilityNotifier3D | reduz | |
* This is the 3D counterpart to #49632 * Implemented a bit different as 3D works using instancing After merged, both 2D and 3D classes will most likely be renamed in a separate PR to DisplayNotifier2D/3D. | |||
2021-06-16 | Merge pull request #49238 from Paulb23/code_edit_code_folding | Rémi Verschelde | |
Move code folding into CodeEdit and hide line hiding API | |||
2021-06-16 | Documentation search fixes | Gregory Basile | |
Updates rich_text_label so that the built-in documentation can be searched Previously, it would only find the first result and would not select other results Renames "_entered" functions to "_submitted" | |||
2021-06-16 | Merge pull request #49657 from timothyqiu/postion | Rémi Verschelde | |
Fix typo in CodeEdit methods | |||
2021-06-16 | Merge pull request #49632 from reduz/refactor-visibility-notifier-2d | Rémi Verschelde | |
Refactor VisibilityNotifier2D | |||
2021-06-16 | Merge pull request #49401 from fire/8-weights | K. S. Ernest (iFire) Lee | |
Fix 8 bone weights in glTF2 | |||
2021-06-16 | Fix typo in CodeEdit methods | Haoyu Qiu | |
2021-06-16 | Refactor VisibilityNotifier | reduz | |
* Works from RenderinServer * Accurately tells when on or off-scren, its no longer approximate. * VisibilityEnabler also simplified to use the process mode instead. | |||
2021-06-16 | Make zoom limits and step adjustable in GraphEdit | Yuri Sizov | |
2021-06-15 | Merge pull request #49624 from nekomatata/fix-sub-resource-cache | Rémi Verschelde | |
Fix sub-resource storing the wrong index in cache | |||
2021-06-15 | Fix sub-resource storing the wrong index in cache | PouleyKetchoupp | |
The subindex within Resource wasn't synchronized with the path stored in cache when saving a packed scene. It could cause sub-resources to be swapped when loading the same packed scene in the same session. Now the subindex in Resource reflects the sub-resource path in cache, making saving and loading sub-resources consistent. Co-authored-by: latorril <latorril@gmail.com> | |||
2021-06-15 | Merge pull request #48998 from kleonc/Node-add_child-fix | Rémi Verschelde | |
Node.add_child Check for cyclic dependency | |||
2021-06-15 | Merge pull request #49011 from KoBeWi/totally_h | Rémi Verschelde | |
Fix valign with stylebox borders | |||
2021-06-15 | Merge pull request #49437 from Calinou/graphedit-allow-higher-lower-zoom-values | Rémi Verschelde | |
Allow higher and lower maximum zoom values in GraphEdit | |||
2021-06-15 | Merge pull request #49508 from kleonc/texture_button-updating-min_size | Rémi Verschelde | |
TextureButton Update min size on any texture change | |||
2021-06-15 | Merge pull request #49388 from pycbouh/theme-editor-better-previews | Rémi Verschelde | |
Overhaul the theme editor and improve user experience | |||
2021-06-15 | Merge pull request #49582 from timothyqiu/codeedit-update-cache | Rémi Verschelde | |
Update cache after clearing delimiters in CodeEdit | |||
2021-06-14 | Overhaul the theme editor and improve user experience | Yuri Sizov | |
2021-06-14 | Merge pull request #49572 from azagaya/fix_grabber_area | Rémi Verschelde | |
Fix vertical slider grabber_area height calculation | |||
2021-06-14 | Merge pull request #49586 from timothyqiu/iter-invalidate | Rémi Verschelde | |
Fix crash when using TileMap::fix_invalid_tiles | |||
2021-06-14 | Merge pull request #48287 from aaronfranke/camera-is-frustum | Rémi Verschelde | |
2021-06-14 | Merge pull request #49458 from JFonS/fix_unwrap_xform | Rémi Verschelde | |
Rename get_parent_spatial() to get_parent_node_3d() | |||
2021-06-14 | Add is_position_in_frustum to Camera3D | Aaron Franke | |
2021-06-14 | Merge pull request #48847 from JFonS/vis_deps | Rémi Verschelde | |
Implement visibility range and dependencies | |||
2021-06-14 | Update cache after clearing delimiters in CodeEdit | Haoyu Qiu | |
2021-06-14 | Rename get_parent_spatial() to get_parent_node3d() | jfons | |
Renames get_parent_spatial() to get_parent_node3d() and changes its implementation. Before it was not returning a correct pointer if the node wasn't added to a SceneTree. Now it uses the same implementation as CanvasItem, which will be correct even for nodes outside a SceneTree. | |||
2021-06-14 | Implement visibility range and dependencies. | jfons | |
This commit adds the following properties to GeometryInstance3D: `visibility_range_begin`, `visibility_range_begin_margin`, `visibility_range_end`, `visibility_range_end_margin`. Together they define a range in which the GeometryInstance3D will be visible from the camera, taking hysteresis into account for state changes. A begin or end value of 0 will be ignored, so the visibility range can be open-ended in both directions. This commit also adds the `visibility_parent` property to 'Node3D'. Which defines the visibility parents of the node and its subtree (until another parent is defined). Visual instances with a visibility parent will only be visible when the parent, and all of its ancestors recursively, are hidden because they are closer to the camera than their respective `visibility_range_begin` thresholds. Combining visibility ranges and visibility parents users can set-up a quick HLOD system that shows high detail meshes when close (i.e buildings, trees) and merged low detail meshes for far away groups (i.e. cities, woods). | |||
2021-06-14 | Fix crash when using TileMap::fix_invalid_tiles | Haoyu Qiu | |
2021-06-14 | Fixed error spam when XR mode is not enabled and a missed setting rename | Bastiaan Olij | |
2021-06-13 | Fix vertical slider grabber_area height calculation | azagaya | |
2021-06-13 | Merge pull request #49227 from pycbouh/editor-theme-freeze-changes | Rémi Verschelde | |
Prevent `Theme` resource from emitting changes during bulk operations | |||
2021-06-13 | Merge pull request #48207 from BastiaanOlij/multiview_stereoscopic | Rémi Verschelde | |
Add stereoscopic rendering through multiview | |||
2021-06-13 | Add stereoscopic rendering through multiview | Bastiaan Olij | |
2021-06-13 | Merge pull request #49526 from Chaosus/fix_textureregion_errors | Rémi Verschelde | |
2021-06-13 | Merge pull request #49543 from greatmomo/SkeletonModification_bugfix | Rémi Verschelde | |
2021-06-13 | Merge pull request #49558 from timothyqiu/invalid-ref | Rémi Verschelde | |
2021-06-13 | Merge pull request #49555 from timothyqiu/tileset-range | Rémi Verschelde | |
Add range check for TileSet::CellNeighbor parameter | |||
2021-06-13 | Merge pull request #49553 from timothyqiu/viewport-outside-tree | Rémi Verschelde | |
Fix Viewport crashes when not in tree | |||
2021-06-13 | Validate parameter of SkeletonModificationStack2D::add_modification | Haoyu Qiu | |
2021-06-13 | Add range check for TileSet::CellNeighbor parameter | Haoyu Qiu | |
2021-06-13 | Fix Viewport crashes when not in tree | Haoyu Qiu | |
2021-06-13 | Initialize PhysicalBone2D::parent_skeleton | Haoyu Qiu | |
2021-06-12 | Merge pull request #48746 from KoBeWi/bane_of_all_virtual_compatibility | Rémi Verschelde | |
Consistently prefix bound virtual methods with _ | |||
2021-06-12 | Fixed crash on calling set_editor_draw without properly setup | Moritz Kaltenbrunner | |
SkeletonModification | |||
2021-06-12 | Fixed a bunch of connection errors in TextureEditorPlugin | Yuri Roubinsky | |
2021-06-12 | Consistently prefix bound virtual methods with _ | kobewi | |
2021-06-12 | Fix tangents array in SurfaceTool | jfons | |
2021-06-11 | Merge pull request #49312 from RandomShaper/reference_to_ref_count | Rémi Verschelde | |
Rename `Reference` to `RefCounted` |