aboutsummaryrefslogtreecommitdiff
path: root/scene (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Several visual improvements.Daniel J. Ramirez2017-09-2820-1065/+46
| | | | | | | | | Added proper label sizing Improved text editor status bar Fixed some issues with ItemList and also some style fixes Added background to color picker samples (the mrcdk fix) Fixed slider ticks. Added VS breakpoint and error styleboxes.
* Merge pull request #11617 from groud/fix_bad_displayRémi Verschelde2017-09-272-36/+66
|\ | | | | Fixes bad display
| * Fixes set_anchors_and_margins_preset()Gilles Roudiere2017-09-271-35/+65
| |
| * Remove unecessary anchors&margins set causing bad display (sons of containers)Gilles Roudiere2017-09-271-1/+1
| |
* | Merge pull request #11618 from tagcup/button_toggleRémi Verschelde2017-09-271-1/+3
|\ \ | | | | | | | | | | | | Fix toggle mode of BaseButton. [ci skip]
| * | Fix toggle mode of BaseButton.Ferenc Arn2017-09-261-1/+3
| |/ | | | | | | ..which got broken with #11480.
* / Fixed bug with clearing the stream in AudioPlayerStreamMarcelo Fernandez2017-09-271-4/+5
|/
* Fix crash when scene has LineEdit and run from editorvolzhs2017-09-261-1/+1
|
* Merge pull request #11587 from Zylann/directional_light_initRémi Verschelde2017-09-261-0/+6
|\ | | | | | | | | In editor, instance DirectionalLight with an initial orientation [ci skip]
| * In editor, instance DirectionalLight with an initial sun-like orientationMarc Gilleron2017-09-251-0/+6
| |
* | Merge pull request #11424 from groud/control_node_presetsRémi Verschelde2017-09-267-35/+141
|\ \ | | | | | | Implements set_margins_preset(...)
| * | Remove set_area_as_parent_rect and replace it by ↵Gilles Roudiere2017-09-227-23/+6
| | | | | | | | | | | | set_anchors_and_margins_preset(PRESET_WIDE)
| * | Implements set_margins_preset(...)Gilles Roudiere2017-09-222-12/+135
| | |
* | | Merge pull request #11541 from Paulb23/tree_arrow_goto_parentRémi Verschelde2017-09-251-2/+10
|\ \ \ | | | | | | | | | | | | | | | | Goto to parent on left arrow in tree with single column [ci skip]
| * | | Goto to parent on left arrow in tree with single columnPaulb232017-09-241-2/+10
| | | |
* | | | Merge pull request #11545 from ↵Rémi Verschelde2017-09-252-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Paulb23/line_edit_caret_blink_resetting_issue_10764 Fixed caret blink and speed resetting in scenes, issue 10764 [ci skip]
| * | | | Fixed caret blink and speed resetting in scenes, issue 10764Paulb232017-09-242-2/+2
| | | | |
* | | | | Merge pull request #11546 from Paulb23/scrollbar_jitterRémi Verschelde2017-09-251-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fixed scrollbar Jitter when clicking [ci skip]
| * | | | | Fixed scrollbar jitter when clickingPaulb232017-09-241-1/+1
| |/ / / /
* | | | / Use BoolVariable in target/component/advanced options.Elliott Sales de Andrade2017-09-251-1/+1
| |_|_|/ |/| | |
* | | | Merge pull request #11552 from Tetane/masterPoommetee Ketson2017-09-251-0/+1
|\ \ \ \ | |/ / / |/| | | Add missing constant binding STRETCH_ASPECT_EXPAND in SceneTree
| * | | Add a missing constant binding in SceenTreeTetane2017-09-241-0/+1
| | | | | | | | | | | | | | | | Add missing constant binding "STRETCH_ASPECT_EXPAND" (I cannot test it because godot does not compile anymore on my pc (windows10))
* | | | Fix: CollisionObject shape owner indexing is inconsistentdamarindra2017-09-242-2/+2
| | | |
* | | | Added light affect parameter to baked AOJuan Linietsky2017-09-232-0/+26
| | | |
* | | | Rename get_position => get_playback_position and seek_pos => seek on audio ↵Marcelo Fernandez2017-09-2310-20/+20
| | | | | | | | | | | | | | | | classes
* | | | Fixes to rim parameter in shaderJuan Linietsky2017-09-231-4/+4
| | | |
* | | | Changed get_audio_bus and set functions to get_audio_bus_name and setMarcelo Paez2017-09-223-8/+8
| | | | | | | | | | | | | | | | and edited docs for Area2D due to renaming o get_audio_bus and set_audio_bus
* | | | Ability to convert from SpatialMaterial to ShaderMaterialJuan Linietsky2017-09-222-0/+8
| | | |
* | | | Merge pull request #11480 from tagcup/button_unpress_fixRémi Verschelde2017-09-221-1/+1
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | Ensure pressed is set to false in BaseButton::_unpress_group. [ci skip]
| * | | Ensure pressed is set to false in BaseButton::_unpress_group.Ferenc Arn2017-09-211-1/+1
| | | |
* | | | RichTextLabel: Added get_visible_line_count method.Ferenc Arn2017-09-212-16/+54
|/ / / | | | | | | | | | Also exposed get_line_count to GDScript.
* | | Added proximity and distance fade to SpatialMaterialJuan Linietsky2017-09-212-1/+144
| | |
* | | Merge pull request #11013 from MednauN/masterRémi Verschelde2017-09-211-1/+12
|\ \ \ | | | | | | | | Fix duplication of node with script
| * | | Fix duplication of node with scriptEvgeny Zuev2017-09-201-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When duplicating node with script, properties of script weren't copied sometimes. It happened because properties were copied in arbitrary order, and properties of the script were setted before the "script" property itself, i.e. while script is sill NULL. Also, DUPLICATE_SCRIPTS flag wasn't working - script was always copied because `_duplicate` looked for "script/script" property while it should be just "script". Now "script" property is being set before all others, and "script/script" changed to `CoreStringNames::get_singleton()->_script`.
* | | | Merge pull request #11453 from djrm/pr_visualsRémi Verschelde2017-09-211-1/+1
|\ \ \ \ | | | | | | | | | | Visual tweaks.
| * | | | Visual tweaks.Daniel J. Ramirez2017-09-201-1/+1
| |/ / / | | | | | | | | | | | | | | | | Updated icons Updated some color
* | | | Merge pull request #11447 from akien-mga/queue_deleteRémi Verschelde2017-09-211-2/+5
|\ \ \ \ | | | | | | | | | | Let queue_free() work on nodes which are not in the scene tree
| * | | | Let queue_free() work on nodes which are not in the scene treeRémi Verschelde2017-09-201-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In practice such nodes could directly be free()'ed, but this little change prevents users from leaking memory by mistake. Closes #9074.
* | | | | Merge pull request #11365 from leezh/freetype_monoRémi Verschelde2017-09-211-2/+17
|\ \ \ \ \ | |/ / / / |/| | | | Added support for FT_PIXEL_MODE_MONO in FreeType
| * | | | Added support for FT_PIXEL_MODE_MONO in FreeTypeZher Huei Lee2017-09-191-2/+17
| | |_|/ | |/| |
* | | | Rename pos to position in user facing methods and variablesletheed2017-09-2057-235/+228
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is.
* | | Merge pull request #11256 from djrm/pr_visual_improvementsRémi Verschelde2017-09-191-3/+6
|\ \ \ | | | | | | | | Visual improvements and new look for VS
| * | | Improved VisualScriptEditorDaniel J. Ramirez2017-09-141-3/+6
| | | |
* | | | Merge pull request #10437 from groud/2d_editor_enhancementsRémi Verschelde2017-09-194-4/+4
|\ \ \ \ | |_|/ / |/| | | Some 2d editor enhancements
| * | | Add some options and reorganize the 2D editor menus. Makes available forced ↵Gilles Roudiere2017-09-184-4/+4
| | | | | | | | | | | | | | | | snapping.
* | | | Merge pull request #11372 from volzhs/fix-smooth-scrollRémi Verschelde2017-09-181-4/+4
|\ \ \ \ | | | | | | | | | | Fix smooth scrolling in ScrollBar
| * | | | Fix smooth scrolling in ScrollBarvolzhs2017-09-181-4/+4
| | | | | | | | | | | | | | | | | | | | fixes #11369
* | | | | Merge pull request #11021 from tuga3d/autocomplete-logic-attempt2Rémi Verschelde2017-09-182-0/+6
|\ \ \ \ \ | |_|/ / / |/| | | | autocomplete logic attempt 2, fixes #10695
| * | | | second take at autocomplete logic, using a TextOperation check.Paulo Gomes2017-09-062-0/+6
| | | | |
* | | | | Merge pull request #11328 from Paulb23/left_right_arrow_tree_issue_10737Rémi Verschelde2017-09-171-29/+70
|\ \ \ \ \ | | | | | | | | | | | | Added Left / Right arrow navigation in tree, issue 10737