Search found 316 matches

by mitoky
Mon Jan 15, 2018 1:16 am
Forum: Ren'Py Questions and Announcements
Topic: How to play a "Bad End Music" in main menu? [SOLVED]
Replies: 3
Views: 647

Re: How to play a "Bad End Music" in main menu?

Make the badEndings a persistent and try this: init python: if persistent.badEndings == 3: config.main_menu_music = "bad-menu-theme.ogg" else: config.main_menu_music = "main-menu-theme.ogg" The only problem is that the music wont actually change until you restart the game (aka cl...
by mitoky
Sat Jan 13, 2018 11:51 pm
Forum: Asset Creation: Music, Sound, and Movies
Topic: Video Editing Software Recommendations?
Replies: 5
Views: 4755

Re: Video Editing Software Recommendations?

I would recommend Shotcut. Its a bit basic but its free and good. I 'think' everything you listen above under the required features it can do. Personally i have been using it to make speedpaint and i like it very much. It's good to use even with 'not as good' pc's. So far i have had no problems with...
by mitoky
Sat Jan 13, 2018 3:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Strange positioning problem SOLVED
Replies: 6
Views: 800

Re: Strange positioning problem

I dont know how to fix the problem, but does that problem also occur when you define the positions without transform? Like this:

Code: Select all

default bottom_center = Position(xalign=0.5, yalign=1.0)
by mitoky
Mon Jan 08, 2018 7:56 am
Forum: I am an Artist
Topic: mitoky's Logo Commissions [CLOSED]
Replies: 17
Views: 7402

Re: Logo Commissions [OPEN]

Added more examples to main post! Also, will most likely (maybe within the next month or so) change the main post a bit look wise.
by mitoky
Wed Jan 03, 2018 8:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding a custom setting that allows sprites and CG images to be switched out
Replies: 1
Views: 654

Re: Adding a custom setting that allows sprites and CG images to be switched out

Hello! I am not an expert but i 'think' this should work. First, look at this thread under "June": https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=47328 The part in the document saying " The difficulty level of the game." could be used for the various levels of bodyhai...
by mitoky
Wed Jan 03, 2018 5:39 am
Forum: Creator Discussion
Topic: Reusing assets from previous works
Replies: 8
Views: 1627

Re: Reusing assets from previous works

For myself, i wouldnt want to resue the assets. I think aside of sound effects i wouldnt do it. Another occasion which i think would be ok is if the game simply plays in the same city as the previous game (so not a sequal, but same universe) since then it makes sense to use some of the backgrounds w...
by mitoky
Tue Jan 02, 2018 10:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding a switch to the Preferences to change a variable?
Replies: 3
Views: 519

Re: Adding a switch to the Preferences to change a variable?

I think what you are looking for might be the one about June:
viewtopic.php?f=51&t=47328
by mitoky
Mon Jan 01, 2018 8:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

Try using this: image white = "#fff" #Black Background image splash = "content_warning.png" transform slow_dissolve: on show: alpha 0 linear 2.0 alpha 1 on hide: linear 2.0 alpha 0 label splashscreen: scene white $ renpy.pause(1, hard=True) show splash at slow_dissolve $ renpy.pa...
by mitoky
Mon Jan 01, 2018 5:11 am
Forum: Creator Discussion
Topic: New Year's resolutions and your VN development
Replies: 26
Views: 4243

Re: New Year's resolutions and your VN development

I would like to work lots more on my game and completly finish the script. If possible, it would be cool to even start putting my demo together (no rush here though).
I also want to draw more. I want to draw more backgrounds and learn as well to work more with backgrounds in my art overall.
by mitoky
Sun Dec 31, 2017 5:46 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I make non-rectangular hotspots?
Replies: 4
Views: 748

Re: How do I make non-rectangular hotspots?

As far as i know (if someone knows better, feel free to correct me) you cant do that. You can use imagebuttons instead. Unfortunately, I know basicaly nothing about imagebuttons. Could you point me towards a good tutorial? Thanks! I think this one is very good: https://lemmasoft.renai.us/forums/vie...
by mitoky
Sun Dec 31, 2017 5:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

IIRC label before_main_menu is invoked before every showing of main menu. So, do not try to show main menu from that label: this attempt will call before_menu again. Oh, ok, i didnt knew that. I personally have never run into this issue myself and i have always been using show so i dont understand ...
by mitoky
Sun Dec 31, 2017 12:51 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Side Image / Window Background, Neither are Appearing!
Replies: 7
Views: 701

Re: Side Image / Window Background, Neither are Appearing!

Ahh ok i see! Glad it works now (: Good luck on your project!
by mitoky
Sun Dec 31, 2017 12:50 am
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

image white = "#fff" #Black Background image splash = "content_warning.png" transform slow_dissolve: on show: alpha 0 linear 2.0 alpha 1 on hide: linear 2.0 alpha 0 label splashscreen: scene white $ renpy.pause(1, hard=True) show splash at slow_dissolve $ renpy.pause(2, hard=Tru...
by mitoky
Sun Dec 31, 2017 12:24 am
Forum: Ren'Py Questions and Announcements
Topic: How do I make non-rectangular hotspots?
Replies: 4
Views: 748

Re: How do I make non-rectangular hotspots?

As far as i know (if someone knows better, feel free to correct me) you cant do that. You can use imagebuttons instead.