-Due to spam, wiki editing has been restricted to the dev team only. Sorry for any inconvenience-
Code Contributions
From IrrlichtSharp
[edit]
Posting Code
Please post your contributions in the Code Forum if you don't have write access to SVN.
Please mark any posts clearly with filename, description, and what the heck we are supposed to do with them
If you are posting code fragments, please post them as an entire method complete with XML comments, makes things much easier to manage.
[edit]
Coding Conventions
- We are using camelCase for field/variable/parameter names throughout.
- We are using PascalCase for methods/properties/classes/etc
- We are not using hungarian notion or any other wierd naming stuff
- We are not using prefixes for variables/fields
- We are using properly descriptive names wherever possible
- We are using XML commenting as much as possible
- We are commenting changes to orignal code and similar
- We are putting variables near the top of the class file so we can find them easily
- We are using #region to group stuff together
- etc.
(Don't worry about it too much on existing code, but it really helps with readability)
