Age | Commit message (Collapse) | Author |
|
Fix duplicate selection in SceneTree
|
|
Tweak editor select mode drag threshold for better usability
|
|
* It seems both cell_selected and multi_selected were being triggered,
* This caused inspector updating twice.
* cell_selected connection and callback were removed.
This may be a bug in Godot 3.x too, recommend checking.
|
|
Create many types of popups on demand
|
|
* LineEdit popups created on demand.
* TextEdit popups created on demand.
* SpinSlider popups created on demand.
* ResourcePicker popups created on demand.
Improves editor responsiveness.
|
|
pycbouh/editor-theme-eagerly-grab-focus-on-popup-and-never-let-go
Fix focus behavior in the Add Item Type dialog of the Theme editor
|
|
|
|
WebSocketServer: Expose the resource name the client used
|
|
Fix control picker in the Theme editor
|
|
Modernize display_server_... headers and make style consistent (use override keyword)
|
|
This information is exposed to the websocket server through the
client_connected-signal.
example.com/chat?id=10 gives the resource name "/chat?id=10"
|
|
Enable range coder compression by default in NetworkedMultiplayerENet
|
|
From empirical testing, this seems to provide the best compression
compared to other compression algorithms when used in the
Multiplayer Bomber demo.
Other algorithms may provide better compression ratios for more
complex games, but some compression is probably better than
no compression.
Zstandard was also not very efficient in my testing, so I added
a note in the documentation.
|
|
|
|
|
|
MultiplayerAPI is_network_server Fails Silently
|
|
Add shape_idx to CollisionObject2D mouse_entered signal
|
|
- Use a smaller drag threshold (8 pixels instead of 10 pixels).
- Scale the 2D editor drag threshold with the zoom to make it
work the same regardless of the current zoom level.
|
|
Support for 3D sync to physics
|
|
Move sync to physics to StaticBody2D
|
|
Same implementation as in 2D.
|
|
Now static body is used for moving platforms through kinematic motion
property, so sync to physics needs to be in StaticBody2D instead of
CharacterBody2D.
Constant kinematic motion is also supported in combination with sync to
physics for smoother movements.
|
|
Improve UI for creating and editing plugins.
|
|
Add ability to set object instance binding on creation
|
|
Added ability to load Android build sources from file.
|
|
* Required by binding generators
* Makes it easier to create the bindings on construction.
|
|
|
|
Added a shader warning about unused local variable
|
|
|
|
Non-threads build are broken anyway.
|
|
Use 32bit instead of 64bit 3D render buffer on mobile renderer
|
|
* If not present, the dialog asks to load build sources from a file.
* The export templates check now also verifies that build sources are installed and skips the template check.
This makes Android development easier.
|
|
Added Node name to print() of all Nodes by making to_string() in Object virtual, so it can be overriden in C++.
|
|
The XR API changed a bit, and it's not just a rename, though probably an
easy update for someone who is qualified :).
|
|
Do not change scene on save when debugging
|
|
Mono: Remove info dialog discouraging use in production
|
|
Add the ability to reorder array elements from the inspector
|
|
|
|
Fixing 2D moving platform logic
|
|
|
|
Fix equality operators in List's ConstIterator
|
|
Fixing by applying the movement in two steps, first the platform
movement, and then the body movement. Plus, add the platform movement
when we are on_wall.
|
|
While there are still various bugs to solve and features to implement, the C#
support as of Godot 3.4 is fairly mature and already used by a number of users
in production. Now that we default to dotnet CLI as build tool, it also seems
to be more reliable than MSBuild.
The documentation can (and does for the most part) point out some caveats that
users should be aware of, but this info dialog has outlived its intended
purpose.
|
|
|
|
Misc cleanup of header includes
|
|
Add the ability to preview viewports from the inspector
|
|
Was looking for misuse of module headers without checking that the module is
actually enabled and got carried away...
|
|
Removes lines about window size from the console output
|
|
|
|
foxydevloper/prevent-selecting-locked-nodes-list-tool
Fix wrong behavior of list tool & alt+rmb for locked nodes
|