summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2016-06-21Added code completion background color settingPaulb23
2016-06-20Add quotes to .tscn keys, solves #4366Juan Linietsky
2016-06-20Allow mouse wheel to go throuhgh so scroll containers work properly, fixes #4431Juan Linietsky
2016-06-20Fix error storing path for children of instanced nodes in .tscn, fixes #4320 ↵Juan Linietsky
fixes #4579 fixes #4580
2016-06-20Make dure to only call drop_data if can_drop_data returned true, closes #4616Juan Linietsky
2016-06-20Merge pull request #5196 from vnen/similarity-code-completionRémi Verschelde
Improve code completion search
2016-06-20Remove unused connection. ShaderEditor should'nt handle ShaderGraphs.MarianoGNU
Fixes #4678 && #4745
2016-06-20-Added options for scene import plugin to keep materials and user-added ↵Juan Linietsky
tracks to animations, please test! closes #4425
2016-06-19Merge pull request #5298 from Paulb23/caret_draw_focusRémi Verschelde
Text Edit no longer draws caret on focus loss
2016-06-19Replace 'or'/'and' keywordsGeorge Marques
Some compilers do not like this.
2016-06-19Text Edit no longer draws caret on focus lossPaulb23
2016-06-19Improve code completion searchGeorge Marques
- List completion by subsequence match. - Case insensitive. - Sort completion list by similarity.
2016-06-19Fix TextEdit cursor position after undo remove textGeorge Marques
It was going to where the text started, now it goes to where the text ends.
2016-06-19Merge pull request #5271 from neikeq/pr-issue-1004Rémi Verschelde
LineEdit cursor fixes and improvements
2016-06-19Merge pull request #5259 from neikeq/pr-textedit-zoomRémi Verschelde
TextEdit: Change font size with Ctrl+Mouse Wheel Up/Down
2016-06-19Merge pull request #5234 from Paulb23/fix_error_tab_printRémi Verschelde
Fixed error: set_current_tab print on project open
2016-06-19Merge pull request #5085 from RandomShaper/remove-unreachable-codeRémi Verschelde
Remove found dead code
2016-06-19Merge pull request #4724 from Cybolic/optional-loop-interpolationRémi Verschelde
Added toggle for loop interpolation based on adolson's code
2016-06-19Add function to get the color picker dialog from ColorPickerButton, closes #4415Juan Linietsky
2016-06-19-Added trigger mode to tracks, useful for properties that work as triggers, ↵Juan Linietsky
such as playing a sample, an animation, etc. -Better interpolation of discrete tracks, fixes #4417
2016-06-18DynamicFontData can be built-in (will still link to a ttf though), closes #4600Juan Linietsky
2016-06-18LineEdit: Word jumping and OSX hotkeysIgnacio Etcheverry
2016-06-18Drop fully commented-out filesRémi Verschelde
Part of #5272
2016-06-18Drop empty files that are not used anywhereRémi Verschelde
Part of #5272
2016-06-18TextEdit: Change font size with Ctrl+Mouse Wheel Up/DownIgnacio Etcheverry
2016-06-18Make ".." always appear even if dir is unlistable (likely lacking ↵Juan Linietsky
permissions), closes #1938
2016-06-18LineEdit: Fix and improve selection behaviourIgnacio Etcheverry
2016-06-18Add missing license headers in our source files (#5255)Rémi Verschelde
Also removes a couple wrong Godot headers from third-party source files.
2016-06-18Fix Theora video playback without a Vorbis streamBłażej Szczygieł
- prevent audio resampler errors when number of channels is 0, - don't check for 'audio_done' when there is no audio data. (cherry picked from commit 763b29f34e8c99c2f9559dcc31b59f99d0d6dee3)
2016-06-17TabContainer now reports proper minimum size, closes #4896Juan Linietsky
2016-06-17Send body inout notifications after state is applied, fixes #4683Juan Linietsky
2016-06-17Fix bug in GridContainer not updating minimumsize when columns changes, ↵Juan Linietsky
fixes #4677
2016-06-17Keep track of when fonts change, so theme or controls that use fonts as ↵Juan Linietsky
overrides get properly updated. closes #4622 , probably closes many other issues too
2016-06-17fixes compilation error on visual studio, closes #5249Juan Linietsky
2016-06-17-added missing .inc filesJuan Linietsky
-Made it possible to change the editor theme -Added two options to theme editor plugin to create empty template themes and editor themes -Make sure that saved themes to .tres keep the null theme fields, to make it easier to keep those when saving/loading the theme
2016-06-16It is now possible to set a default custom theme, whether you want a hidpi ↵Juan Linietsky
default theme, or just use a custom font for the default theme
2016-06-15Fixed error: set_current_tab print on project openPaulb23
2016-06-15Adds the ability to draw parent-children relationship lines in scene tree editorUgisBrekis
Can be turned on/off in editor settings + line color change available as well
2016-06-15Merge pull request #5218 from djrm/new_iconsRémi Verschelde
Some theme icons and better exporter
2016-06-15Merge pull request #5149 from m4nu3lf/masterRémi Verschelde
TimeSeek node in AnimationTreePlayer now propagates filters
2016-06-14Added some theme icons and its sourcesDaniel J. Ramirez
2016-06-14does not fix the bug reported in #4326 and #4818,Juan Linietsky
but at least make sure it throws and error and does not crash
2016-06-14correctly wrap lines longer than width in richtextlabel, fixes #4735Juan Linietsky
2016-06-13Better error text when trying to add/remove/move child nodes in a busy ↵Juan Linietsky
parent, closes #4838
2016-06-13fix crash when clearing dynamicfontdata, closes #4877Juan Linietsky
2016-06-13added a function CanvasItem.get_item_and_children_rect() , fixes #4738Juan Linietsky
2016-06-13propagate theme changes properly even through 2D nodes, fixes #4754Juan Linietsky
2016-06-13Merge pull request #5058 from neikeq/pr-issue-1461Juan Linietsky
Preserve signal connections when replacing target node
2016-06-13Merge pull request #5176 from marcelofg55/masterJuan Linietsky
Fixed overloaded virtual functions with const vs none warning
2016-06-12resolve numerical error when comparing instancing an inheritance to avoid ↵Juan Linietsky
saving changed properties when they didn't, closes 4759