Make Visual Novels! RenPy Staging Enhancement Pack
A downloadable asset pack
Consider donating! Proceeds from this pack will be used to fund more prizes for this year's Spooktober Visual Novel Jam!
An appeal from Nai, the creator of this pack:
Make Visual Novels and the Spooktober Visual Novel Jam Competition exist to push visual novel creators to new heights. We rely heavily on our sponsors to afford running the competition the way we have for the past 5 years, and this year we looked towards crowdfunding as a means of ensuring our competition can continue to run and thrive.
We were saddened to find out that art, game, and story competitions like ours are not welcome on crowdfunding platforms.
Your contributions to this stage enhancement pack will be used to fund the prize pot and special categories for our upcoming competition. These special categories encourage and challenge creators to develop new techniques and technologies in a competitive environment, which we then learn from and share.
Lets make awesome visual novels together!
Make Visual Novels RenPy Stage Enhancement Pack!
Master staging and positioning with this stage enhancement pack! Inspired by real-life stages, this pack includes an expanded set of positional presets to help you compose your visual novel's scenes to have a greater visual impact! Take full advantage of RenPy's 3D Camera to introduce depth to your scenes.
Instructions
Just drop the included files into your RenPy project folder next to the rest of your scripts and use the supplied transforms to apply the presets to your characters and other displayables. Adjust the initial configuration settings to fit your character's average dimensions and desired positions just by changing a small number of easy to understand variables!
What's in it?
- 27+ positional presets for your characters. (in MVNStagePackStage)
- Documentation for how to customize the positioning without going crazy or having to edit all 27+ of those presets by hand. (Confguration in MVNStagePackConfig, math in MVNStagePackStage)
- Camera presets to help you take advantage of the 3D camera's abilities! (in MVNStagePackCamera)
- A readme file so you don't have to look at those other files to find all the preset names and accidentally get overexposed to math.
- Visual Novel Propaganda, probably? I'm not sure which file I put it in this time.
What makes it awesome?
- The pack has 3 adjustable layers of depth, each with easy to understand stage positions.
- It's safe to customize within the configuration file. The math included in the transform definitions keeps your positioning consistent even if you change the included depths.
- It's inspired by real life theatre stage marking, though we changed the names so it makes more sense to people who weren't theatre kids or were in drama club.
- You can apply animation statements to any of the presets. Where-ever your characters were before, they'll shuffle on over to the preset positions with you needing to key in individual numbers every single time you just want to move a character from half way between the left edge of the screen to a quarter of the way from the right side of the screen! There's actually a test_stage transform that makes your character cycle through all of them.
- How are you doing today? I'm doing great. I think I'm finally overcoming my addiction to caffeine (not really)
- There is included documentation for the various bits in the configuration but also the transforms themselves, so feel free to read through them.
Consider donating! Proceeds from this pack will be used to fund more prizes for this year's Spooktober Visual Novel Jam!
Status | Released |
Category | Assets |
Rating | Rated 5.0 out of 5 stars (3 total ratings) |
Author | Stella @ MakeVisualNovels |
Genre | Visual Novel |
Tags | Asset Pack, Ren'Py |
Download
Click download now to get access to the following files:
Comments
Log in with itch.io to leave a comment.
I can't seem to get any of the front or back positions to work for whatever reason - whenever I try using one the sprite I put in that position doesn't appear ingame. The medium depth ones do work though, so I don't know what's up with that. Using renpy ver 8.2.3^Test with back_center_offleft
^Test with center_offleft
Help would be appreciated, I have no clue why this is happening
Sure, I can help!
Try tossing this at the start of your scenes:
This will cause the camera (in reality, the master layer) to use perspective mode, which should straighten that out for you.
Here's the documentation if you want to read more up on it:
https://www.renpy.org/doc/html/3dstage.html#using-the-3d-stage
This works! Thanks :D
Thanks for the pack, looking forward to using it!
COOL
I'm still learning renpy and whatnot, so I'm not sure how to actually get the sprites to move to the stage spots. i did put the files in like told, but i'm not understanding what i have to do to get character a to be in scene_back_left_far position... any help is appreciated!
Hey there! Sorry about the delay. You'll want to check the RenPy documentation for how transforms work.
https://www.renpy.org/doc/html/transforms.html
RenPy has a few built in ones, like 'at right' or 'at left', etc. The pack here gives you more of those prebaked options with the ability to tweak their y and x positions in the configuration.
In one of their examples:
show eileen happy at right
In short, you can add 'at scene_back_left_far' to the end of a line where you show a sprite and it'll move them there.
It would then look like this:
show eileen happy at scene_back_left_far
Hope that helps!
This is an amazing pack, thank you! I will definitely be using this in my project!
I have a question about the camera angles-
Is there any way to easily change the speed of the camera movement? Or the exact positioning? Or how much its zoomed in or out? The back front and normal camera presets don't seem to change how it looks too much, unless I change between the two while the camera is moving.
Thanks!
You have a couple options for customizing them.
The easiest and recommended way is to use the accompanying configuration file to bulk change all of the speed. Most everything has some type of configuration setting in MVNStagePackConfig.rpy, including the distance, offsets for different directions(Useful for adjusting sprites up and down when they're too tall/too short for the defaults), the duration and time of effects. The parameters are well documented, or at the very least are named in ways that should inform their purpose.
As of this writing, Line 7 has the pedestal_duration for the Pedestal (down to up pan), Line 13 has the establish_duration for the Establishing (left to right pan), and all of the zooms if you leave their zoom time unchanged will use line 18: default_zoom_time. If you change these variables in the config, it will change the timing on all of their associated premade shots.
Another way that will give you more presets while keeping the originals, you can copy and paste the transforms out of the MVNStagePackCamera.rpy and make new ones in your own files to make your own shots. For example, starting at line 51:
Lets say you like the original enough to want to keep it, you could customize this one like so to change some stuff around regarding the timing.
In your own RPY file, you could write something like this:
This would keep all of the positional settings and just change the new timing to be 0.3 seconds vs the default 1.3 seconds.
Lets say you want to make fast versions of ALL of them, and you really don't want to go ham on having to edit each one of these 90 times.
In YOUR RPY file, try this:
If you're using VSCode, you can copy all of the definitions and their transform instructions into YOUR RPY, then highlight the transform definitions ("transform zoom"), press Ctrl D to multi select lines, use your arrow keys to put the cusor in front of zoom, and just add "fast_" , then repeat this step for all of the default_ lines to replace them with "fast_".
.
Actually this was such an easy mass modification to do that, in the process of making sure I was giving you good instructions, I just.. Made it myself. Whoops. Anyway here's a 'Fast' version' Which you're welcome to copy paste and redefine in your own RPY. But I recommend you take a peek at the instructions I gave above since it'll let you make an infinite number of your own variations of your own camera shots using my preset package.
An easy and helpful modification would be to make a slow version of this. As a challenge for you or anyone else reading this, see if you can follow my above instructions to make a slow_ version of this. :D
Wow, dude thank you so much!! This is all super helpful info + thank you for all the extra code you gave me, you are a lifesaver!! I appreciate it so much! Have a great day!