About this mod
This is a framework to allow modders to create an Item Wheel Menu.
- Requirements
- Permissions and credits
- Changelogs
- Donations
NOTE: This mod uses scripting and requires the Scripting Beta.There may be issues, so if you encounter any use the Bugs section to report them in as great detail as possible what you were doing when the crash happened.
This is a framework to allow modders to create an Item Wheel Menu.
Installation
Can be installed like any other mod using a mod manager.
For Mod Authors
To create a ItemWheelMenu you will need to create a new json file: 'ItemWheelMenu_ExampleItemMenu.json'
{
"$type": "ItemWheelMenuFramework.ItemWheelMenuData, ItemWheelMenuFramework",
"id": "ExampleItemMenu",
"sensitiveContent": "None",
"sensitiveFilterBehaviour": "Discard",
"version": 0,
"orbCenterEffectId": "ExampleCenterEffectId",
"items": [
{
"itemId": "ExampleItemId1",
"iconEffectId": "ExampleIconEffectId1"
},
{
"itemId": "ExampleItemId2",
"iconEffectId": "ExampleIconEffectId2"
}
]
}
You can then add the following ItemModule to any item to allow it to open the item wheel menu with the above defined items:
"modules": [
{
"$type": "ItemWheelMenuFramework.ItemModuleWheelMenu, ItemWheelMenuFramework",
"itemWheelMenuId": "ExampleItemMenu"
}
],