1
0
mirror of https://github.com/minetest/minetest_game.git synced 2024-12-22 15:00:18 +01:00

Update game_api.txt

This commit is contained in:
LoneWolfHT 2022-02-07 18:17:07 -08:00 committed by Lars Müller
parent ce82241ab2
commit 659895c3ed

View File

@ -440,6 +440,11 @@ Player API
The player API can register player models and update the player's appearance.
* `player_api.globalstep(dtime, ...)`
* The function called by the globalstep that controls player animations.
You can override this to replace the globalstep with your own implementation.
* Receives all args that minetest.register_globalstep() passes
* `player_api.register_model(name, def)`
* Register a new model to be used by players
* `name`: model filename such as "character.x", "foo.b3d", etc.