chickensoft-games / GameDemo

The Chickensoft Game Demo — a fully tested, third-person 3D game built with Godot and C#. Now with saving and loading!
https://chickensoft.games
MIT License
322 stars 20 forks source link

Fix map scene case #3

Closed DeeJayLSP closed 9 months ago

DeeJayLSP commented 9 months ago

I really don't know how this happened, but...

The map scene can be accessed correctly on Windows and macOS platforms because their file systems are case-insensitive.

However, trying to run the project on a Linux platform results on error (can't find map.tscn) because the FS is case-sensitive.

Also, the Godot's PCK's file system is case-sensitive itself, therefore the error should show up in exported projects no matter the platform.

For now, changing the Map path to match its case is enough.