A downloadable asset pack

Buy Now$10.00 USD or more

This is a romance themed GUI/UI kit for visual novels made with the Ren'Py engine. It's designed to work with games in the size 1920 x 1080 pixels.

Contents

Comes with graphics for all the default screens such as main menu, game menu, preferences etc.

After purchasing, you will get two .zip files: one contains only the images, the other contains a Ren'Py project containing configuration and styles that make the kit look and behave like they do in the screenshots.

A ctc (click-to-continue) image is included and animated in the example project.

Customize the main menu by drawing your game's characters onto it!

! Important Notes !

Please note that not all GUI images provided as a standard by Ren'Py have been replaced in this package as some images have been left out. Read the "list of contents" below to see what comes with it.

The screenshots provided on this product page uses the setup code provided in the example project that comes with the product. Just using the images provided will not provide the same look alone!

The backgrounds included in the example project are made by mugenjohncel on the lemmasoft forums.

The choices menu have been moved down to the area of the dialogue box in the example project and is designed to be used with dialogue (see screenshot 10).

Some edits have been made to the screens.rpy, and options.rpy file as there was no way to use override styles alone. You can find what those are by going into those files in your editor of choice, and then searching for "CUSTOM CODE".

Other customizations have been done through styles and gui settings in the file named "custom_config.rpy".

List Of Image Contents

  • Button folder: check_foreground, check_selected, choice_idle_background, choice_hover_background, radio_foreground, radio_selected_foreground, slot_idle_background, slot_hover_background.
  • Bar folder: bottom, left, top, right.
  • Overlay folder: game_menu, main_menu (blank images).
  • Scrollbar folder: horizontal_idle_bar, horizontal_idle_thumb, horizontal_hover_bar, horizontal_hover_thumb, vertical_idle_bar, vertical_idle_thumb, vertical_hover_bar, vertical_hover_thumb.
  • Slider folder: horizontal_idle_bar, horizontal_idle_thumb, horizontal_hover_bar, horizontal_hover_thumb, vertical_idle_bar, vertical_idle_thumb, vertical_hover_bar, vertical_hover_thumb.
  • Other: frame, main_menu, game_menu, namebox, notify, skip, nvl.
  • Extras: ctc

Extra Content

A base example Ren'Py project with GUI settings and styles to achieve the look in the screenshots provided on this page is included in the product.

This example project contains and uses two fonts from Google which is free to use and include in personal and commercial applications/products. They are the fonts Fredoka and Titan One. You can read more about them and their licenses by following the links.

License

  • You may incorporate this GUI kit in your personal and commercial games.
  • You may edit the images and code for the kit however you like.
  • You may NOT redistribute this GUI kit as-is.
  • No crediting is needed.

Version Compatibility

The example project was created with version 8.2.1.

Got Questions?

Encounter something not quite right or have questions about this kit? Leave them in the comments section below and I'll get back to you.

StatusReleased
CategoryAssets
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
Author__ess__ VN Assets
GenreVisual Novel
TagsGraphical User Interface (GUI), Ren'Py, Romance, theme

Purchase

Buy Now$10.00 USD or more

In order to download this asset pack you must purchase it at or above the minimum price of $10 USD. You will get access to the following files:

Example project 4.7 MB
Images only 1.5 MB

Comments

Log in with itch.io to leave a comment.

Hello! so i have a question, what would I have to edit to make it so that certain text boxes show up with certain characters?
Like character A has a blue text box while character B has a green one for example?

I tried messing with this code

define B = Character("B", ctc = "ctc", what_prefix = "\"", what_suffix = "\"")

But kept getting an error

Hi! You should be able to use the "window" prefix, according to the documentation page (scroll down until you see "Styling text and windows"): https://www.renpy.org/doc/html/dialogue.html#Character

So, if you have a textbox2.png in your GUI folder for example, and you'd want B to use it, you'd do:

define B = Character("B", ctc = "ctc", what_prefix = "\"", what_suffix = "\"", window_background = "gui/textbox2.png")

You can apply your own style to this window by using "window_style", also mentioned in the same section of the documentation.