Search found 7 matches

by iBrandad
Sat Sep 29, 2018 4:07 am
Forum: Ren'Py Questions and Announcements
Topic: Skipping makes sprites transparent until the sprite hides and shows again. How to fix?
Replies: 5
Views: 579

Re: Skipping makes sprites transparent until the sprite hides and shows again. How to fix?

Figured it out. If anyone is having this same problem, here's the issue you might have as well. I was using this to show my sprites: show mike laugh at center with dissolve My "center" transformation looks like this: transform center(x=640, z=0.80): yanchor 1.0 subpixel True on show: ypos ...
by iBrandad
Sat Sep 29, 2018 3:38 am
Forum: Ren'Py Questions and Announcements
Topic: Skipping makes sprites transparent until the sprite hides and shows again. How to fix?
Replies: 5
Views: 579

Re: Skipping makes sprites transparent until the sprite hides and shows again. How to fix?

The alpha is the most important part of making it look nice... I'm not sure what I'm doing wrong since this doesn't seem to be a problem with other visual novels that do the same sort of thing.
by iBrandad
Fri Sep 28, 2018 11:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Skipping makes sprites transparent until the sprite hides and shows again. How to fix?
Replies: 5
Views: 579

Re: Skipping makes sprites transparent until the sprite hides and shows again. How to fix?

I've seen this before, are you using any custom defined transforms to show and hide your characters? Yes. I changed the dissolve transition to be faster using this: define dissolve = Dissolve(0.25) and I use it for every expression change to give a nice fade effect. I also center all my sprites. Wh...
by iBrandad
Thu Sep 27, 2018 4:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Skipping makes sprites transparent until the sprite hides and shows again. How to fix?
Replies: 5
Views: 579

Skipping makes sprites transparent until the sprite hides and shows again. How to fix?

Skipping for more than 5 seconds makes my sprites become transparent, even after they are done skipping. The only way they will return to normal is if the sprite hides itself then shows itself again later. How do I fix this? [SOLVED]
by iBrandad
Tue Sep 25, 2018 12:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Global stats at end of game
Replies: 3
Views: 1087

Global stats at end of game

Is it possible to get a percentage stats of how many players chose certain choices in your game? Like a Telltale game sort of deal. At the end of my game I wanna have a stats screen that says like "you and 54% of players did this" you know what I mean?
by iBrandad
Sun Sep 02, 2018 9:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating a custom name after pressing new game?
Replies: 2
Views: 434

Re: Creating a custom name after pressing new game?

This worked great! But one other thing I'll need for the future, if you knew how to do this as well. This is what I got when I typed in what you gave me. https://imgur.com/DXqip2g Which is what I'm assuming it should look like. However, how would I got about adding an image/box around the text so it...
by iBrandad
Sun Sep 02, 2018 6:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Creating a custom name after pressing new game?
Replies: 2
Views: 434

Creating a custom name after pressing new game?

I know how to create custom names after you use all this: $ player_name = renpy.input("", default="meme", length=20) $ player_name = player_name.strip() However, what if I wanted to do something like this? After you press New Game, this appears. How would I go about doing that? ...