summaryrefslogtreecommitdiffstats
path: root/doc/classes/MultiplayerAPIExtension.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fix more miscellaneous oddities around the class referenceMicky2024-11-121-5/+5
|
* Add keywords to improve search in the class referenceHugo Locurcio2024-02-221-1/+1
|
* Fix documentation in MultiplayerAPIExtensionMatt Loesby2023-10-311-4/+7
| | | | | | | | | | Fix documentation in MultiplayerAPIExtension.xml In implementing a MultiplayerAPIExtension, I found that the example from documentation did not function even in the Multiplayer tutorial example. Eventually, I found that the issue was that base_multiplayer will not poll unless told to by the LogMultiplayer implementation. I also corrected a spelling issue and a few out-of-date return types.
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Use enum instead of int in virtual methods return typeRaul Santos2023-01-311-4/+4
|
* Fix typos with codespellRémi Verschelde2022-09-301-1/+1
| | | | | | | Using codespell 2.3-dev from current git. And fix typo in `methods.py` for `vsproj=yes` option (still won't work though).
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-9/+9
|
* [Net] Modularize multiplayer, expose MultiplayerAPI to extensions.Fabio Alessandrelli2022-07-261-0/+141
- 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.