Since a lot of PRs arrived, we have different styles in the codebase. It would be better to respect the official guidelines that I wrote in the README:
I will consider any PR (even just for a single file) that standardize the use of functions, variables, nodes names, add documentation,...
Eg:
# bad
var lifeIcons = {}
# good: use snake case for variables and methods
var life_icons = {}
# bad
$Health_Icon.position = Vector2()
# good: use CamelCase for Node names
$HealthIcon.position = Vector2()
Since a lot of PRs arrived, we have different styles in the codebase. It would be better to respect the official guidelines that I wrote in the README:
I will consider any PR (even just for a single file) that standardize the use of functions, variables, nodes names, add documentation,...
Eg: