| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
I can show you the code
Pretty, with proper whitespace
Tell me, coder, now when did
You last write readable code?
I can open your eyes
Make you see your bad indent
Force you to respect the style
The core devs agreed upon
A whole new world
A new fantastic code format
A de facto standard
With some sugar
Enforced with clang-format
A whole new world
A dazzling style we all dreamed of
And when we read it through
It's crystal clear
That now we're in a whole new world of code
|
|
|
|
|
|
|
| |
- Add FIXME tags comments to some unfixed potential bugs
- Remove some checks (always false: unsigned never < 0)
- Fix some if statements based on reviews.
- Bunch of missing `else` statements
|
| |
|
|\
| |
| | |
Greater VCS friendliness
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Serialize dictionaries adding newlines between key-value pairs
Serialize group lists also with newlines in between
Serialize string properties escaping only " and \ (needed for a good diff experience with built-in scripts and shaders)
Bonus:
Make AnimationPlayer serialize its blend times always sorted so their order is predictable in the .tscn file.
This PR is back-compat; won't break the load of existing files.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Made sure files in core/ and tools/ have a proper Godot license header
when written by us. Also renamed aabb.{cpp,h} and object_type_db.{cpp,h}
to rect3.{cpp,h} and class_db.{cpp,h} respectively.
Also added a proper header to core/io/base64.{c,h} after clarifying
the licensing with the original author (public domain).
|
| |
| |
| |
| |
| | |
They do not play well with clang-format which aligns the `//` part
with the rest of the code block, thus producing badly indented commented code.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Matrix32 -> Transform2D
Matrix3 -> Basis
AABB -> Rect3
RawArray -> PoolByteArray
IntArray -> PoolIntArray
FloatArray -> PoolFloatArray
Vector2Array -> PoolVector2Array
Vector3Array -> PoolVector3Array
ColorArray -> PoolColorArray
|
| | |
|
| |
| |
| |
| | |
renamed to PoolVector
|
|\ \
| | |
| | |
| | |
| | | |
Various merge conflicts have been fixed manually and some mistakes
might have been made - time will tell :)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
-Most 2D drawing is implemented
-Missing shaders
-Missing all 3D
-Editor needs to be set on update always to be used, otherwise it does not refresh
-Large parts of editor not working
|
| |/
|/|
| |
| |
| |
| |
| |
| | |
That year should bring the long-awaited OpenGL ES 3.0 compatible renderer
with state-of-the-art rendering techniques tuned to work as low as middle
end handheld devices - without compromising with the possibilities given
for higher end desktop games of course. Great times ahead for the Godot
community and the gamers that will play our games!
|
|/ |
|
|
|
|
|
|
|
|
| |
In the editor settings you can disable default editor shortcuts.
When a default shortcut is disabled an InputEvent of type NONE must
be stored in the config file to allow the editor to remember that setting.
variant_parser.cpp was not properly encoding InputEvent of type NONE causing
the "corruption" of the editor settings file.
|
|
|
|
| |
Closes #5912
|
| |
|
|
|
| |
Also removes a couple wrong Godot headers from third-party source files.
|
|
|
|
| |
use and also fixes #4756
|
|
|
|
| |
fixes #4758
|
|
|
|
|
| |
-editor settings now save to .tres instead of .xml
-buttons can now hold a shortcut
|
| |
|
| |
|
|
|
|
| |
engine.cfg style cofig. Closes #3531
|
| |
|
| |
|
|
|
|
| |
requested, closes #3301
|
| |
|
| |
|
| |
|
|
|
|
| |
#3248 closes #3207
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
-It is now finally possible to parse back a variant from text!
|
|
|
|
|
|
|
| |
-Scene edit state is saved outside the scene now, to avoid changes .tscn files when nothing really changed
-Created a VariantWriter helper to unify all variant to text writing
-Moved SceneFormatText writing to VariantWriter
-Moved ConfigFile to use VariantWriter and VariantParser, added compatibility mode for old .cfg files that use engine.cfg format
|
| |
|
| |
|
|
|
|
| |
-Proper .tscn and .tres parsing, should work, please test well!
|
|
-fixed theora so it can compile theoralib but not theora
-fixed generation of windows icon in .rc, which didn't previously work in 32 bits
|