Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-06 | Merge pull request #63776 from fire-forge/shapecast2d | Rémi Verschelde | |
Add ShapeCast2D editor handle and improve debug drawing | |||
2022-08-06 | Merge pull request #63859 from Rindbee/fix-hue-slider-incorrectly-rotated | Rémi Verschelde | |
Fix Hue slider incorrectly rotated 90 degrees in ColorPicker | |||
2022-08-06 | Merge pull request #63958 from hakro/fix-control-animation-keys | Rémi Verschelde | |
Remove rect_ prefix from control properties when keyframing | |||
2022-08-05 | Remove rect_ prefix from control properties when keyframing | Hakim | |
2022-08-05 | Round icon position and size in buttons to make them look sharper | Yuri Sizov | |
2022-08-05 | Use interleaved gradient noise for distance fade | Hugo Locurcio | |
This provides better visuals and performance compared to the previous ordered dither. | |||
2022-08-05 | Merge pull request #59844 from Calinou/rename-shader-param-methods | Rémi Verschelde | |
2022-08-05 | Merge pull request #63922 from rburing/fix_softbody_normals | Rémi Verschelde | |
2022-08-04 | Rename shader parameter uniform setter/getter methods for consistency | Hugo Locurcio | |
`shader_uniform` is now consistenly used across both per-shader and per-instance shader uniform methods. This makes methods easier to find in the class reference when looking for them. | |||
2022-08-04 | Fix SoftDynamicBody3D normals | Ricardo Buring | |
Store normal vector in A2B10G10R10 format. | |||
2022-08-04 | Merge pull request #61856 from iwek7/label_overflowing_text | Rémi Verschelde | |
2022-08-04 | Merge pull request #63852 from fire-forge/default-colors | Rémi Verschelde | |
2022-08-04 | Merge pull request #63838 from tefusion/fix-arrange-nodes-freeze | Rémi Verschelde | |
Fix GraphEdit::arange_nodes causing a freeze when cycle in Graph | |||
2022-08-04 | Fix issue with overlaping text label text | iwek | |
2022-08-04 | Merge pull request #58536 from winterpixelgames/feature/virtual-keyboard-types | Rémi Verschelde | |
Add support for multiple virtual keyboard types | |||
2022-08-04 | Merge pull request #54792 from EIRTeam/independent_arrows | Rémi Verschelde | |
2022-08-04 | Fix GraphEdit::arange_nodes causing a freeze | tefusion | |
When a Graph contains cycles, e.g. 1->2->3->1 _layering would end up in an infinite loop since IS_SUBSET would never be true. By keeping check of the size of z, which contains the already layered nodes, one can detect a freeze (since it should change after current_layer increases. If it doesn't "u" didn't change and q and u will never be equal resulting in a freeze/infinite while loop). If a freeze happens warn the user and put all the nodes part of the cycle (leftover in p) to the first layer which will end up in them being listed top to bottom. | |||
2022-08-04 | Add support for multiple virtual keyboard types | Brian Semrau | |
2022-08-04 | Independent spinbox arrow step precision | Jóhannes Gunnar Þorsteinsson | |
Rebased by EIREXE This work has been kindly sponsored by IMVU & EIRTeam. | |||
2022-08-04 | Merge pull request #49947 from ↵ | Rémi Verschelde | |
Calinou/standardmaterial3d-tweak-default-height-properties | |||
2022-08-04 | Tweak StandardMaterial3D's default height properties | Hugo Locurcio | |
- Set the default height scale to 5.0 and multiply it by 0.01 in the shader. - Document heightmap properties in BaseMaterial3D class reference. | |||
2022-08-04 | Merge pull request #62230 from Calinou/sdfgi-cell-size-remove-linked-properties | Rémi Verschelde | |
Don't store the values of linked SDFGI properties in Environment | |||
2022-08-04 | Merge pull request #63890 from Calinou/camera3d-size-allow-precise-adjustments | Rémi Verschelde | |
Allow more precise adjustments of orthogonal/frustum size in Camera3D | |||
2022-08-04 | Fix Hue slider incorrectly rotated 90 degrees in ColorPicker | Rindbee | |
2022-08-04 | Don't store the values of linked SDFGI properties in Environment | Hugo Locurcio | |
2022-08-03 | Allow more precise adjustments of orthogonal/frustum size in Camera3D | Hugo Locurcio | |
2022-08-03 | Merge pull request #63791 from V-Sekai/mend-ok-hsl-washout | Rémi Verschelde | |
2022-08-03 | Merge pull request #59303 from KoBeWi/check_out_my_very_long_button | Rémi Verschelde | |
2022-08-03 | Merge pull request #63348 from Rindbee/fix-toggling-after-scrolling-causes-blank | Rémi Verschelde | |
2022-08-03 | Merge pull request #61851 from Calinou/particles-default-global-coordinates | Rémi Verschelde | |
2022-08-03 | Merge pull request #63820 from nathanfranke/templates-in-header | Rémi Verschelde | |
2022-08-03 | Merge pull request #56451 from Calinou/rootmotionview-no-replace-with-node | Rémi Verschelde | |
Don't replace RootMotionView with Node in a running project | |||
2022-08-03 | Don't replace RootMotionView with Node in a running project | Hugo Locurcio | |
This behavior was inconsistent with other editor-only nodes such as Position3D, Position2D and ReferenceRect. It also caused issues when a script extended RootMotionView as it ceased to work when the project was run. | |||
2022-08-02 | move rpc and rpc_id implementations back to header | Nathan Franke | |
StackOverflow on why this is needed: https://stackoverflow.com/questions/495021/why-can-templates-only-be-implemented-in-the-header-file Minor mistake in commit ca7d572908c58c587214b8f65bdd4078d0185ab2 | |||
2022-08-02 | Add space to ParticlesMaterial "Particle Flags" group name | FireForge | |
- "ParticleFlags" -> "Particle Flags" | |||
2022-08-02 | Adjust 2 default theme colors in ItemList and Tree | FireForge | |
- Change Tree's drop_position_color from orange to white. - Change ItemList's guide_color to the same color as Tree's, which fits in with a dark theme better. | |||
2022-08-02 | Add fit_to_longest_item to OptionButton | kobewi | |
2022-08-02 | Use global coordinates for particles by default | Hugo Locurcio | |
Particles won't move or rotate anymore with the node (or its parents) by default. This new default behavior is generally more suited to most use cases. Local coordinates can still be enabled on a per-node basis. This affects both 2D and 3D particles, and both CPU and GPU-based particles. | |||
2022-08-02 | Merge pull request #63597 from paddy-exe/spatial-shader-built-ins | Rémi Verschelde | |
Add often used built-ins (camera-pos, object-pos, camera-eye etc.) to spatial shaders | |||
2022-08-02 | Merge pull request #63827 from fire-forge/particles | Rémi Verschelde | |
Rename `ParticlesMaterial.turbulence_active` to `turbulence_enabled` | |||
2022-08-02 | Add spatial built-ins (camera-pos, object-pos, camera-eye etc.) | Patrick Exner | |
2022-08-02 | Rename ParticlesMaterial.turbulence_active to turbulence_enabled | FireForge | |
2022-08-02 | Fix GraphNode slot list | kobewi | |
2022-08-02 | Added default values to particle turbulence. | Raffaele Picca | |
2022-08-02 | Merge pull request #51672 from Calinou/shader-add-hint-transparent-texture | Rémi Verschelde | |
Add `hint_transparent` to use a transparent black placeholder texture | |||
2022-08-01 | Add `hint_transparent` to use a transparent black placeholder texture | Hugo Locurcio | |
This can be used in shaders to avoid the need to supply a transparent placeholder texture manually. | |||
2022-08-01 | Fix ColorPicker color and hsv sync issue | Johan Aires Rastén | |
ColorPicker has both a Color and HSV values for the currently selected color, fixed a few cases where those were not kept in sync. Refactored a little regarding this, and removed a redundant update. Solves #63777 | |||
2022-08-01 | Mend the non-matching okhsl colors. | K. S. Ernest (iFire) Lee | |
Closer match. | |||
2022-08-01 | Improve easing inspector usability | Hugo Locurcio | |
- Add `positive_only` property hint to disallow using negative presets. These values are clamped in several places in the editor already, so this avoids displaying presets that don't work. - Move the Zero preset at the end of the positive list to match the custom property editor. It's also used less often than Linear, Ease In and Ease Out. - Rename presets to be consistent between the easing property editor and custom property editor. - Remove unused `inout` hint which was redundant since it was already the default. | |||
2022-08-01 | Change LabelSettings default values to match default theme. | bruvzg | |