| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
| |
This commit fixes issue #17585: renaming/moving resources can corrupt
scene files. The corruption was caused by
'ResourceFormatLoaderBinary::rename_dependencies' updating the file
format version field of the affected scene file to the latest version
without actually updating the content of the file to that version,
resulting in a file whose content does not match its file format version
field. The fix preserves the file format version field and the engine
version fields when renaming dependencies.
|
| | |
|
| |
|
|
|
|
| |
Using `misc/scripts/fix_headers.py` on all Godot files.
Some missing header guards were added, and the header inclusion order
was fixed in the Bullet module.
|
| |
|
|
| |
Happy new year to the wonderful Godot community!
|
| | |
|
| |
|
|
|
|
| |
test)
-This method works by directly converting text to binary, so the scene does not need to be loaded and saved
|
| |\
| |
| | |
Fix combatibility with older .scn files
|
| | | |
|
| |\|
| |
| | |
Allow for getting/setting "dotted" properties of objects
|
| | |
| |
| |
| | |
Performance is around the same as using pure set() through GDScript.
|
| |/
|
|
| |
Fixes #12973.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
Rename user facing methods and variables as well as the corresponding
C++ methods according to the folloming changes:
* pos -> position
* rot -> rotation
* loc -> location
C++ variables are left as is.
|
| |\
| |
| | |
Fix unused variable warnings
|
| | |
| |
| |
| | |
The forth in my quest to make Godot 3.x compile with -Werror on GCC7
|
| |/
|
|
|
| |
Fix various warnings that don't have enough instances to merit
individual commits. Also fixes a potential bug in audio_server.cpp.
|
| |
|
|
| |
-Fixed refactoring tools to work with imported scenes (properly move .import files)
|
| | |
|
| |
|
|
| |
The first in my quest to make Godot 3.x compile with -Werror on GCC7
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
Mostly in EditorNode, dropping some obsolete editor plugins and also a
cleanup of ProjectSettings/EditorSettings.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Currently we rely on some undefined behavior when Object->cast_to() gets
called with a Null pointer. This used to work fine with GCC < 6 but
newer versions of GCC remove all codepaths in which the this pointer is
Null. However, the non-static cast_to() was supposed to be null safe.
This patch makes cast_to() Null safe and removes the now redundant Null
checks where they existed.
It is explained in this article: https://www.viva64.com/en/b/0226/
|
| | |
|
| |
|
|
| |
Thus fixing some invalid changes that had still made it to the master branch.
|
| |
|
|
| |
-Added system for feature overrides, it's pretty cool :)
|
| |
|
|
|
|
|
|
| |
-Added new 3D stream player node
-Added ability for Area to capture sound from streams
-Added small features in physics to be able to properly guess distance to areas for sound
-Fixed 3D CollisionObject so shapes are added the same as in 2D, directly from children
-Fixed KinematicBody API to make it the same as 2D.
|
| |
|
|
|
| |
-Label and Button reload translation on the fly
-Resources are loaded and reload depending on locale
|
| | |
|
| | |
|
| |
|
|
| |
this might cause bugs I haven't found yet..
|
| |
|
|
| |
Also cleanup comments on variant types.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
modified files)
-.pck and .zip exporting redone, seems to be working..
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
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
|
| |
|
|
|
|
|
|
| |
categories.
-Changed SectionedPropertyEditor to support this
-Renamed Globals singleton to GlobalConfig, makes more sense.
-Changed the logic behind persisten global settings, instead of the persist checkbox, a revert button is now available
|
| | |
|
| |
|
|
|
|
|
|
| |
Variant.
All usages of "type" to refer to classes were renamed to "class"
ClassDB has been exposed to GDScript.
OBJ_TYPE() macro is now GDCLASS()
|
| |\
| |
| |
| |
| | |
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
|