Skip to content

Commit

Permalink
Changed default resource path key, in order to avoid override the rem…
Browse files Browse the repository at this point in the history
…i standard one.
  • Loading branch information
dddomodossola committed Nov 26, 2018
1 parent d2429e1 commit 015f8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/prototypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class %(classname)s(App):
def __init__(self, *args, **kwargs):
#DON'T MAKE CHANGES HERE, THIS METHOD GETS OVERWRITTEN WHEN SAVING IN THE EDITOR
if not 'editing_mode' in kwargs.keys():
super(%(classname)s, self).__init__(*args, static_file_path={'res':'%(config_resourcepath)s'})
super(%(classname)s, self).__init__(*args, static_file_path={'my_res':'%(config_resourcepath)s'})
def idle(self):
#idle function called every update cycle
Expand Down

0 comments on commit 015f8be

Please sign in to comment.