summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2017-12-12Merge pull request #14474 from toger5/fixSliderNanNoshyaar
added missing NaN check fixes: #13255
2017-12-12Change statable to multistate, remove extra separatorPoommetee Ketson
2017-12-11Fix Index p_current=0 error at starting editorvolzhs
2017-12-11Merge pull request #14534 from AndreaCatania/patch-2Rémi Verschelde
Fixed bad bindings
2017-12-11Merge pull request #14543 from volzhs/checkbox-checkbutton-centerRémi Verschelde
Fix align=center info is not saved with CheckBox & CheckButton
2017-12-11Fix align=center info is not saved with CheckBox & CheckButtonvolzhs
2017-12-11Fix CheckBox minimum sizevolzhs
2017-12-11Fix CheckButton minimum sizevolzhs
2017-12-11Fixed bad bindingsAndreaCatania
2017-12-11Merge pull request #14511 from akien-mga/drop_tilemap_center_xyRémi Verschelde
TileMap: Drop unused center_x/center_y booleans
2017-12-11Merge pull request #14516 from AndreaCatania/patch-2Rémi Verschelde
Implemented physics linear and angular lock
2017-12-11Merge pull request #14520 from Smjert/fix/11247/skyboxRémi Verschelde
Fix skybox generation imprecision with Clang
2017-12-10Merge pull request #14505 from akien-mga/bind_vmethod_returnRémi Verschelde
Fix wrong return value in some virtual method bindings
2017-12-10Fix skybox generation imprecision with ClangStefano Bonicatti
The bug generated a "blue circle" at the bottom end of the y axis, and probably one too at the other end. This is caused by a normalization of a vector which results in its y component to be sometimes > 1.0 or < -1.0 in Clang. This value is then used with acos(), which returns NaN. Fixes #11247
2017-12-10Implemented physics linear and angular lockAndreaCatania
2017-12-10TileMap: Drop unused center_x/center_y booleansRémi Verschelde
Two years later they are still unused and we do not know their intend use case, so tschüss. Closes #2513.
2017-12-10Merge pull request #14509 from poke1024/fix_selection_copy_crashRémi Verschelde
Fix crash in RichTextLabel::selection_copy()
2017-12-10Fix crash in RichTextLabel::selection_copy()Bernhard Liebl
2017-12-10Fix wrong return value in some virtual method bindingsRémi Verschelde
2017-12-10Merge pull request #11510 from AndreaCatania/skelRémi Verschelde
Added skeleton x-ray
2017-12-10Merge pull request #13351 from poke1024/fix12451_2Rémi Verschelde
Make click on arrow properly open and close property editor modals
2017-12-10fix certain popup close clicks with popup buttonsBernhard Liebl
2017-12-10Implemented skeleton visibilityAndreaCatania
Removed code visibility code from popup menu
2017-12-10Style: Re-apply clang-format over recent invalid additionsRémi Verschelde
2017-12-10doc: Sync classref with current sourceRémi Verschelde
2017-12-10Fix mouse position in viewportvolzhs
2017-12-09added missing NaN check fixes: #13255toger5
2017-12-09Fix build in ArrayMeshRémi Verschelde
Bug introduced in 65fb961b8b2c81ce33c9e0e4c0add7b13da0193a.
2017-12-09Merge pull request #13371 from RayKoopa/mute_animation_tracksRémi Verschelde
Add feature to disable animation tracks
2017-12-09Merge pull request #14454 from CyanBlob/TileMapRémi Verschelde
Convert tilemap format in get_tile_data()
2017-12-09Update GIProbe data instead of creating a new one on bakeMarc Gilleron
2017-12-09Add feature to disable animation tracksRay Koopa
2017-12-09-Ability to and unwrap lightmap coordinates on importJuan Linietsky
-Added unwrap functionality to Mesh -Ability to display and debug mesh UVs -Added multiline draw, so it's easier and faster to draw UVs -Many fixes to SurfaceTool -Fixes to Thekla Unwrap, but it's a piece of ass and it keeps crashing. Will have to go away
2017-12-09Convert tilemap format in get_tile_data()Andrew Thomas
2017-12-09Merge pull request #13847 from YeldhamDev/filedialog_titleRémi Verschelde
Added "mode_overrides_title" property to FileDialog
2017-12-09Merge pull request #14315 from willnationsdev/animationtreeplayer-docsRémi Verschelde
[DOCS] AnimationTreePlayer props/members/methods, EditorFileSystem methods
2017-12-09Merge pull request #14321 from ibrahn/path2d-two-styleRémi Verschelde
Reworked PathFollow2D behaviour, based on such in version 2.1.
2017-12-09Merge pull request #14420 from MattUV/fold-shortcutRémi Verschelde
Modify shortcuts and menus to fold/unfold code
2017-12-09Merge pull request #12756 from Stratos695/masterRémi Verschelde
Allowing double-axis lock in RigidBody & KinematicBody (Fixes #12500)
2017-12-09Merge pull request #14384 from willnationsdev/docs-api-fixRémi Verschelde
[DOCS] AnimationPlayer prop API fixed
2017-12-09Merge pull request #14421 from PJB3005/17-12-08-fix_tilemap_occluder_offsetRémi Verschelde
Fixes TileMap occluder offsets.
2017-12-08[DOCS] AnimationTreePlayer props/members/methodsWill Nations
2017-12-08Fix TileSet::AutotileData::ocludder_map typoPJB3005
2017-12-08Fixes TileMap occluder offsets.PJB3005
This is NOT related to #14388! This fixes a graphical bug where the light occluders used by tilemaps weren't getting offset anymore, this they'd be positioned incorrectly. I tried on all 3 tilemap positioning modes and it seemed to work on every one.
2017-12-08Modify shortcuts and menus to fold/unfold codeMattUV
Fix #13180 As the same shortcut cannot be assigned to two actions, I removed the ability to fold (fold_line()) or unfold (unfold_line()) via menu (still possible by code), and there is a single fold/unfold action (toggle_fold_line()). The new default shortcut is now Alt+F
2017-12-08Merge pull request #14014 from kosz78/scroll-container-fixRémi Verschelde
Fix scroll enabled in case of content fit in scroll container
2017-12-08Merge pull request #13981 from Paulb23/line_highlight_and_code_folding_colorRémi Verschelde
Changed current line draw order and added code folding colour
2017-12-07Fixed is_playing funtion (was reporting wrong), closes #13928Juan Linietsky
Made error reporting to opcode_set in gdscript a bit clearer
2017-12-07Changed current line draw order and added code folding colorPaulb23
2017-12-07[DOCS] AnimationPlayer prop API fixedWill Nations