aboutsummaryrefslogtreecommitdiff
path: root/scene
Commit message (Collapse)AuthorAgeFilesLines
* Made Vector::ptrw explicit for writing, compiler was sometimes using the ↵Juan Linietsky2017-11-2511-17/+17
| | | | | | wrong function, leading to unnecesary copy on writes and reduced performance.
* Fix style error with MenuButton in default themegeequlim2017-11-241-3/+3
|
* Fix TileMap and TileSet ClassDB bindingsRuslan Mustakov2017-11-242-2/+2
|
* Fixed not be able to unfold the last linePaulb232017-11-231-1/+1
|
* Fixed #13167. Restored ParallaxLayer mirroring that was broken by pull ↵Sofox2017-11-231-6/+10
| | | | request #12421
* change default propagation valueJuan Linietsky2017-11-221-2/+2
|
* Merge pull request #13159 from AndreaCatania/rayRémi Verschelde2017-11-227-45/+7
|\ | | | | Removed type_mask and fixed some variable name
| * Removed type_mask and fixed some variable nameAndreaCatania2017-11-217-45/+7
| |
* | Merge pull request #12129 from willnationsdev/duplicate-fixRémi Verschelde2017-11-221-21/+43
|\ \ | | | | | | Node.duplicate(): instanced node's descendants' props = original's runtime values.
| * | Node.duplicate(): instanced node's descendants' properties now updateWill Nations2017-11-211-21/+43
| | | | | | | | | | | | w/ original's runtime values.
* | | Merge pull request #12301 from MarianoGnu/masterRémi Verschelde2017-11-224-37/+710
|\ \ \ | | | | | | | | Implement auto-tiling
| * | | Implement auto-tilingMariano Suligoy2017-11-204-37/+710
| | | |
* | | | code folding scrolling fixesianb962017-11-211-18/+29
| |/ / |/| |
* | | Merge pull request #12284 from bojidar-bg/allow-subproperty-setRémi Verschelde2017-11-2110-160/+189
|\ \ \ | |_|/ |/| | Allow for getting/setting "dotted" properties of objects
| * | Allow for getting/setting indexed properties of objects using get/set_indexedBojidar Marinov2017-11-2110-162/+187
| | | | | | | | | | | | Performance is around the same as using pure set() through GDScript.
| * | Make Tween::interpolate_property's able to get() the initial valueBojidar Marinov2017-11-131-0/+4
| | | | | | | | | | | | To use this behavior, pass `null` in place of the initial_value parameter.
* | | Merge pull request #13121 from Krakean/change_filedialog_removedotGeorge Marques2017-11-211-1/+4
|\ \ \ | | | | | | | | Remove the "." and "/" (at the end of folders name) from file manage dialog (open scene, open file, ...)
| * | | Remove the "." from file manage dialog (open scene, open file, ...)Dmitry Koteroff2017-11-211-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | Also removed the "." from game control's FileDialog component. Also remove the "/" at the end of folders name.
* | | | Merge pull request #13132 from Chaosus/preserve_dupsignals_flagsRémi Verschelde2017-11-211-1/+1
|\ \ \ \ | | | | | | | | | | Preserve duplicate signal flags
| * | | | Preserve duplicate signal flagsChaosus2017-11-211-1/+1
| |/ / /
* | | | Merge pull request #13134 from Chaosus/fixinvalidscrollRémi Verschelde2017-11-211-1/+4
|\ \ \ \ | | | | | | | | | | Fix invalid scroll
| * | | | Fix invalid scrollChaosus2017-11-211-1/+4
| |/ / /
* / / / Native pan and zoom for macOSBernhard Liebl2017-11-219-40/+140
|/ / /
* | | Merge pull request #13105 from Krakean/masterRémi Verschelde2017-11-201-0/+6
|\ \ \ | | | | | | | | Files list: Add "New Folder.." popup when nothing under mouse cursor
| * | | Add "New Folder.." to right mouse button click on project fileslist panel ↵Dmitry Koteroff2017-11-201-0/+6
| | | | | | | | | | | | | | | | _WHEN_ no any file/folder is under mouse cursor.
* | | | Visual fixesDaniel J. Ramirez2017-11-201-2/+4
|/ / / | | | | | | | | | | | | Added some icons (Including the onion one) Fixed text editor ellipsis style and editor tabs
* | | Merge pull request #12421 from TheSofox/parallax-overhaulRémi Verschelde2017-11-205-16/+27
|\ \ \ | | | | | | | | Overhauled the ParallaxBackground system
| * | | Overhauled the ParallaxBackground system so that it works properly ↵Sofox2017-10-265-16/+27
| | | | | | | | | | | | | | | | regardless of the zoom of the camera.
* | | | Merge pull request #13082 from groud/fix_err_class_registrationPoommetee Ketson2017-11-201-2/+0
|\ \ \ \ | | | | | | | | | | Fixes a double class registration error
| * | | | Fixes a double class registering errorGilles Roudiere2017-11-201-2/+0
| | |_|/ | |/| |
* | | | Merge pull request #13023 from tom95/particles-align-y-12865Rémi Verschelde2017-11-201-3/+9
|\ \ \ \ | |/ / / |/| | | Make particles with DISABLE_Z active respect ALIGN_Y. Fixes #12865
| * | | Make particles with DISABLE_Z active respect ALIGN_Y. Fixes #12865Tom Beckmann2017-11-191-3/+9
| | | |
* | | | Merge pull request #12952 from bojidar-bg/12392-export-enumsRémi Verschelde2017-11-201-6/+26
|\ \ \ \ | | | | | | | | | | Allow exporting enums from GDScript
| * | | | Allow exporting enums from GDScriptBojidar Marinov2017-11-171-6/+26
| | | | | | | | | | | | | | | | | | | | | | | | | Use as `export(E) ...` Closes #12392
* | | | | Merge pull request #12983 from ianb96/scene_add_tabRémi Verschelde2017-11-202-61/+107
|\ \ \ \ \ | | | | | | | | | | | | Add Scene button and tab scrolling
| * | | | | add scene button and tab scrollingIan2017-11-182-61/+107
| | |/ / / | |/| | |
* | | | | Merge pull request #12984 from willnationsdev/richtextlabel-hover-signalRémi Verschelde2017-11-202-3/+26
|\ \ \ \ \ | | | | | | | | | | | | RichTextLabel: Adding ability for single meta hovering
| * | | | | Adding ability for single meta hoveringWill Nations2017-11-172-3/+26
| | | | | |
* | | | | | Merge pull request #13041 from RandomShaper/unify-node-duplicateRémi Verschelde2017-11-202-9/+43
|\ \ \ \ \ \ | | | | | | | | | | | | | | Let SceneTreeDock duplicate nodes via Node::duplicate()
| * | | | | | Let SceneTreeDock duplicate nodes via Node::duplicate()Pedro J. Estébanez2017-11-192-5/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Helps with #11182.
| * | | | | | Remove out-of-logic assignment of instance's original scenePedro J. Estébanez2017-11-191-4/+0
| | | | | | |
* | | | | | | Merge pull request #13049 from tagcup/pathfollow2d_parallel_transportRémi Verschelde2017-11-202-29/+22
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Use parallel transport in PathFollow2D.
| * | | | | | | Use parallel transport in PathFollow2D.Ferenc Arn2017-11-192-29/+22
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | Fixes #12995.
* | | | | | | Fix TextEdit::cursor_set_line bindingsRémi Verschelde2017-11-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | As spotted by @neikeq - fixes #13068.
* | | | | | | Merge pull request #13065 from DoctorAlpaca/masterRémi Verschelde2017-11-201-1/+4
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix the prevention for sliding on slopes in the 2d version of move_and_slide
| * | | | | | | Fix the prevention for sliding on slopes in the 2d version of move_and_slideEric Wiltfang2017-11-201-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done by using the same method the 3d counterpart uses. Fixes #13063.
* | | | | | | | Ability to change indirect light energy.Juan Linietsky2017-11-192-0/+4
|/ / / / / / /
* | | | | | | Merge pull request #12950 from ianb96/code_foldingRémi Verschelde2017-11-202-73/+554
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Code Folding
| * | | | | | | scrolling fixesIan2017-11-182-119/+221
| | | | | | | |
| * | | | | | | TextEdit code foldingIan2017-11-172-51/+430
| | |_|/ / / / | |/| | | | |