💡
Omori Modding Wiki
  • 🚩getting started
    • Overview
    • Installing Mods
    • Decryption and Playtest Generation
      • Resetting Installation
      • Dev Tools
    • Packaging Mods
      • mod.json File
    • Omori Files Guide
      • Common File Types
      • Omori Files Index
        • Data Files
  • 🏰RPG Maker MV
    • ⭐Intro to RPG Maker MV
    • 🗒️Common Notetags and Filename
      • Map Event Notetags
      • RPG Maker Sprite Sheet Formats
        • Sprite Sheet Filenames
      • Enemy Notetags
    • Custom Battles
      • Plot Armor
    • Map Creation
    • Event Plugin Commands
    • YAML Texts and Dialogues
      • Text Codes
      • Omori Text Color Convention
    • Shops
    • Quests
    • Bubbles / Balloons
  • 🎨Art Assets
    • Intro to Art Assets
      • Ex 1: Headspace Portrait
      • Art Specifications
      • Art Programs
    • Line Art
      • Preparations
      • Line Quality
      • Line Coloring
        • Direct Colored Brush
        • Blend Layers
        • Color Correction
          • Color Balance
          • Tone Curve
          • Gradient Maps
  • Community
    • Omori Mod Licensing Guide
  • Links
    • Mod Resources/Plugins
    • Omori Modding Hub (Server)
    • Omori Mod Site (Unofficial)
    • Original Masterdoc
    • Omori Data Archive
Powered by GitBook
On this page
  • Table Summary
  • Examples
  • Extra Resources
  1. RPG Maker MV
  2. Common Notetags and Filename
  3. RPG Maker Sprite Sheet Formats

Sprite Sheet Filenames

About sprite sheet formatting, and the prefixes

PreviousRPG Maker Sprite Sheet FormatsNextEnemy Notetags

Last updated 1 year ago

Sometimes some sprite sheet have special character associated in the file name, which changes it's function.

Sprites are set by the top-left corner of the sprite. Meaning larger sprites will overlap to the bottom-right tiles.

Table Summary

Char
Example
Description
Omori Use Case

name.png

Standard regular sprite sheet. Having 8 character in total in sets of 3x4 tiles, totals to 12x8 tiles. In OMORI case the cells are usually in 32x32 pixel.

It is possible to have larger sprite, the engine simply divide by 12x8.

Default

$

$name.png

Turns the sprite so it's only single character.

It is possible to have larger sprite, the engine simply divide by 3x4.

Large unique enemies, Animated decorations

!

!name.png

In RPGMV characters will be shown 6 pixels above tile by default. This removes that offset.

Doors, Decorations

[SF]

[SF]name.png

This makes it singular sprite. This may appear in preview incorrectly as divided, but will display in-game as singular image.

Large Decorations: Chandeliers, Holes, Curtains

%(x)

name%(5).png

This is a suffix, put at the end. This specifies specific amount of frames in horizontal direction, with x being the number.

Running Sprites, Fear Enemies

Prefixes also can be combined

Examples

Here's some example sprite used in actual game, with context.

In some sprite you might notice some have a combination of multiple things in the same area. This is likely that the frames are still or hard set to specific frames, being set in RPGMV. By default RPGMV will go by 3x4 set treating like characters.

Extra Resources

🏰
🗒️
[SF]SW_Hole.png This hole is a single large sprite Appears in Sweetheart Castle.
!objects_fa_doors.png ! removes the offset, good for doors. Note that the doors are 2 tiles tall as well, as it is slightly taller than 1 tile.
$FA_OMORI_RUN%(8).png This is a running sprite, $ sign tells it's single character, %(8) tells there are 8 frame horizontal.
LogoSprite Sheet Formats and $/!RPG Maker Forums
RPG Maker Forums on Sprite Sheet Formats