Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-18 | Merge pull request #44156 from aaronfranke/quat-angle-to | Rémi Verschelde | |
Add Quaternion angle_to method | |||
2021-06-18 | Merge pull request #49638 from aaronfranke/multiply-transforms | Rémi Verschelde | |
Allow multiplying Transforms and Basis by numbers | |||
2021-06-18 | Merge pull request #49475 from nekomatata/kinematic-collision-rid | Rémi Verschelde | |
Expose collider RID in 2D/3D kinematic collision | |||
2021-06-17 | Add Quaternion angle_to method | Aaron Franke | |
2021-06-18 | Better format arguments in variant parser | Michael Alexsander Silva Dias | |
2021-06-17 | Implement animation slice drawing in CanvasItem | reduz | |
* Added a function to ignore subsequent commands if they don't fall within the slice. * This will be used by the new TileMap to properly provide animated tiles. | |||
2021-06-17 | Merge pull request #49670 from reduz/rename-visibility-notifiers | Rémi Verschelde | |
Rename VisibilityNotifier2D/3D to VisibleOnScreenNotifier2D/3D | |||
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-16 | Rename VisibilityNotifierXD to VisibleOnScreenNotifierXD | reduz | |
* Renames for 2D and 3D * Class name was confusing, given both 2D and 3D have a "visible" property that is unrelated to actual on-screen visibility. * New name makes it clear that this is about visibility on screen. | |||
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 | 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 | Allow multiplying Transforms and Basis by numbers | Aaron Franke | |
2021-06-15 | Merge pull request #48681 from Calinou/doc-audioeffectpitchshift | Rémi Verschelde | |
Complete documentation for the AudioEffectPitchShift class | |||
2021-06-15 | Merge pull request #48682 from Calinou/doc-audio-generation | Rémi Verschelde | |
Improve AudioStreamGenerator and AudioEffectSpectrumAnalyzer documentation | |||
2021-06-15 | Merge pull request #49292 from KoBeWi/you_changed,_animation | Rémi Verschelde | |
Clarify animation_changed signal | |||
2021-06-15 | Merge pull request #49432 from Calinou/tweak-physics-fps-property-hint | Rémi Verschelde | |
Tweak the physics FPS property hint to only allow reasonable values | |||
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 | 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-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 | Fix some virtual methods | kobewi | |
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 | Merge pull request #49123 from aaronfranke/it-is-time | Rémi Verschelde | |
Add a Time singleton | |||
2021-06-12 | Fix duplicate paragraph in `ArrayMesh.add_surface_from_arrays()` description | Hugo Locurcio | |
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-11 | Merge pull request #47242 from sygi/bitmap-opaque-polygons | Rémi Verschelde | |
Bitmap opaque_to_polygons documentation | |||
2021-06-11 | Merge pull request #49515 from ↵ | Rémi Verschelde | |
Calinou/doc-projectsettings-vram-compression-change Document applying VRAM compression setting changes retroactively | |||
2021-06-11 | Document applying VRAM compression setting changes retroactively | Hugo Locurcio | |
2021-06-11 | Merge pull request #49312 from RandomShaper/reference_to_ref_count | Rémi Verschelde | |
Rename `Reference` to `RefCounted` | |||
2021-06-11 | Merge pull request #47835 from mortarroad/master-lossless-webp | Rémi Verschelde | |
Implement lossless WebP encoding | |||
2021-06-11 | Rename Reference to RefCounted | Pedro J. Estébanez | |
2021-06-11 | Implement lossless WebP encoding | Morris Tabor | |
2021-06-11 | Merge pull request #49279 from Calinou/rename-string-is-abs-path-method | Rémi Verschelde | |
Rename `String.is_abs_path()` to `String.is_absolute_path()` | |||
2021-06-11 | Merge pull request #34566 from Heikki00/34541_to_json_precision | Rémi Verschelde | |
Increased String::num default decimal precision | |||
2021-06-11 | Add Time singleton | Aaron Franke | |
2021-06-11 | Add documentation to Bitmaps opaque_to_polygons. | sygi | |
2021-06-11 | Merge pull request #47584 from HaSa1002/docs-lang-7 | Rémi Verschelde | |
2021-06-11 | Port code examples to C# (V) | Johannes | |
Includes: * Variant * Viewport and two fixes in Array that were pointed out in #40978 VisualScript classes are skipped on purpose. That is the final commit of the inital code porting to C#. :) | |||
2021-06-10 | Let var2str display StringName with correct sigil | Jonathan Gollnick | |