Nokorpo / LibreAim

Free and open source FPS aim trainer made with Godot.
https://discord.gg/u2Hm8sMagF
Apache License 2.0
71 stars 14 forks source link

Follow GDScript style guide #14

Open antimundo opened 2 months ago

antimundo commented 2 months ago

The code right now is pretty messy, it would be better if it used the official GDScript style guide.

Main things to change:

  1. Follow functions and variables naming conventions. Mainly this one, which the project is currently not following: Prepend a single underscore (_) to virtual methods functions the user must override, private functions, and private variables.
  2. Follow code order.
  3. Use static typing in the whole project.

Why change this?

Because it would make it easier for new contributors to modify and understand things if the project followed the official style guide.