| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when
accessing a single element)
* Removed subscript operator, in favor of a more explicit `get`
* Added conversion from `Iterator` to `ConstIterator`
* Remade existing operations into other solutions when applicable
|
| | |
| | |
| | |
| | |
| | | |
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|/ / |
|
|\ \
| |/
|/|
| | |
[MP] Gracefully handle cache confirmation of deleted nodes
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
It's possible that after sending a cached node reference (e.g. RPC or
static MultiplayerSynchronizer) the reference node is removed from tree
before the remote peer(s) can confirm the referenced path.
To better detect that case, and avoid spamming errors when it happens,
this commit modifies the multiplayer API caching protocol, to send the
received ID instead of the Node path when sending the confirmation
packet.
**This is a breaking change** because it makes the runtime multiplayer
protocol incompatible with previous versions of Godot.
|
|\ \
| | |
| | |
| | | |
Fix node config warning not updating for `Multiplayer{Spawner,Synchronizer}`
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Fix missing i18n for some editor strings
|
| | |/
| |/| |
|
|/ /
| |
| |
| |
| |
| | |
- Mark contextually relevant node
- Remember/Clear selection as appropriate
- Scroll to marked/selected node
|
|/
|
|
|
|
| |
- When unpressed, only hide the editor if MultiplayerSynchronizer is not
selected.
- Add tooltip text.
|
| |
|
|
|
|
|
|
|
|
| |
Default shortcuts use the first or second letter of each word.
This also adds a new shortcut to toggle the last opened bottom panel.
On editor startup, this defaults to the first panel in the list
(which is the Output panel).
|
|
|
|
|
| |
Override the `reset_state` method to properly handle reloading the
resource from disk.
|
| |
|
| |
|
|\
| |
| |
| | |
Extract BottomPanel from EditorNode
|
| | |
|
|\ \
| | |
| | | |
Add keywords to improve search in the class reference
|
| |/ |
|
|\ \
| |/
|/|
| | |
[MP] Fix auth not waiting for confirmation in some cases
|
| |
| |
| |
| |
| |
| |
| |
| | |
The auth implementation was treating any received packet as a remote
confirmation after the peer was confirmed locally.
It now correctly awaits for the remote confirmation packet before
admitting new peers.
|
|\ \
| | |
| | |
| | |
| | |
| | | |
KoBeWi/check_every_changed_setting_in_every_group_everywhere()
Use `check_changed_settings_in_group()` everywhere
|
| | | |
|
|\ \ \
| |/ /
|/| |
| | | |
Update many Deprecated/Experimental descriptions for consistency
|
| | | |
|
|/ /
| |
| |
| | |
This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
|
|\ \
| | |
| | |
| | | |
Fixed binary representation typo in comment
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | | |
[MP] Fix remote net ID cleanup
|
| |/
| |
| |
| |
| |
| |
| |
| |
| | |
Synchronizers for spawned nodes were not correctly keeping track of the
net ID assigned by the remote, preventing the replication from
performing the proper cleanup.
This resulted in errors being thrown when sync messages were received
after despawn (which is possible due to their unreliable nature).
|
|\ \
| | |
| | |
| | | |
[MP] Fix spawned nodes not working after reset
|
| |/
| |
| |
| |
| |
| | |
Ensures that spawnable nodes (i.e. spawned nodes over which the local
instance has authority) always have a network ID, since they may lose it
after the multiplayer is reset (e.g. when changing the multiplayer peer).
|
| |
| |
| |
| |
| | |
Make sure we delete the relevant ObjectID from the cache when the nodes
are removed from tree.
|
|/
|
|
|
|
|
|
|
|
|
|
|
| |
This change introduces a new EditorThemeManager class
to abstract theme generatio and its subroutines.
Logic related to EditorTheme, EditorColorMap, and editor
icons has been extracted into their respective files with
includes cleaned up.
All related files have been moved to a separate folder to
better scope them in the project. This includes relevant
generated files as well.
|
| |
|
|
|
|
|
|
|
| |
The SceneMultiplayer complete_auth method was not configuring the
multiplayer peer correctly, causing it to potentially send the
notification to the wrong peer, on the wrong channel, and/or with an
incorrect transfer mode.
|
|\
| |
| |
| | |
[MP] Fix "on change" indexed properties
|
| |
| |
| |
| | |
Watchers were still using Object::get instead of Object::get_indexed.
|