MineClone2/mods/ITEMS/mcl_compass/API.md
kabou 8a4b8707fa Add new compass API.
* Add API.md
* Update mcl_itemframes to use the new API.
* Revert old exported function back to original API.
2022-05-10 23:38:28 +02:00

728 B

mcl_compass

Compass API

##mcl_compass.stereotype = "mcl_compass:" .. stereotype_frame Default compass craftitem. This is also the image that is shown in the inventory.

##mcl_compass/init.lua:function mcl_compass.get_compass_itemname(pos, dir, itemstack) Returns the itemname of a compass with needle direction matching the current compass position.

pos: position of the compass; dir: rotational orientation of the compass; itemstack: the compass including its optional lodestone metadata.

##mcl_compass/init.lua:function mcl_compass.get_compass_image(pos, dir) -- Returns partial itemname of a compass with needle direction matching compass position. -- Legacy compatibility function for mods using older api.