| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | |
|
|/ / |
|
| | |
|
| | |
|
|/
|
|
| |
Added to `Object` and `Signal`
|
|\
| |
| |
| | |
Expose Viewport methods to get current 2D/3D audio listener
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
to scripting
Document exposed methods
Apply suggestions from code review
Co-authored-by: Micky <66727710+Mickeon@users.noreply.github.com>
Document default behavior when no audio listeners are active
|
|\ \
| |/
|/|
| | |
Add translation domain
|
| | |
|
|\ \
| |/
|/|
| |
| |
| | |
Hilderin/fix-viewport-texture-must-be-set-to-use-it
Fix Viewport Texture must be set to use it
|
| | |
|
|\ \
| | |
| | |
| | | |
Use `SNAME` for `ui` actions in Viewport
|
| |/ |
|
|\ \
| | |
| | |
| | | |
Remove useless `Viewport::gui.key_input_accepted`
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Expose `get_rpc_config` and `get_node_rpc_config`
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
add documentation
Update doc/classes/Node.xml
change name of get_node_rpc_config to get_rpc_config
Co-Authored-By: moondog <159832633+dog-on-moon@users.noreply.github.com>
Co-Authored-By: Micky <66727710+Mickeon@users.noreply.github.com>
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Improve button behavior when multiple mouse buttons are used at the same time
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- To emit `pressed`, buttons require that the press was initiated while hovering.
- Controls can't grab focus from a mouse click if they're not hovered.
- Hovers are updated both before and after a handled mouse button event.
|
| |_|_|/
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Make Drag and Drop an application-wide operation.
This allows do drop on Controls in other Viewports/Windows.
In order to achieve this, `Viewport::_update_mouse_over` is adjusted to
remember the Control, that the mouse is over (possibly within nested
viewports). This Control is used as a basis for the Drop-operation, which
replaces the previous algorithm, which was only aware of the topmost
Viewport.
Also now all nodes in the SceneTree are notified about the Drag and Drop
operation, with the exception of SubViewports that are not children of
SubViewportContainers.
|
|\ \ \ \
| |_|_|/
|/| | |
| | | | |
[Label3D] Fix updating labels in subvieports on oversampling change.
|
| | | | |
|
|/ / /
| | |
| | |
| | | |
+Fixed compat hashes
|
| | |
| | |
| | |
| | | |
Control.force_drag()
|
|\ \ \
| | | |
| | | |
| | | | |
Clean up Viewport's `forced_mouse_focus`
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
StringName Dictionary keys
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
also added 'is_string()' method to Variant
and refactored many String type comparisons to use it instead
|
|/ / / /
| | | |
| | | |
| | | | |
Updated Viewport destructor to remove itself from World2D, to avoid World2D keeping invalid pointers.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Fix various typos
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Add missing check to avoid passing handled input event to collision object 3d.
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | |
| | | | | | |
Only reset the tooltip timer when the mouse has actually moved
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
InputEventMouseMotion isn't guaranteed to fire only on actual mouse
movement. It's not uncommon for the underlying OS motion event to be
sent either by the OS itself or another application even though the
mouse hasn't moved. Godot will generate such zero-motion
InputEventMouseMotion events itself for things like cursor shape
changes.
Once started, the tooltip timer is reset only after a mouse movement of
at least 5 pixels in one frame.
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | |
| | | | | | |
Improve Editor Inspector/Theme item lookup performance
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Changes to reduce the latency between changing node selection in the editor and seeing the new node reflected in the Inspector tab
- Use Vector instead of List for ThemeOwner::get_theme_type_dependencies and related functions
- Use Vector instead of List for ThemeContext::themes, set_themes(), and get_themes()
- Add ClassDB:get_inheritance_chain_nocheck to get all parent/ancestor classes at once, to avoid repeated ClassDB locking overhead
- Update BIND_THEME_ITEM macros and ThemeDB::update_class_instance_items to use provided StringNames for call to ThemeItemSetter, instead of creating a new StringName in each call
These changes reduce the time taken by EditorInspector::update_tree by around 30-35%
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Fix `Window.wrap_controls` does not account for the `content_scale_factor`
|
| | | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | |
| | | | | |
Fix `Node.duplicate()` crash when duplicating a node that cannot be instantiated.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Split `TranslationServer` into its own file
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Physics interpolation (3D)
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Adds 3D fixed timestep interpolation to the rendering server.
This does not yet include support for multimeshes or particles.
Co-authored-by: lawnjelly <lawnjelly@gmail.com>
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | |
| | | | | | | |
Fix tooltip content being cut off at some display scales
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When getting the minimum size for a tooltip, we get the value as a Vector2. Window::set_size() takes a Vector2i, so this size was getting truncated. At certain display scales, this could be enough to cut off part of the tooltip. Updated to call Vector2::ceil() to round up before calling Window::set_size()
Fixes #91958
|
| |_|/ / / /
|/| | | | | |
|
| |_|_|/ /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | | |
On Windows this allows to avoid having to change the owner of the window
after it has been created, which in rare circumstances may cause the
window to bug out.
|