Hello,
I'm trying to set each slot's RegionAttachment size using the following code but it is not working and I still have the default size
for(Slot s : this.skeleton.getSlots()){
if(s.getAttachment() instanceof RegionAttachment){
RegionAttachment attachment = (RegionAttachment)s.getAttachment();
attachment.setWidth(100);
attachment.setHeight(100);
}
}