Add-Ons buttons are not working correctly.

GameDev

New member
I drag and dropped my character to add abilities such as Agility, Swimming, Climbing.
But as you can see in the image, the "Setup character" button is not working properly.
For example I drag and dropped my character to Agility pack but climbing's "Setup character" is activated.
If I click climbing's "Setup character" button in this case, climbing ability is added to my character.
About swimming, that is same.
 

Attachments

  • 2.png
    2.png
    71.7 KB · Views: 2
I actually just fixed this a couple of days ago. It required a relatively large refactor (switching from static to instance) objects. For now what you can do is comment out the inspector code for the add-on that you don't want to use. For example, since you only want to add Agility you'd comment out the entire class for the ClimbingAddOnInspector and the SwimmingAddOnInspector. This way one one will show and it'll work properly.
 
Top