diff options
author | Victor Andrade de Almeida <vct.a.almeida@gmail.com> | 2022-07-16 18:31:13 -0300 |
---|---|---|
committer | Victor Andrade de Almeida <vct.a.almeida@gmail.com> | 2022-07-16 18:31:27 -0300 |
commit | 5b432198140f06d427079a6c8160b2c525b5eb0f (patch) | |
tree | 2aee9d93c7f2156d6bdc27e9917c458d196ff9dd /project.godot | |
parent | 3b28b4585b5272a4c72a2c89f02f4441945e03fd (diff) | |
download | gamejam-gmtk-2022-5b432198140f06d427079a6c8160b2c525b5eb0f.tar.gz gamejam-gmtk-2022-5b432198140f06d427079a6c8160b2c525b5eb0f.tar.bz2 gamejam-gmtk-2022-5b432198140f06d427079a6c8160b2c525b5eb0f.zip |
Add damage pressure plates
Diffstat (limited to 'project.godot')
-rw-r--r-- | project.godot | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/project.godot b/project.godot index 2fc313d..c9a3390 100644 --- a/project.godot +++ b/project.godot @@ -28,12 +28,18 @@ _global_script_classes=[ { "class": "Plate", "language": "GDScript", "path": "res://Scenes/Plate.gd" +}, { +"base": "Entity", +"class": "Player", +"language": "GDScript", +"path": "res://Scenes/Player.gd" } ] _global_script_class_icons={ "Crystal": "", "Entity": "", "Monster": "", -"Plate": "" +"Plate": "", +"Player": "" } [application] |