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: 3 months 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-01T16:08:18.000Z (almost 3 years ago)
- Last Synced: 2025-04-15T09:53:35.328Z (about 1 year ago)
- Topics: lua, minetest, minetest-mod, mod
- Language: Lua
- Homepage:
- Size: 298 KB
- Stars: 3
- 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)
```