Search found 4 matches

by renboo
Mon Dec 04, 2017 1:40 pm
Forum: Other Visual Novel Engines
Topic: Which engine should I use for an RPG-type visual novel?
Replies: 4
Views: 4072

Which engine should I use for an RPG-type visual novel?

I'm looking to make a small dating game in which the player can walk around in a 2D environment (similar to games like Undertale, Pokemon, Stardew Valley, etc) but will also be able to talk to characters and have a text box and image of the character appear. I would like there to be various events, ...
by renboo
Thu Aug 10, 2017 6:54 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I set character name sideways?
Replies: 5
Views: 959

Re: How do I set character name sideways?

Screens.rpy Find screen say( and tweak away... remove the if who is not None block (or comment out), or try rotate on the actual text transform sideways: rotate 270 screen say(who, what): style_prefix "say" window: id "window" if who is not None: window: style "namebox"...
by renboo
Thu Aug 10, 2017 6:40 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I set character name sideways?
Replies: 5
Views: 959

Re: How do I set character name sideways?

In all honesty, you are probably better off making it an image and showing that image on the front-most layer or make it part of the say window than trying to rotate text. Thank you for that! Luckily for me I found a sprite sheet with the character names all lined up sideways, so it's win win! How ...
by renboo
Thu Aug 10, 2017 5:06 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I set character name sideways?
Replies: 5
Views: 959

How do I set character name sideways?

Sorry if this is a silly question. Recently I've been trying to recreate the UI of Danganronpa 2. Here is a link to the example: http://media.diehardgamefan.com/wp-content/uploads/2014/08/DR2sc02.jpg As you can see, the characters name is off to the side sideways, while the chat remains horizontal a...