Skip to content

v5 to v6 Asset Rename#

With the release of v6, we have taken some time to rearrange and update our assets such that they are more logically organized. This change has affected two things:

  1. How assets are organized on-disk
  2. How assets are named in-game

This change affects background images, CG images and (to a small extent) character sprites.

Why?#

Because the way things were "organized" prior to this was a mess. Ideally we wanted to move to a new naming convention which is consistent and somewhat logical.

As just one example, naming all backgrounds relating to John's house main instead of actually putting his name there (like we did for every other family house) was pretty whack.

What actually happened?#

A few areas have been touched upon, which will be elaborated upon in a dedicated section for each:

Character Sprites#

We have renamed Connie's preggers outfit to pregnant so it's a bit less cringe. Aside from that, natalie has transformed into naomi now. That's about it, really.

We thought about rearranging some outfit names to be more consistent, but eventually found that this would be too much trouble to make it worth it, as everybody would've had to update their script files manually. And we're all allergic to manual labor.

Background Images#

This one's a bit of a bigger change. More to the point, we decided to group backgrounds which are related to each other together, such that it becomes easier to intuit what goes where.

Specifically, we opted for a general naming scheme of the format <location> <room> <variant>.

As an example, John's bedroom is now called bg house_davis bedroom_john day.

This scheme has been applied to all family houses and most other locations which can accomodate this naming convention. For the few backgrounds that can't, they exist as they did before, so no changes were made to those.

For those who are curious about the exact list of changes that were made, you can check out the full list in our GitLab repository, right here. This is a simple CSV file with the old name on the left and the new name on the right.

CG Images#

CG's were reorganized a bit as well. This largely consisted of us renaming things, where there are two distinct parts:

  1. The base name of the CG
  2. Names of components within a specific CG

The goal here was to group CG's more sensically. For example, the Mina and Phila CG's were all over the place, with some CG's which contained both of the twins stored in the mina folder while others were stored in the john_mina_phila folder. This made referencing things very unintuitive.

In addition to this, we also updated some of the component names, such that we wouldn't have to write dick_jizz1 anymore, and instead opted for a more refined (and consistent) penis_0_semen.

As for the background images before, we also have a full list of changes for these on our GitLab repository, right here. This list is a bit more complex, as it consists of newline-delineated groups, each of which targets a specific CG. The first line is always the old and the new base name (which may be the same). The lines below that are the old and the new names of components within that CG which have been updated.

Updating Your Stuff#

As is customary with changes that break things for scenarios and would require copious amounts of work to update, we provide a way to not have to do that by hand.

Just like with the JSON to YAML conversion, we provide a tool and a capable person who knows how to use it to batch-update all your Ren'Py script files in one fell swoop. Since it is a Python script, it can be somewhat difficult to set up, so if you don't feel like doing that, you can hit up cobaltcore#0045 on Discord (or on the TFGS forums via private message) to have them do it for you.

The script works by looking at the two lists of changes that are linked in the sections above and then scanning through all your script files line-by-line, updating background and CG names where appropriate. After this process is complete, you should have a fully-functioning script file which works in v6.


Last update: August 3, 2021