Its probably a very noob question but, I have a very simple function located in its own file that looks like this :
File ambiance sfx manager.rpy
Code: Select all
init python:
def AmbianceManSFX():
renpy.play("sfx/ambiance light city.ogg", "ambiance")
Code: Select all
label start :
$ AmbianceManSFX()
Is there something I'm not getting right about calling a function in Renpy?