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

Changes to follow Godot style guide #16

Closed iltenahmet closed 2 months ago

iltenahmet commented 2 months ago

Hello, I've made some changes to follow the Godot style guide, mainly adding types, according to #14. Let me know what you think.

antimundo commented 2 months ago

Looks good to me. Thanks for your contribution!

Note that, as far as I know there is no difference between var _dot_size := 6.0 and var _dot_size: float = 6.0 since is implicit in the 6.0 that is a float value, so just := should work the same way. Link to documentation on this matter. I'm not 100% sure about this, but is how I think it works.

Thanks again for helping with this project!