Search found 9 matches

by BioMa
Wed Feb 16, 2022 2:24 pm
Forum: Works in Progress
Topic: Occult Rewrite [Ero-Horror] [Investigation] [Point And Click]
Replies: 3
Views: 964

Re: Occult Rewrite [Ero-Horror] [Investigation] [Point And Click]

Thanks! There's definitely more coming soon, as the second chapter is already under development. For those who got around to play it, I'm also looking for suggestions on scenarios they'd like to see in a game like this. A while ago someone suggested a hand-holding scene, and I just finished writing ...
by BioMa
Tue Feb 15, 2022 12:21 pm
Forum: Works in Progress
Topic: Occult Rewrite [Ero-Horror] [Investigation] [Point And Click]
Replies: 3
Views: 964

Occult Rewrite [Ero-Horror] [Investigation] [Point And Click]

https://i.imgur.com/kkzrVcS.png News: 15/02/22 The first chapter - "Solar" is already available! Download it here: https://i.imgur.com/il0Tdch.png Follow the developer's twitter for more news here: https://i.imgur.com/X0Fwyaz.png https://i.imgur.com/id5rj0A.png https://i.imgur.com/JxnBCH3...
by BioMa
Mon Feb 14, 2022 6:53 pm
Forum: Ren'Py Questions and Announcements
Topic: [Question] Beep working in PC but not in Android
Replies: 2
Views: 662

Re: [Question] Beep working in PC but not in Android

From this code snippet, I can't exactly give you an answer as to why the sound is bugged for your game. I can, however, provide the way I do it for my android port. It's the same code for the PC version, but both of them work perfectly. Hope it can be of some assistance. def playervoice(event, inter...
by BioMa
Mon Feb 14, 2022 6:42 pm
Forum: Asset Creation: Art
Topic: Is this style a bad idea for a VN?
Replies: 4
Views: 3817

Re: Is this style a bad idea for a VN?

Virtualy any style can work as long as you have 1) Consistency and 2) Context. If you can draw chibi, do it across the board. Do so for characters, the UI elements, backgrounds, music, everything. For the costumer/reader, the more unified the art direction is and easy to understand/connect to, the b...
by BioMa
Mon Feb 14, 2022 6:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Flash sprite on screen
Replies: 2
Views: 366

Re: Flash sprite on screen

You can set up your image somewhere on the code and recall it anytime you need with a simple show command. Do something like image flash_white: "/game/images/white_flash.png" with Dissolve (.5) #your image's filepath xpos *** # the X pos of the area you want to flash white at ypos *** # di...
by BioMa
Mon Feb 14, 2022 5:49 pm
Forum: General Discussion
Topic: What anime or game do you consider to have great music?
Replies: 6
Views: 5579

Re: What anime or game do you consider to have great music?

Lots of AAA games have pretty good music since they have a lot of resources to employ amazing artists and orchestra like TloU, Any of the fromSoft games, Guilty Gear, the Shin Megami Tensei series, Silent Hill, etc etc. But I think a better answer would be something like Bastion, The World Ends with...
by BioMa
Tue Apr 20, 2021 4:31 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to create an "investigation scene"?
Replies: 2
Views: 461

Re: How to create an "investigation scene"?

That was actually really useful! For anyone who wants to know, basically what I had to do was to call the screen so the game would stop and let the player "investigate" it. Everything else is done with what I mentioned on the OP, and a couple of imagemaps to define the exact areas. I'd say...
by BioMa
Mon Apr 19, 2021 1:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Nooby Question about background interactibles
Replies: 2
Views: 317

Re: Nooby Question about background interactibles

Coincidently, this question is similar to what I just asked a couple of hours ago haha, so I hope someone answers either of us, but I do have some help to give regarding the code you found. Much of it you can understand simply by reading through this link: https://www.renpy.org/doc/html/screens.html...
by BioMa
Mon Apr 19, 2021 1:06 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to create an "investigation scene"?
Replies: 2
Views: 461

[SOLVED] How to create an "investigation scene"?

Hello! I'm developing a mistery novel with some gameplay features, and one of these features is "examining" a scene. Anyone who's familiar with Professor Layton or the Phoenix Wright series knows exactly how that looks like. Basically, what I'm aiming to do is to have scenes where the play...