summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-06AnimationTreePlayer (set_active, reset, constructor): seek all animations to ↵Josh Grams
start.
2016-04-06AnimationTreePlayer (_process_node): more robust oneshot termination condition.Josh Grams
2016-03-31AnimationTreePlayer (_process_node:TIMESEEK): allow auto-advance with 0 xfade.Josh Grams
2016-03-31AnimationTreePlayer (_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-23Merge pull request #4102 from SaracenOne/dynamic_margin_propertiesRémi Verschelde
Dynamic property list for control margins
2016-03-22Enter the 2.1 alpha phaseRémi Verschelde
To make it clearer that this branch is more recent than the stable 2.0.x releases.
2016-03-22Add support for patch versions (2.0.x)Rémi Verschelde
(cherry picked from commit 706d576f7b24ec62effd59f66f1d7c47c813056b)
2016-03-22Merge pull request #4115 from Paulb23/number_syntax_highlightingRémi Verschelde
Syntax highlighting for numbers
2016-03-22Merge pull request #4119 from sanikoyes/Pr-crash-exit-treeRémi Verschelde
Fix GDScript crash when call show/hide in func _exit_tree
2016-03-22Fix GDScript crash when call show/hide in func _exit_treesanikoyes
2016-03-21Syntax highlighting for numbersPaulb23
2016-03-20Merge pull request #4105 from akien-mga/pr-android-shutdown-adbRémi Verschelde
Expose android/shutdown_adb_on_exit parameter
2016-03-20Expose android/shutdown_adb_on_exit parameter and default to trueRé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-20Merge pull request #4033 from akien-mga/pr-sample-lib-stop-buttonRémi Verschelde
Add stop and delete buttons to sample library (supersedes #3339)
2016-03-20Merge pull request #4104 from teamblubee/masterRémi Verschelde
Add support for gnu-libstc++-4.9 needed by recent NDK versions
2016-03-20Add support for gnu-libstc++-4.9 needed by recent NDK versionsblubee
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-20Dynamic property list for control margins allowing floating point properties ↵Saracen
to be used with ratio anchors.
2016-03-19Merge pull request #4085 from sanikoyes/Pr-adb-keep-user-dataRémi Verschelde
Add -r flag to adb install for keep app user data
2016-03-19Merge pull request #4095 from neikeq/pr-bind-add_spacerRémi Verschelde
BoxContainer: Bind method add_spacer(bool)
2016-03-19Merge pull request #4094 from neikeq/pr-fix-4062Rémi Verschelde
TextEdit: Fix Shift+Delete shortcut not calling cut()
2016-03-19BoxContainer: Bind method add_spacer(bool)Ignacio Etcheverry
2016-03-19TextEdit: Fix Shift+Delete shortcut not calling cut()Ignacio Etcheverry
2016-03-19Merge pull request #4088 from bojidar-bg/PR-fix-tilemap-zRémi Verschelde
Fix issues with tilemap covering child nodes and old quadrants
2016-03-19Merge pull request #4090 from demolitions/masterRémi Verschelde
Fixes #3942 - Throws an error when exporting for X11 with no filename
2016-03-18Fixes #3942 - Throws an error when exporting for X11 with no filenamedemolitions
2016-03-18Merge pull request #4087 from demolitions/masterRémi Verschelde
Fix for #4014
2016-03-18Fix issues with tilemap covering child nodes and old quadrantsBojidar Marinov
Closes #4070
2016-03-18Fix for #4014, changed to 2 instead of 3 chars to trigger searchdemolitions
2016-03-18Merge pull request #4077 from sanikoyes/Pr-resourcepreloader-multiple-selectRémi Verschelde
Allow select multiple files in ResourcePreloaderEditor
2016-03-18Merge pull request #4086 from Paulb23/toggle_draw_tabsRémi Verschelde
Option to toggle tab drawing
2016-03-18Option to toggle tab drawingPaulb23
2016-03-18Rename path to pathssanikoyes
2016-03-18Add -r flag to adb install for keep app user datasanikoyes
2016-03-18Merge pull request #4071 from Razzlegames/getUnixTimeFromDateTimeRémi Verschelde
Add function to convert Datetime from a dictionary to Epoch
2016-03-18Merge pull request #4083 from SaracenOne/tree_control_cursor_fixRémi Verschelde
Fix cursor getting locked on tree control
2016-03-17Fix cursor getting locked on tree control if tree is cleared while modifying ↵Saracen
numerical element.
2016-03-17Merge pull request #4082 from Paulb23/word_highlightingRémi Verschelde
Fixes for Word highlighting
2016-03-17Fixed highlighting when word occurs as substring firstPaulb23
2016-03-17Fixed highliting with shift and mousePaulb23
2016-03-17Merge pull request #4076 from Paulb23/word_highlightingRémi Verschelde
Highlight all occurrences of selected word
2016-03-16Add function to convert Date time from a dictionary to EpochKyle 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-17Allow select multiple files in ResourcePreloaderEditorsanikoyes
2016-03-16Highlight all occurrences of selected wordPaulb23
2016-03-16Merge pull request #4065 from TheHX/issue-4058Rémi Verschelde
Fix editors panels, of the bottom panel, not resizing in some cases
2016-03-15Merge pull request #4006 from TheHX/tilemap-editorRémi Verschelde
Several improvements for the Tilemap editor
2016-03-15Fix editors panels, of the bottom panel, not resizing in some casesFranklin Sobrinho
2016-03-15Tilemap Editor: Fix some last issues of PR-4006Franklin Sobrinho
2016-03-15Merge pull request #4062 from neikeq/pr-issue-4060Rémi Verschelde
LineEdit/TextEdit: Add Shift+Delete shortcut for cut
2016-03-15LineEdit/TextEdit: Add Shift+Delete shortcut for cutIgnacio Etcheverry