v2.0.0.alpha.7

This release is mainly just to change some assets directories naming so that they are consistent.

Download: https://datadyne.perfectdark.space/monogatari/releases/Monogatari-v2.0.0.alpha.7.zip

Change Log

  • Some assets directories have been renamed to ensure their names are consistent.

Update Guide

Rename your Assets Directories and declarations

The following three assets directories have been renamed to a pluralized version to be consistent with the others so you'll have to rename them as well.

Asset

Old Directory

New Directory

Voice

assets/voice/

assets/voices/

Sounds

assets/sound/

assets/sounds/

Video

assets/video/

assets/videos/

Now, go to the options.js file and find your assets directories declarations, they should look something like this:

options.js
'AssetsPath': {
    'root': 'assets',
    'characters': 'characters',
    'icons': 'icons',
    'images': 'images',
    'music': 'music',
    'scenes': 'scenes',
    'sound': 'sound',
    'ui': 'ui',
    'video': 'video',
    'voice': 'voice',
    'gallery': 'gallery'
},

You'll have to apply the same naming changes as before, the resulting object would then be:

Notice how videos, voices and sounds are now pluralized.

Finally, the assets declaration for those three asset types also need to be changed:

Before:

After:

Last updated

Was this helpful?