Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
-
Nekosousei
- Regular
- Posts: 83
- Joined: Tue Jan 25, 2011 3:18 am
- Projects: Scattered Starlight Dating Sim (GxB, GxG)
- Organization: Neko Sousei
- Location: Essex, United Kingdom
-
Contact:
#1
Post
by Nekosousei » Mon Sep 16, 2013 12:50 pm
I'm trying to set music to play at the main menu but no music plays.
There is no error, the music is turned up, my computer is working.
I've tried changing the file type from MP3 to OGG and to WAV but still no sound at all.
Music plays fine within the game.
This is what have in the options.rpy
Code: Select all
## Music that is played while the user is at the main menu.
# config.main_menu_music = "main_screen.ogg"
Can anyone help?
Thanks
Last edited by
Nekosousei on Mon Sep 16, 2013 1:12 pm, edited 1 time in total.
-
xavimat
- Eileen-Class Veteran
- Posts: 1458
- Joined: Sat Feb 25, 2012 8:45 pm
- Completed: Yeshua, Jesus Life, Cops&Robbers
- Projects: Fear&Love, unknown
- Organization: Pilgrim Creations
- Github: xavi-mat
- itch: pilgrimcreations
- Location: Spain
-
Contact:
#2
Post
by xavimat » Mon Sep 16, 2013 1:00 pm
Maybe you need to uncomment (delete the #) the line:
Code: Select all
## Music that is played while the user is at the main menu.
config.main_menu_music = "main_screen.ogg"
-
Elmiwisa
- Veteran
- Posts: 476
- Joined: Sun Jul 21, 2013 8:08 am
-
Contact:
#3
Post
by Elmiwisa » Mon Sep 16, 2013 1:01 pm
Nekosousei wrote:I'm trying to set music to play at the main menu but no music plays.
There is no error, the music is turned up, my computer is working.
I've tried changing the file type from MP3 to OGG and to WAV but still no sound at all.
Music plays fine within the game.
This is what have in the options.rpy
Code: Select all
## Music that is played while the user is at the main menu.
# config.main_menu_music = "main_screen.ogg"
Can anyone help?
Thanks
Uh...because that line is still commented out? Remove the #
-
Nekosousei
- Regular
- Posts: 83
- Joined: Tue Jan 25, 2011 3:18 am
- Projects: Scattered Starlight Dating Sim (GxB, GxG)
- Organization: Neko Sousei
- Location: Essex, United Kingdom
-
Contact:
#4
Post
by Nekosousei » Mon Sep 16, 2013 1:12 pm
I feel really stupid >__<
Thank you every!