summaryrefslogtreecommitdiffstats
path: root/modules/multiplayer/editor
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix periods in editor strings and messagesHugo Locurcio2022-11-141-1/+1
| | | | | | - Ensure all strings with ellipsis end with 3 periods instead of 2. - Fix extraneous period in "Error calling from signal '...' to callable" messages.
* [MP] Move engine and editor profilers to a plugin.Fabio Alessandrelli2022-11-146-90/+503
| | | | Also refactor the editor plugin out of the ReplicationEditor.
* Use forward-declarations in EditorPlugin where possibletrollodel2022-11-112-6/+7
|
* Unify usage of undo_redo in editorkobewi2022-11-021-2/+2
|
* Add per-scene UndoRedokobewi2022-08-221-3/+4
|
* [MP] Cleanup and fixes for replication plugin.Fabio Alessandrelli2022-08-072-122/+8
| | | | | - Remove dead code. - Fix "Add from path" adding the wrong string when targeting root node.
* Remove excessive `editor/property_editor.h` includesYuri Sizov2022-08-012-0/+5
|
* Extract EditorResourceConversionPlugin into its own source files and clean ↵Yuri Sizov2022-07-311-1/+0
| | | | up editor includes
* Remove Signal connect bindsJuan Linietsky2022-07-291-2/+2
| | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* [Net] Modularize multiplayer, expose MultiplayerAPI to extensions.Fabio Alessandrelli2022-07-262-0/+793
- RPC configurations are now dictionaries. - Script.get_rpc_methods renamed to Script.get_rpc_config. - Node.rpc[_id] and Callable.rpc now return an Error. - Refactor MultiplayerAPI to allow extension. - New MultiplayerAPI.rpc method with Array argument (for scripts). - Move the default MultiplayerAPI implementation to a module.