Zelda
Zelda copied to clipboard
Last version fails under Linux
I haven't looked at anything except the last one yet. It doesn't run under linux.
graphics = {
'grass': import_folder('../graphics/Grass'),
'objects': import_folder('../graphics/objects')
}
The grass directory in the graphics directory is all lowercase. The project runs fine after fixing this.
change
'grass': import_folder('../graphics/Grass'),
to
'grass': import_folder('../graphics/grass'),