mirror of
https://github.com/Steffo99/pineapple-surf.git
synced 2024-11-21 23:34:21 +00:00
Fix script paths case sensitivity
This commit is contained in:
parent
5acccc0e9e
commit
8fff63c06b
1 changed files with 3 additions and 3 deletions
|
@ -12,17 +12,17 @@ _global_script_classes=[{
|
|||
"base": "Node",
|
||||
"class": &"BaseWeapon",
|
||||
"language": &"GDScript",
|
||||
"path": "res://Player/BaseWeapon.gd"
|
||||
"path": "res://player/BaseWeapon.gd"
|
||||
}, {
|
||||
"base": "CharacterBody3D",
|
||||
"class": &"Player",
|
||||
"language": &"GDScript",
|
||||
"path": "res://Player/player.gd"
|
||||
"path": "res://player/player.gd"
|
||||
}, {
|
||||
"base": "Object",
|
||||
"class": &"PlayerInputData",
|
||||
"language": &"GDScript",
|
||||
"path": "res://Player/PlayerInputData.gd"
|
||||
"path": "res://player/PlayerInputData.gd"
|
||||
}]
|
||||
_global_script_class_icons={
|
||||
"BaseWeapon": "",
|
||||
|
|
Loading…
Reference in a new issue