NodotProject / nodot

A video game node library for Godot 4
https://nodotproject.github.io/nodot/
MIT License
329 stars 11 forks source link

Debug tools #147

Closed krazyjakee closed 1 year ago

krazyjakee commented 1 year ago

Introduces several changes related to debugging tools in the project. Here is a summary of the changes:

  1. Added "*.tmp" to the .gitignore file to exclude temporary files from version control.
  2. Added debug settings to the .vscode/settings.json file, specifying the path to the Godot editor and the GDScript LSP server port.
  3. Added a new DebugManager.gd script, which serves as a global tool for storing debug data for NodotDebug nodes.
  4. Updated the SaveManager.gd file to use a Storage object for storing configuration data instead of a regular dictionary.