Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-06 | AnimationTreePlayer (set_active, reset, constructor): seek all animations to ↵ | Josh Grams | |
start. | |||
2016-04-06 | AnimationTreePlayer (_process_node): more robust oneshot termination condition. | Josh Grams | |
2016-03-31 | AnimationTreePlayer (_process_node:TIMESEEK): allow auto-advance with 0 xfade. | Josh Grams | |
2016-03-31 | AnimationTreePlayer (_process_node:TIMESEEK): give p_seek precedence over ↵ | Josh Grams | |
tsn->seek_pos. | |||
2016-03-27 | * AnimationTreePlayer (_process_node): remove `switched` argument. | Josh Grams | |
The _process_node function (which recurses through the blend tree generating blend values and the active animation list) had an argument named `switched` which would loop an animation back to the beginning if it had reached the end (regardless of whether or not it was supposed to be a looping animation). This argument was only used in four places: two of them were overridden by a seek-to-zero, and I believe the other two are bugs. In OneShot, it was used to reset the oneshot animation to the beginning when fired. But this would fail if the oneshot node was fired before it had completed its previous run. While this *could* be a valid way for oneshot to work (firing does nothing if it's already running), the code currently resets the fade-in, so I believe that it is intended to reset. I replaced this usage with seek-to-0. In Transition, it was used on the previous (fading out) animation when seeking the Transition node, which I believe is incorrect: why would you want to loop a non-looping animation instead of simply fading out from the end? Also it will never happen unless you seek the Transition node twice during one cross-fade. The other two uses are in Transition and _process_animation, where it is used along with a seek-to-zero which overrides it. | |||
2016-03-23 | Merge pull request #4102 from SaracenOne/dynamic_margin_properties | Rémi Verschelde | |
Dynamic property list for control margins | |||
2016-03-22 | Enter the 2.1 alpha phase | Rémi Verschelde | |
To make it clearer that this branch is more recent than the stable 2.0.x releases. | |||
2016-03-22 | Add support for patch versions (2.0.x) | Rémi Verschelde | |
(cherry picked from commit 706d576f7b24ec62effd59f66f1d7c47c813056b) | |||
2016-03-22 | Merge pull request #4115 from Paulb23/number_syntax_highlighting | Rémi Verschelde | |
Syntax highlighting for numbers | |||
2016-03-22 | Merge pull request #4119 from sanikoyes/Pr-crash-exit-tree | Rémi Verschelde | |
Fix GDScript crash when call show/hide in func _exit_tree | |||
2016-03-22 | Fix GDScript crash when call show/hide in func _exit_tree | sanikoyes | |
2016-03-21 | Syntax highlighting for numbers | Paulb23 | |
2016-03-20 | Merge pull request #4105 from akien-mga/pr-android-shutdown-adb | Rémi Verschelde | |
Expose android/shutdown_adb_on_exit parameter | |||
2016-03-20 | Expose android/shutdown_adb_on_exit parameter and default to true | Rémi Verschelde | |
It was added in 30d0ca9 for the Steam build but only enabled when parsing a ._sc_ file that would define it. It is now available for all users to toggle, in and outside of Steam. Fixes #4073. | |||
2016-03-20 | Merge pull request #4033 from akien-mga/pr-sample-lib-stop-button | Rémi Verschelde | |
Add stop and delete buttons to sample library (supersedes #3339) | |||
2016-03-20 | Merge pull request #4104 from teamblubee/master | Rémi Verschelde | |
Add support for gnu-libstc++-4.9 needed by recent NDK versions | |||
2016-03-20 | Add support for gnu-libstc++-4.9 needed by recent NDK versions | blubee | |
The 4.9 version is the default one, people can still build using 4.8 with older NDK versions by setting the (optional) NDK_TARGET and NDK_TARGET_X86 environment variables. | |||
2016-03-20 | Dynamic property list for control margins allowing floating point properties ↵ | Saracen | |
to be used with ratio anchors. | |||
2016-03-19 | Merge pull request #4085 from sanikoyes/Pr-adb-keep-user-data | Rémi Verschelde | |
Add -r flag to adb install for keep app user data | |||
2016-03-19 | Merge pull request #4095 from neikeq/pr-bind-add_spacer | Rémi Verschelde | |
BoxContainer: Bind method add_spacer(bool) | |||
2016-03-19 | Merge pull request #4094 from neikeq/pr-fix-4062 | Rémi Verschelde | |
TextEdit: Fix Shift+Delete shortcut not calling cut() | |||
2016-03-19 | BoxContainer: Bind method add_spacer(bool) | Ignacio Etcheverry | |
2016-03-19 | TextEdit: Fix Shift+Delete shortcut not calling cut() | Ignacio Etcheverry | |
2016-03-19 | Merge pull request #4088 from bojidar-bg/PR-fix-tilemap-z | Rémi Verschelde | |
Fix issues with tilemap covering child nodes and old quadrants | |||
2016-03-19 | Merge pull request #4090 from demolitions/master | Rémi Verschelde | |
Fixes #3942 - Throws an error when exporting for X11 with no filename | |||
2016-03-18 | Fixes #3942 - Throws an error when exporting for X11 with no filename | demolitions | |
2016-03-18 | Merge pull request #4087 from demolitions/master | Rémi Verschelde | |
Fix for #4014 | |||
2016-03-18 | Fix issues with tilemap covering child nodes and old quadrants | Bojidar Marinov | |
Closes #4070 | |||
2016-03-18 | Fix for #4014, changed to 2 instead of 3 chars to trigger search | demolitions | |
2016-03-18 | Merge pull request #4077 from sanikoyes/Pr-resourcepreloader-multiple-select | Rémi Verschelde | |
Allow select multiple files in ResourcePreloaderEditor | |||
2016-03-18 | Merge pull request #4086 from Paulb23/toggle_draw_tabs | Rémi Verschelde | |
Option to toggle tab drawing | |||
2016-03-18 | Option to toggle tab drawing | Paulb23 | |
2016-03-18 | Rename path to paths | sanikoyes | |
2016-03-18 | Add -r flag to adb install for keep app user data | sanikoyes | |
2016-03-18 | Merge pull request #4071 from Razzlegames/getUnixTimeFromDateTime | Rémi Verschelde | |
Add function to convert Datetime from a dictionary to Epoch | |||
2016-03-18 | Merge pull request #4083 from SaracenOne/tree_control_cursor_fix | Rémi Verschelde | |
Fix cursor getting locked on tree control | |||
2016-03-17 | Fix cursor getting locked on tree control if tree is cleared while modifying ↵ | Saracen | |
numerical element. | |||
2016-03-17 | Merge pull request #4082 from Paulb23/word_highlighting | Rémi Verschelde | |
Fixes for Word highlighting | |||
2016-03-17 | Fixed highlighting when word occurs as substring first | Paulb23 | |
2016-03-17 | Fixed highliting with shift and mouse | Paulb23 | |
2016-03-17 | Merge pull request #4076 from Paulb23/word_highlighting | Rémi Verschelde | |
Highlight all occurrences of selected word | |||
2016-03-16 | Add function to convert Date time from a dictionary to Epoch | Kyle Luce | |
- Also changed get_time_from_unix_time to get_date_time_from_unix_time to be consistent. Ticket: https://github.com/godotengine/godot/issues/4038 | |||
2016-03-17 | Allow select multiple files in ResourcePreloaderEditor | sanikoyes | |
2016-03-16 | Highlight all occurrences of selected word | Paulb23 | |
2016-03-16 | Merge pull request #4065 from TheHX/issue-4058 | Rémi Verschelde | |
Fix editors panels, of the bottom panel, not resizing in some cases | |||
2016-03-15 | Merge pull request #4006 from TheHX/tilemap-editor | Rémi Verschelde | |
Several improvements for the Tilemap editor | |||
2016-03-15 | Fix editors panels, of the bottom panel, not resizing in some cases | Franklin Sobrinho | |
2016-03-15 | Tilemap Editor: Fix some last issues of PR-4006 | Franklin Sobrinho | |
2016-03-15 | Merge pull request #4062 from neikeq/pr-issue-4060 | Rémi Verschelde | |
LineEdit/TextEdit: Add Shift+Delete shortcut for cut | |||
2016-03-15 | LineEdit/TextEdit: Add Shift+Delete shortcut for cut | Ignacio Etcheverry | |