Comments

Log in with itch.io to leave a comment.

Awesome plugin, I'm trying to use this to create a library for progression notes, logs, and documents for an explorer horror game and it works great so far! I would like to be able to fit my five custom category options onto a single line (by default it will only show 4 options before forcing you to scroll down for the fifth) - which part of the code in the .js file could I go to in order to change that?

I'd also like to make the sketch appear on top of the description for entries with pictures, but I'm guessing I'd just swap the order they're drawn in in the .js file. Thanks again for your work on this!

Hi, I am not entirely sure on the MV codebase any longer but I believe you should be able to add

CGMV_Window_EncyclopediaCategory.prototype.maxCols = function() {
    return 5;
};

to change how many appear on one line.

Getting the image to display above the text is not going to be as straightforward because there is some loading time for images, so when it draws the text it does not actually know how tall the image is to automatically leave that much space for the image. If all your images are the same height, you could change the y values of the text / image.

that’s really helpful, thanks! The idea is that the protagonist is taking photos of important items and documents with her phone so making the images all the same size would absolutely work 😁

(2 edits)

Hi, I downloaded your plugin, but I have a question: How do I remove the word "description" from the custom post descriptions?

I want to hide that word because it seems obvious to me. I just want to leave the description as is without the word "description:" I already deleted text it in the plugin editor but it still appears.

I'd also like to hide the word "sketch" that always appears before the image is displayed in each post. Thanks.

What should I change in the plugin to hide that word?

Thanks.

Hi, in CGMV_Window_EncyclopediaDisplay.prototype.drawCustomDescription change the line where it sets the label to instead be:

var descriptor = "";
(3 edits)

Ok, it worked! thanks!