Search found 33 matches

by wtfman
Tue Sep 20, 2022 8:00 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Is it possible to make the grid fill vertical?
Replies: 2
Views: 286

Re: Is it possible to make the grid fill vertical?

Ocelot wrote:
Tue Sep 20, 2022 1:08 pm
https://www.renpy.org/doc/html/screens.html#grid
transpose
If False (the default), rows are filled before columns. If True, then columns are filled before rows.
Thank you!
by wtfman
Tue Sep 20, 2022 1:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Is it possible to make the grid fill vertical?
Replies: 2
Views: 286

[SOLVED] Is it possible to make the grid fill vertical?

renpy grid is always filled from left to right. Like this:
grid1.png
But I want to fill grid from top to bottom
grid2.png
I want to know this. Thank you
by wtfman
Tue Sep 20, 2022 12:44 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Can I open one specific screen multiple at the same time?
Replies: 7
Views: 293

Re: Can I open one specific screen multiple at the same time?

screenshot0097.png screenshot0096.png All is solved. I apply tag to open same window multiple and added drag_name in drag to remember screen's location. Like this: screen text_window(texttitle, innertext, tagname): drag: drag_handle (0, 0, 1.0, 50) drag_name tagname draggable True frame: textbutton...
by wtfman
Tue Sep 20, 2022 7:30 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Can I open one specific screen multiple at the same time?
Replies: 7
Views: 293

Re: Can I open one specific screen multiple at the same time?

If they are implemented as Drag Displayables, then coordinates are avaliable as x and y members of corresponding Drag pbject. Another way to show screen multiple times is to use it multiple times in parent screen. Don't know, if it would be applicable to your project. Am I need to use python callba...
by wtfman
Tue Sep 20, 2022 5:39 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Can I open one specific screen multiple at the same time?
Replies: 7
Views: 293

Re: Can I open one specific screen multiple at the same time?

1) Yes. renpy.show_screen( 'single_window', tag="some_other_name") . The only requirements are that tags should be unique and you need to keep track of tags used. 2) Yes. Probably works best if you simply reshow window with diffrent zorder. But when reloading the screen, coordination is reset and a...
by wtfman
Tue Sep 20, 2022 2:26 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Can I open one specific screen multiple at the same time?
Replies: 7
Views: 293

[SOLVED] Can I open one specific screen multiple at the same time?

notepads.png For example, I made a screen named 'sigle_window' and made a button to open the screen 'single_window' I want to open the same 'single_window' screen multiple when pressing a button, like a regular GUI OS(see the attachment image if you don't understand. Sorry) Is It possible to make? ...
by wtfman
Sun Mar 14, 2021 9:43 am
Forum: Ren'Py Questions and Announcements
Topic: Can change primary language to alternate language?
Replies: 1
Views: 382

Can change primary language to alternate language?

For example, primary is English, and alternate language(ex: Korean) translated scripts are in game folder/tl/korean In this situation, is there a Ren'Py feature that allows me to swap or overwrite the primary to alternate? In the worst case, is it possible at least to extract the script from the tra...
by wtfman
Thu Jan 14, 2021 10:11 am
Forum: Ren'Py Questions and Announcements
Topic: Can I replace the text in the any .rpy file with the contents of the dialogue.tab file?
Replies: 1
Views: 342

Can I replace the text in the any .rpy file with the contents of the dialogue.tab file?

Dialogue.tab file is made by renpy's extract dialogue command. if this have extract command, I think there's also replace command. Like this- for example test.rpy $ myself = Character("Me") $ someone = Character("Not me") label start: myself "This is just the beginning..." someone "Eat a spider." di...
by wtfman
Fri Dec 11, 2020 2:20 pm
Forum: Ren'Py Questions and Announcements
Topic: only want to store nvl dialog in history
Replies: 0
Views: 505

only want to store nvl dialog in history

Sorry. But I don't know where to start. First of all, I know there are two things. 1. seems _history_list contains the text of all characters. 2. can use $ _history = False to make the text will not be recorded in history. I want to know if there is a variable or anything that separates nvl dialog a...
by wtfman
Mon Oct 19, 2020 10:54 am
Forum: Ren'Py Questions and Announcements
Topic: After changing the language, the game crash after a screenshot
Replies: 2
Views: 255

Re: After changing the language, the game crash after a screenshot

I think you haven't translated your common.rpy file. Open the game folder/game/tl/common.rpy and check.
hope it works.
by wtfman
Mon Oct 19, 2020 7:45 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] doesn't work this code after update
Replies: 2
Views: 548

Re: doesn't work this code after update

thanks. I fixed and it works well now. but if it is a wrong code, why worked normally in older version?
by wtfman
Mon Oct 19, 2020 1:45 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] doesn't work this code after update
Replies: 2
Views: 548

[SOLVED] doesn't work this code after update

before update version 7.3.5, I've used 6.99. I made this code for showing tooltip text. screen maptext(mtext): side "c b r": area (700, 45, 220, 280) viewport id "maptooltiptext": draggable False text "{color=#00ff00}{size=16}[mtext]{/size}{/color}" xpos 700 ypos 45 language "korean-with-spaces" scr...
by wtfman
Mon Aug 17, 2020 1:50 pm
Forum: Demos & Beta Testing
Topic: VOICE [VN / Adventure / Dystopia]
Replies: 0
Views: 742

VOICE [VN / Adventure / Dystopia]

I've released my game demo. Originally, the game was started to develop about 5 years ago. However, as I graduated from university and got a job, I ran out of time to develop and as my drawing skills improved(I hope so), I spent most of my time redrawing CGs because they didn't look good... I am Kor...
by wtfman
Wed Aug 12, 2020 2:05 pm
Forum: Ren'Py Questions and Announcements
Topic: which different between 'play music' and '$renpy.music.play'?
Replies: 1
Views: 213

which different between 'play music' and '$renpy.music.play'?

As far as I know, ren'py has two ways to play music files. one is play music "filename.ext", another one is $renpy.music.play("filename.ext")...

I wonder which is different between these commands.

may I use anything that is convenient for me?
by wtfman
Wed May 27, 2020 1:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Don't want to loop music on the title screen
Replies: 2
Views: 217

Re: Don't want to loop music on the title screen

Solved.
Thank you, it works perfectly.