Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/veprogames/mt-resizeme
- Owner: veprogames
- License: lgpl-2.1
- Created: 2023-07-25T16:06:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-01T16:08:18.000Z (over 1 year ago)
- Last Synced: 2024-10-10T22:20:32.726Z (about 1 month ago)
- Topics: lua, minetest, minetest-mod, mod
- Language: Lua
- Homepage:
- Size: 298 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```