Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/veprogames/mt-resizeme

Minetest Mod to change player size. with API
https://github.com/veprogames/mt-resizeme

lua minetest minetest-mod mod

Last synced: 14 days ago
JSON representation

Minetest Mod to change player size. with API

Awesome Lists containing this project

README

        

# resizeme

Minetest Mod

Lets you scale the player with a command or through Lua.

Example: `/resizeme 0.5` sets your scale to 0.5

This mod also exposes an API, and should be used something like this:

```lua
local ResizeMe = dofile(minetest.get_mod_path("resizeme").."/api.lua")

-- scale singleplayer to 3x
ResizeMe.resize("singleplayer", 3)
```