Blade & Sorcery
0 of 0

File information

Last updated

Original upload

Created by

HuJohner

Uploaded by

HuJohner

Virus scan

Safe to use

Tags for this mod

About this mod

This is a framework to allow modders to create an Item Wheel Menu.

Requirements
Permissions and credits
Changelogs
Donations
PCVR version | Nomad version


Item Wheel Menu Framework

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"
}
],