diff options
author | mikatomik <mikec_2007@hotmail.com> | 2022-09-09 23:56:34 -0400 |
---|---|---|
committer | mikatomik <mikec_2007@hotmail.com> | 2022-09-09 23:56:34 -0400 |
commit | 8199603264cb1e4649e52cb1ae8a5b800104a1c1 (patch) | |
tree | 2b0c68cb275f4a97ebf90ffdfcc9623a1f3c4b6a /singletons | |
parent | 941ec1c9ed595ef8b039ddf083e5bc910a8c4ecb (diff) | |
download | godot_wildjam_49-8199603264cb1e4649e52cb1ae8a5b800104a1c1.tar.gz godot_wildjam_49-8199603264cb1e4649e52cb1ae8a5b800104a1c1.zip |
Implement basic FPS controller
Diffstat (limited to 'singletons')
-rw-r--r-- | singletons/settings.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/singletons/settings.gd b/singletons/settings.gd new file mode 100644 index 0000000..bc8bfe0 --- /dev/null +++ b/singletons/settings.gd @@ -0,0 +1,3 @@ +extends Node + +var mouse_sens : float = 0.003 |