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:
parent
5acccc0e9e
commit
8fff63c06b
1 changed files with 3 additions and 3 deletions
|
@ -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": "",
|
||||||
|
|
Loading…
Reference in a new issue