1
Fork 0
mirror of https://github.com/Steffo99/pineapple-surf.git synced 2024-11-25 09:14:18 +00:00

Fix script paths case sensitivity

This commit is contained in:
Steffo 2023-01-07 12:04:24 +01:00
parent 5acccc0e9e
commit 8fff63c06b
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -12,17 +12,17 @@ _global_script_classes=[{
"base": "Node", "base": "Node",
"class": &"BaseWeapon", "class": &"BaseWeapon",
"language": &"GDScript", "language": &"GDScript",
"path": "res://Player/BaseWeapon.gd" "path": "res://player/BaseWeapon.gd"
}, { }, {
"base": "CharacterBody3D", "base": "CharacterBody3D",
"class": &"Player", "class": &"Player",
"language": &"GDScript", "language": &"GDScript",
"path": "res://Player/player.gd" "path": "res://player/player.gd"
}, { }, {
"base": "Object", "base": "Object",
"class": &"PlayerInputData", "class": &"PlayerInputData",
"language": &"GDScript", "language": &"GDScript",
"path": "res://Player/PlayerInputData.gd" "path": "res://player/PlayerInputData.gd"
}] }]
_global_script_class_icons={ _global_script_class_icons={
"BaseWeapon": "", "BaseWeapon": "",