Hi, I'm trying to add more sprite sheets to my project and things did not go well. Does anyone know what I did wrong?
Here's my file structure
rpg.toml
name = 'My Game'
spritesheetDirectories = [
'./main/spritesheets/characters',
'./main/spritesheets/chest'
]
modules = [
'./main',
'@rpgjs/mobile-gui',
'@rpgjs/default-gui',
'@rpgjs/gamepad'
]
[start]
map = 'Forest'
graphic = 'hero'
hitbox = [16, 16]
Gave me this Error in terminal
⚠️ Warning - In rpg.toml, you put the following properties, but they are not used by the modules. Check the names of the properties.
- spritesheetDirectories
And this error in browser's Console
SyntaxError: ambiguous indirect export: default
Thanks for helping!