Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

cutebutwhy

7
Posts
2
Topics
A member registered 33 days ago

Recent community posts

(1 edit)

Does this allow me to customize the Options and Save screens?

Does this plugin allow me to customize the Options and Save screens?

Hi there! How is the setup to configure which frames play with each action/motion? Would it be possible to have separate 1-row sheets for each action? That would make things much easier

Yep, that's the one! It's one of the official DLC ones that come free with MZ. Thank you for following up on this!

For some reason this beta version of the plugin doesn't seem to trigger anything at all on the event, whether it be the patrolling route or the player chase. Tried disabling the dotmove movement and also on a fresh new project, and it doesn't seem to work.

I did manage to get it kinda working by changing this parameter on the chase part of the plugin:

// Move towards target
      const dir = npc.findDirectionTo(targetX, targetY);
      if (dir > 0) {
        npc.dotMoveToPlayer();
      } else if (npc._spChaseTimer > $gameSystem.frameRate() / 2 && Math.random() < 0.1) {
        npc.turnRandom();
      }
    }
  };

However, it's inconsistent. And I think DotMove creates problems for the event's vision, since the vision is tile-based and DotMove makes it so the player isn't always aligned with a tile.

Is it possible to make the NPC movement work with DotMove? The chase state now always follows the regular RPG Maker grid movement even if I have DotMove enabled.

(1 edit)

Thank you for making this awesome plugin, editing my parallax backgrounds is much more fun and easy with it! Some things that would really take this to the next level though, although I have no idea how realistic these are:

- Add support for collision maps. This is already possible with other plugins, but adding the option of drawing or adding a collision map image in the same plugin would be amazing;

-Zooming out when viewing the map. Using the arrow keys is a big help, but since I'm using quite low resolutions, the ability to zoom out would also make things very easy.

-It would be a big help to be able to duplicate layers that have already been added, especially because many times we use duplicated elements in the maps (like trees)

Anyways, thank you for making this awesome plugin!