Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-13 | Drop unused EventQueue class | Rémi Verschelde | |
Thanks to @Marqin for the notice. | |||
2017-09-13 | Added a crash handler to dump the backtrace on Windows, Linux and OS X | Marcelo Fernandez | |
2017-09-13 | Merge pull request #11062 from BastiaanOlij/osx_datapack | Rémi Verschelde | |
Fixed loading package from resource folder, exporting textures to bun… | |||
2017-09-13 | Style: Apply clang-format to @reduz's changes | Rémi Verschelde | |
[ci skip] | |||
2017-09-12 | Changed the doc class generation to individual files per class. It is also ↵ | Juan Linietsky | |
possible to save module files in module directories and the build system will recognize them. | |||
2017-09-12 | Merge pull request #11106 from hpvb/documentation-fix-poolarrays | Rémi Verschelde | |
Correct the Pool*Array documentation | |||
2017-09-12 | Merge pull request #11049 from scayze/astar_get_points | Rémi Verschelde | |
Add get_points() method to AStar | |||
2017-09-12 | Merge pull request #11028 from mrawlingst/color-RGBA32 | Rémi Verschelde | |
Change Color.to_32() to Color.to_rgba32() and lowercase other functions | |||
2017-09-12 | Merge pull request #10908 from hpvb/fix-unused-variables | Rémi Verschelde | |
Fix unused variable warnings | |||
2017-09-12 | Merge pull request #11026 from hpvb/fix-assign-in-if | Rémi Verschelde | |
Remove assignment and declarations in if statements | |||
2017-09-12 | Merge pull request #11057 from hpvb/fix-various-warnings | Rémi Verschelde | |
Fix various assorted warnings | |||
2017-09-12 | Merge pull request #11044 from hpvb/fix-enum-as-bool | Rémi Verschelde | |
Fix using enum as bool value | |||
2017-09-12 | Merge pull request #11040 from hpvb/fix-enum-compare | Rémi Verschelde | |
Fix warnings comparing enums of different types | |||
2017-09-12 | Merge pull request #11041 from hpvb/fix-clang-format-error | Rémi Verschelde | |
Fix serveral recent new clang-format errors [ci skip] | |||
2017-09-10 | Add user data directory support for ProjectSettings::globalize_path | geequlim | |
2017-09-09 | Correct the Pool*Array documentation | Hein-Pieter van Braam | |
2017-09-08 | Fix unused variable warnings | Hein-Pieter van Braam | |
The forth in my quest to make Godot 3.x compile with -Werror on GCC7 | |||
2017-09-08 | Remove assignment and declarations in if statements | Hein-Pieter van Braam | |
After discussing with @reduz and @akien-mga it was decided that we do not allow assignments or declarations in if statements. This PR removes the instances of this I could find by automated means. | |||
2017-09-08 | Fix various assorted warnings | Hein-Pieter van Braam | |
Fix various warnings that don't have enough instances to merit individual commits. Also fixes a potential bug in audio_server.cpp. | |||
2017-09-08 | Fixed loading package from resource folder, exporting textures to bundle and ↵ | BastiaanOlij | |
added a bit of feedback for a debug compile | |||
2017-09-08 | Fix serveral recent new clang-format errors | Hein-Pieter van Braam | |
2017-09-07 | Several fixes to directional shadows, closes #10926 | Juan Linietsky | |
Added option to change directional light range mode, between optimized and stable. For Orthogonal, you might need to use optimized. | |||
2017-09-07 | Change Color.to_32() to to_rgba32() and format as RGBA | mrawlingst | |
2017-09-07 | Add get_points method to AStar | Scayze | |
2017-09-07 | Fix using enum as bool value | Hein-Pieter van Braam | |
This warning actually hid a bug. The value of ERR_INVALID_DATA is actually 30, returning this as a bool returns true while false was required. | |||
2017-09-07 | Fix warnings comparing enums of different types | Hein-Pieter van Braam | |
This fixes a source of many compiler warnings regarding comparing the enum VARIANT_TYPE to Variant::Type. This changes the local value to a static const Variant::Type value rather than an unrelated enum, this also saves us a cast. | |||
2017-09-06 | -Fixed changes to default input actions not working, closes #10502 | Juan Linietsky | |
-Added Array.duplicate() method, needed to fix above | |||
2017-09-06 | Fixes ERR_EXPLAIN being overwritten | Ignacio Etcheverry | |
2017-09-05 | Merge pull request #10993 from endragor/nativescript-property-order | Thomas Herzog | |
Provide NativeScript properties in definition order | |||
2017-09-05 | Provide NativeScript properties in definition order | Ruslan Mustakov | |
2017-09-05 | Optimize memory allocations in VariantParser::get_token | Evgeny Zuev | |
2017-09-05 | Add StringBuffer class | Evgeny Zuev | |
2017-09-05 | Merge pull request #10975 from hpvb/remove-null-check-from-cast-to | Rémi Verschelde | |
Remove NULL check from Object::cast_to() | |||
2017-09-04 | Merge pull request #10860 from karroffel/bob-the-string-builder | Thomas Herzog | |
added StringBuilder class | |||
2017-09-04 | Remove NULL check from Object::cast_to() | Hein-Pieter van Braam | |
After discussing this with @reduz on IRC we agreed to remove these checks. We now consider cast_to() to be NULL safe | |||
2017-09-04 | -Changed KinematicBody API yet again to make it friendlier | Juan Linietsky | |
-Fixed get_scale functions (and added set_scale) to make it more coherent when decomposing and composing (fixes bugs in transform interpolation) | |||
2017-09-04 | Merge pull request #10939 from neikeq/fix-overridden-external-editors | Rémi Verschelde | |
Fixes language overridden external editors | |||
2017-09-03 | Fixes language overridden external editors | Ignacio Etcheverry | |
2017-09-03 | -Fixed EditorDirDialog, which was really old and needed to use EditorFileSystem | Juan Linietsky | |
-Fixed refactoring tools to work with imported scenes (properly move .import files) | |||
2017-09-03 | Merge pull request #10903 from neikeq/fix-defval-order-definitely-i-promise | Rémi Verschelde | |
Fixes order of default arguments in MethodInfo | |||
2017-09-02 | Fixes order of default arguments in MethodInfo | Ignacio Etcheverry | |
This time for real | |||
2017-09-02 | Fix typos 'a' and 'an' | Poommetee Ketson | |
2017-09-02 | Fix use of unitialized variables | Hein-Pieter van Braam | |
The second in my quest to make Godot 3.x compile with -Werror on GCC7 | |||
2017-09-01 | Merge pull request #10846 from hpvb/fix-sign-compare | Rémi Verschelde | |
Fix signed and unsigned comparisons | |||
2017-09-01 | Merge pull request #10862 from neikeq/fix-defvals-methodinfo | Ignacio Etcheverry | |
Fixes reversed order of default arguments in MethodInfo | |||
2017-09-01 | added StringBuilder class | Karroffel | |
When doing large string concatenations the default push_back on the String class can slow down things quite a bit. This is because it has to constantly reallocate the memory and copy the contents. This StringBuilder class delays the concatenation until the size of the resulting string is known. | |||
2017-09-01 | Fixes reversed order of default arguments in MethodInfo | Ignacio Etcheverry | |
2017-09-01 | Fix files header | Poommetee Ketson | |
2017-09-01 | Merge pull request #10318 from endragor/ordered-hash-map | Rémi Verschelde | |
Implement OrderedHashMap | |||
2017-09-01 | Has_method is already provided by Object | Hein-Pieter van Braam | |
c812c17633 introduces some extra gdscript bindings for signal discovery and adds a binding for has_method() to Script objects. This method is already provided by the ancestor Object. This fixes the startup message: ERROR: bind_methodfi: Class Script already has a method has_method At: core/class_db.cpp:1178. |