Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-28 | Add tile index prefixes in tile map editor plugin. #5420 | Samuel Grigolato | |
2016-06-26 | Avoid mirroring to go negative to fix crash, closes #4036 | Juan Linietsky | |
2016-06-26 | remove the warning of instances in use at exit | Juan Linietsky | |
2016-06-26 | Added an option to ParallaxLayer to add an extra scroll offset, helps if you ↵ | Juan Linietsky | |
want to make clouds to move by themselves and animate that, for example. | |||
2016-06-26 | Fix error reporting when a scene is not imported properly, closes #3968 | Juan Linietsky | |
2016-06-26 | Merge pull request #5434 from vnen/fix-msvc-cscript-compile | Rémi Verschelde | |
Fix cscript module syntax errors for MSVC compiler | |||
2016-06-26 | Fix cscript module syntax errors for MSVC compiler | George Marques | |
2016-06-26 | Merge pull request #5431 from godotengine/revert-5416-master | Juan Linietsky | |
Revert "Fix issue when switching between FileSystem and other editor docks" | |||
2016-06-26 | Revert "Fix issue when switching between FileSystem and other editor docks" | Juan Linietsky | |
2016-06-26 | Merge pull request #5430 from godotengine/revert-5391-parallax-layer-fix-tidy | Rémi Verschelde | |
Revert "Improve parallax mirroring algorithm" | |||
2016-06-26 | Revert "Improve parallax mirroring algorithm" | Rémi Verschelde | |
2016-06-26 | Ability to set draw transform as a matrix, closes #5428 | Juan Linietsky | |
2016-06-26 | Cleaner way to enable ptrcall | Juan Linietsky | |
2016-06-26 | missing files | Juan Linietsky | |
2016-06-26 | -Fix crashes with thread_exit() | Juan Linietsky | |
-Added draft of C script API (still disabled and unused) | |||
2016-06-26 | Merge pull request #5416 from samuelgrigolato/master | Rémi Verschelde | |
Fix issue when switching between FileSystem and other editor docks | |||
2016-06-26 | Merge pull request #5412 from vnen/dvector-invert-bind | Rémi Verschelde | |
Expose *Array.invert() to script | |||
2016-06-26 | Merge pull request #5395 from vnen/android-sensors | Rémi Verschelde | |
Fix Android sensors polling rate on resume | |||
2016-06-26 | Merge pull request #5390 from volzhs/jni-stringarray | Rémi Verschelde | |
Fix string array parameter check with jni | |||
2016-06-26 | Merge pull request #5307 from MarianoGnu/master | Rémi Verschelde | |
TextureRegion improvements | |||
2016-06-25 | Fix issue when switching between FileSystem and other docks. #5384 | samuel.grigolato | |
2016-06-25 | try to fix windows build | Juan Linietsky | |
2016-06-25 | Add *Array.invert() documentation | George Marques | |
2016-06-25 | Expose *Array.invert() to script | George Marques | |
Properly solve #4601. | |||
2016-06-25 | Added function to notify ScriptLanguage when a thread is created/freed, ↵ | Juan Linietsky | |
allows scripts to allocate a stack there via TLS | |||
2016-06-25 | Gradle: remove trailing spaces | Rémi Verschelde | |
2016-06-25 | Merge pull request #5400 from paper-pauper/wm-class-fix | Rémi Verschelde | |
Changes X11 res_name to "Godot_Engine" | |||
2016-06-25 | Merge pull request #5398 from djrm/shortcuts | Rémi Verschelde | |
Configurable shortcuts for tabs switching | |||
2016-06-25 | Merge pull request #5397 from djrm/gizmos_fix | Rémi Verschelde | |
Added high resolution icons for the Gizmos | |||
2016-06-25 | Changes X11 res_name to "Godot_Engine" | paper-pauper | |
Add additional/alternative WM_CLASS; only affects the game window, avoids redundancy and allows finer control in WMs (#5265) | |||
2016-06-24 | Configurable shortcuts for tabs switching | Daniel J. Ramirez | |
2016-06-24 | Added high resolution icons for the Gizmos, fixes #1638 | Daniel J. Ramirez | |
2016-06-24 | Fix Android sensors polling rate on resume | George Marques | |
Fix #5306 | |||
2016-06-24 | changed way to return reference | Juan Linietsky | |
2016-06-24 | Merge pull request #5391 from RandomShaper/parallax-layer-fix-tidy | Rémi Verschelde | |
Improve parallax mirroring algorithm | |||
2016-06-24 | Merge pull request #5389 from volzhs/remove-duplicate-aidl | Rémi Verschelde | |
Remove duplicated aidl for android | |||
2016-06-24 | Merge pull request #5388 from Hinsbart/keyword_bool | Rémi Verschelde | |
Add "bool" to GDScript reserverd keywords | |||
2016-06-24 | Merge pull request #5386 from Paulb23/code_completion_color_theme | Rémi Verschelde | |
Exposed code completion colors to the text edit theme | |||
2016-06-24 | Merge pull request #5382 from volzhs/fix-save-ip | Rémi Verschelde | |
Fix network IP setting change | |||
2016-06-24 | Merge pull request #5380 from vnen/string-canvasitem-docs | Rémi Verschelde | |
Documentation for String and CanvasItem | |||
2016-06-24 | Merge pull request #5379 from neikeq/pr-issue-5375 | Rémi Verschelde | |
Fix weird deselection behaviour with text field | |||
2016-06-24 | Merge pull request #5328 from Paulb23/line_edit_caret | Rémi Verschelde | |
Added caret blink to line edit | |||
2016-06-25 | Fix string array parameter check with jni | volzhs | |
2016-06-24 | Improve parallax mirroring algorithm | Pedro J. Estébanez | |
Replaces the iterative approach currently used by the standard fmod() function. Also fixes infinite looping that happens when the mirroring value is negative. | |||
2016-06-25 | Remove duplicated aidl for android | volzhs | |
Tested IAP function on device. | |||
2016-06-24 | Merge pull request #5387 from vnen/fix-strrange-comparison | Juan Linietsky | |
Fix bug in String==StrRange comparison | |||
2016-06-24 | Add "bool" to GDScript reserverd keywords | Andreas Haas | |
Noticed that "bool" wasn't highlighted when used like `export(bool) var is_xy = false` | |||
2016-06-24 | Fix bug in String==StrRange comparison | George Marques | |
It was comparing the StrRange with itself, always return true if both were the same length. Fix #3843 | |||
2016-06-24 | Exposed code completion colors to the text edit theme | Paulb23 | |
2016-06-24 | Properly report a valid error instead of reporting as a bug, closes #3841 | Juan Linietsky | |