Search found 14 matches

by ERT
Sun Jun 14, 2020 7:32 am
Forum: Ren'Py Questions and Announcements
Topic: Permission request problem of Ren'Py Android build
Replies: 0
Views: 339

Permission request problem of Ren'Py Android build

Hello, Does Android builder of Ren'Py automatically generates codes for check & request runtime permission? I recently built Android version of my Ren'Py game, and it needs manual storage permission grant in Android's "Settings" menu to run correctly. (If I just install & run the g...
by ERT
Thu Jun 04, 2020 12:34 am
Forum: Works in Progress
Topic: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate
Replies: 12
Views: 2867

Re: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate

Long time no see! We were constantly working on this game and we finally opened our Steam Store page . Also, we will offer demo version of the game soon, on June 9th via Steam Game Festival. There were plenty of changes in the game since we first created this thread, so you would like to check it ou...
by ERT
Mon Sep 24, 2018 1:24 pm
Forum: Ren'Py Questions and Announcements
Topic: How can I fadeout music when loading a saved file? [SOLVED]
Replies: 2
Views: 462

Re: How can I fadeout music when loading a saved file?

Imperf3kt wrote: Mon Sep 24, 2018 7:38 am use label after_load

Code: Select all

label after_load:
    stop music fadeout 2.0
    return
This code works well. Thanks!
by ERT
Mon Sep 24, 2018 2:12 am
Forum: Ren'Py Questions and Announcements
Topic: How can I fadeout music when loading a saved file? [SOLVED]
Replies: 2
Views: 462

How can I fadeout music when loading a saved file? [SOLVED]

I am using FileAction function to load game from a saved file, and use config.main_menu_music to play music on the main menu. What I want to do is when loading game from the main menu (load screen is actually not main menu screen, but there still is music same with the main menu) I want to fade the ...
by ERT
Tue Apr 21, 2015 10:23 am
Forum: Works in Progress
Topic: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate
Replies: 12
Views: 2867

Re: [Drama][Horror][VN] Gwan Moon High School

Please don't be! In fact, we are sorry we cannot reply in French. Désolé. :'( Although we cannot specify the total play time since the game is still in development, the current estimate is 5 hours minimum. Merci! :)
Doedelzak wrote:Yeah I mean total play time. Sorry for my bad english, I'm french :?
by ERT
Mon Apr 20, 2015 12:06 pm
Forum: Works in Progress
Topic: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate
Replies: 12
Views: 2867

Re: [Drama][Horror][VN] Gwan Moon High School

Thank you for your vote and a detailed review. Sorry, we are not sure of what "global duration" means. Do you mean total play time or duration of development? Drama ? Horror ? Awesome art ? Beautiful and mysterious ambiant music ? (as heard in the presentation video) Well, I can't wait for...
by ERT
Sun Apr 19, 2015 7:40 am
Forum: Works in Progress
Topic: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate
Replies: 12
Views: 2867

Re: [Drama][Horror][VN] Gwan Moon High School

Holy krep the steam page is filled with different languages...your language skill is terrific! Also, this game seems really great! But how much is your team asking for per game? I'm not familiar with steam game prices, so could you give a range? Sorry if I missed it though! We are doing our best to...
by ERT
Sun Apr 19, 2015 7:39 am
Forum: Works in Progress
Topic: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate
Replies: 12
Views: 2867

Re: [Drama][Horror][VN] Gwan Moon High School

Dylan_Bain wrote:Looks SOOOOOOOO GOOOOOODDDD!!!!!!!!! Can't wait to play.
Thank you SOOOO MUCH!!!!
by ERT
Sun Apr 19, 2015 7:39 am
Forum: Works in Progress
Topic: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate
Replies: 12
Views: 2867

Re: [Drama][Horror][VN] Gwan Moon High School

rayray wrote:This looks really good!! The art is amazing, I'm exited to play it *0*
Thank you! We look forward to that too!
by ERT
Sat Apr 18, 2015 9:09 am
Forum: Works in Progress
Topic: [Drama][Horror][VN] Gwan Moon High School : The Ghost Gate
Replies: 12
Views: 2867

[Drama][Horror][VN] Gwan Moon High School : The Ghost Gate

Title Gwan Moon High School : The Ghost Gate Basic Information Gwan Moon High School : The Ghost Gate is a horror visual novel with a point & click adventure game system. Korean high school students go to school with their own reasons late at night with an ominous feeling. After midnight, the f...
by ERT
Mon Apr 06, 2015 10:36 am
Forum: Ren'Py Questions and Announcements
Topic: Can I give "selected" style property on textbutton?
Replies: 3
Views: 646

Re: Can I give "selected" style property on textbutton?

Sorry, I misunderstood about the selected property. It is not the case which I want to change background. What I want is kind of "mousedown" event in JavaScript, which means the mouse is hovering over the element and mouse button is pushed. Is it impossible to make feedback with that kind ...
by ERT
Sun Apr 05, 2015 8:56 am
Forum: Ren'Py Questions and Announcements
Topic: Can I give "selected" style property on textbutton?
Replies: 3
Views: 646

Can I give "selected" style property on textbutton?

Hi, I have three different background images(idle, hover, and clicked) for textbuttons used in choice menu. But I couldn't find how I can apply background when button is clicked. Is it impossible to make textbutton to look different when button is idle, hovered, and clicked(selected)? Also, is it po...
by ERT
Sun Mar 08, 2015 11:15 am
Forum: Ren'Py Questions and Announcements
Topic: Difference between action Jump and Start
Replies: 2
Views: 1264

Difference between action Jump and Start

Hello, I'm newbie from Korea making VN based on Ren'Py. I want to make my VN chapter-selectible. I have chapter_select screen and I want control-flow to come back to this screen when each chapter is over. So I made my button for first chapter as follows: imagebutton : idle "ch_0.png" focus...