Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 660 Bytes

contributing.md

File metadata and controls

15 lines (11 loc) · 660 Bytes

How to contribute

General

This guide is loosly based on Godot's contributing guidelines:

  • Use the latest stable release: Godot 3.4.4
  • If you want to implement a big feature, open an issue or a Github discussion so we can talk about it first
  • Format your commit messages with readability in mind

Codestyle

  • Adapt to the project's coding style
  • Use C-style logical operators: &&, ||, ! instead of and, or, not
  • Use function separators (see any .gd file in this repository for examples)
  • Always use static typing