This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
playground:playground [2021/09/16 07:35] 127.0.0.1 external edit |
playground:playground [2021/09/16 20:28] (current) kodicraft4 |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== PlayGround ====== | ====== PlayGround ====== | ||
+ | ====== Replacing image files ====== | ||
+ | Images in OMORI contain most visual elements you can see through the game, those include but are not limited to: | ||
+ | * Battle backgrounds | ||
+ | * Characters | ||
+ | * Enemies | ||
+ | * Faces | ||
+ | * UI | ||
+ | |||
+ | Changing images can be done with any image editor and requires a [[modding: | ||
+ | |||
+ | ===== Finding the files to replace ===== | ||
+ | The first step to modifying the game's images are locating the images you want to change. | ||
+ | Images can be found under '' | ||
+ | |||
+ | Under '' | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Each folder contains a series of image files, usually in a '' | ||
+ | |||
+ | ^Folder name^Folder contents^ | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |'' | ||
+ | |||
+ | ===== Editing sets of images ===== | ||
+ | Some images you might find appear to contain multiple sprites, those can either be used as animation frames, indications of a state, or both. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | '' | ||
+ | |||
+ | Those images can be divided in multiple ways, depending on their purpose in the game, as such it is recommended to keep in mind the original layout while editing the image. The division does not care for the image' | ||
+ | |||
+ | For instance, all battle sprites are divided in a 4x6 pattern, the image that is displayed in the battle changes alongside the horizontal axis to form an animation, and the status of the enemy dictates the vertical position of the image (Neutral, taking damage, defeated, sad, angry and happy). | ||
+ | |||
+ | //Note: Certain enemies, notably enemies that can feel more emotions than just SAD, ANGRY and HAPPY will have more vertical sprites in their image// | ||
+ | |||
+ | ====== Putting the images in a mod ====== | ||
+ | After editing your images, you must put them in your **mod folder** under the same path relative to your decrypted ''/ | ||
+ | |||
+ | Afterwards, you must edit the file '' | ||
+ | |||
+ | <code json> | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | | ||
+ | And done! Your modified file should now appear in game in the place that you replaced. | ||
+ | |||
+ | TODO: Talk about image deltas. |