gdquest-demos / godot-make-pro-2d-games

A-RPG demo made with Godot, MIT-licensed, from our Godot course
MIT License
987 stars 106 forks source link

Case sensitive filenames #68

Closed easy82 closed 5 years ago

easy82 commented 5 years ago

On linux filesystem is case sensitive so there were a couple of errors when trying out the demo.

For example in Jump.gd:1

extends "../motion.gd" instead of extends "../Motion.gd"

I guess a couple of files were recently renamed.

PetePete1984 commented 5 years ago

This is also highly likely to break in an exported version of the game, because the .pck internal filesystem is case-sensitive.

NathanLovato commented 5 years ago

Fixed with https://github.com/GDquest/make-pro-2d-games-with-godot/pull/67