Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

I've noticed an issue when enemies use the same (charged) skills as player actors - the way the "canPaySkillCost" function is overwritten by this plugin will always return false for enemies. So they will only be able to sit around and do nothing. This can work for some games (where the enemies use different skills from actors) but for others, where enemies and actors use the same database skills, an easy bandaid solution is to change the line inside the function from "if (!this.isActor()) return false;" to "if (!this.isActor()) return true;". It means that enemies will have infinite charges on their skills, but for a future update of this plugin I think it would be awesome if there was some way to use the charges for enemies too in the same way that actors do.