User Tools

Site Tools


playground:playground

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
playground:playground [2021/09/16 19:58]
kodicraft4
playground:playground [2021/09/16 20:28] (current)
kodicraft4
Line 39: Line 39:
 Some images you might find appear to contain multiple sprites, those can either be used as animation frames, indications of a state, or both. Some images you might find appear to contain multiple sprites, those can either be used as animation frames, indications of a state, or both.
  
-{{:playground:image_2021-09-16_215613.png?400 |''img/sv_actors/!battle_bun_bunny.png'' Example of such an image}}''img/sv_actors/!battle_bun_bunny.png'' Example of such an image+{{:playground:image_2021-09-16_215613.png?400|}}
  
 +''img/sv_actors/!battle_bun_bunny.png'' is an example of such an image
  
 +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's size, as it is done dynamically.
 +
 +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 ''/www/'', for instance, if you have edited the image in ''www_playtest_01234567/img/sv_actors/!battle_bun_bunny.png'', you must put that image in ''www/mods/<yourmodID>/img/sv_actors/!battle_bun_bunny.png''.
 +
 +Afterwards, you must edit the file ''www/mods/<yourmodID>/mod.json'' to include the path to your modified image's folder in its assets, so in our example, your ''mod.json'' should look similar to this:
 +
 +<code json>
 +{
 +    "id": "yourmodID",
 +    "name": "Your mod's name",
 +    "description": "A longer description for your mod",
 +    "version": "1.0",
 +    "files": {
 +      "plugins": [],
 +      "text": [],
 +      "data": [],
 +      "maps": [],
 +      "assets": ["img/sv_actors/"],
 +      "exec": []
 +    }
 +  }
 + </code>
 +  
 + And done! Your modified file should now appear in game in the place that you replaced.
 +
 +TODO: Talk about image deltas.
playground/playground.1631822287.txt.gz ยท Last modified: 2021/09/16 19:58 by kodicraft4