Search found 5 matches

by riktik
Tue Apr 18, 2006 1:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Reference Manual Update
Replies: 10
Views: 3292

monele wrote:Nicely detailed. Maybe it still lacks a *few* examples such as what the name of the .exe could be when using an underscore. It's just easier to see the result than compose it from the description.
I agree
by riktik
Tue Apr 18, 2006 1:31 pm
Forum: Ren'Py Questions and Announcements
Topic: music in game menu
Replies: 1
Views: 1201

music in game menu

I used this code (that I found on this board) in my game to have music in my menus: label main_menu: $ renpy.music_start('mainmenu.mp3', loops=-1, fadeout=1.0) jump _library_main_menu label enter_game_menu: $ renpy.music_start('mainmenu.mp3', loops=-1, fadeout=1.0) return My game also have other mus...
by riktik
Thu Apr 13, 2006 11:38 am
Forum: Ren'Py Questions and Announcements
Topic: change the style of a particular button
Replies: 1
Views: 930

change the style of a particular button

My game runs 400x800, I know it isn't a common resolution but it's exactly what I want for this game. I didn't have particular problems to adapt the menus, but I couldn't find the correct statement to define the style for a particular button. The button is "TEST" (volume of sounds). $ styl...
by riktik
Thu Apr 13, 2006 11:18 am
Forum: Ren'Py Questions and Announcements
Topic: font: different files for bold and italic
Replies: 3
Views: 1254

Hope this helps, and welcome! Thank you PyTom, I'm sorry if in the next week I'm going to post some silly questions, but I'm near to complete my game and I want to polish up my code. Consider that english isn't my native language and I had some troubles to understand and consult the Reference Manua...
by riktik
Thu Apr 13, 2006 8:49 am
Forum: Ren'Py Questions and Announcements
Topic: font: different files for bold and italic
Replies: 3
Views: 1254

font: different files for bold and italic

I've decided to use for my game a font ("animeace") that has three files: animeace.ttf animeace_b.ttf -> bold animeace_i.ttf -> italic I've put the three files in my game directory. and, in my script, the command: $ style.default.font = "animeace.ttf" How I have to define the ita...