summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2018-07-18Style: Format code with clang-format 6.0.1Rémi Verschelde
2018-07-18Export: Properly reload preset when opening dialogRémi Verschelde
Fixes #20119 where newly installed templates were not detected. Also fix a bug with preset deletion where it would attempt to edit an already removed preset. For this I made it so that ItemList::deselect_all() also resets `current` to -1, as a manual ItemList::deselect(idx) already does.
2018-07-18Merge pull request #20140 from EIREXE/ambient_light_disable_shaderRémi Verschelde
Add disable ambient light flag to shaders and materials
2018-07-18Merge pull request #20232 from marcelofg55/fix_enums_vsRémi Verschelde
Fix some missing BIND_ENUM_CONSTANT for visual_shader_nodes.cpp
2018-07-17Fix some missing BIND_ENUM_CONSTANT for visual_shader_nodes.cppMarcelo Fernandez
2018-07-17Add disable ambient light flag to shaders and materialsAlex Roman
2018-07-18Fix Label autowrap clips textvolzhs
2018-07-17Merge pull request #19044 from Mintormo/make_header_fixMax Hilbrunner
Added support of Python 3 in make_header.py
2018-07-17Merge pull request #19087 from danvalho/masterMax Hilbrunner
SpriteFrames: expose method to get array containing animation names
2018-07-17Merge pull request #20146 from dodgyville/bezier_fixes_19777Rémi Verschelde
fix issue with bezier tracks using incorrect duration for interpolating values
2018-07-17Further fixes to KinematicBody2D API, support for sync motion in moving objectsJuan Linietsky
2018-07-17Merge pull request #20176 from Chaosus/vs_namefixesRémi Verschelde
Several name fixes for visual shaders
2018-07-17Merge pull request #20150 from ibrahn/fix-scrollbar-atlasMax Hilbrunner
fix scrollbar icons with atlas texture.
2018-07-17Merge pull request #20191 from jvdnbus/line2d-stretchMax Hilbrunner
Line2D texture stretch mode
2018-07-16Changes to how snap works (I think this makes more sense now)Juan Linietsky
2018-07-16-Added support for raycast in KinematicBody2DJuan Linietsky
-Added support for snapping in KinematicBody2D
2018-07-16Line2D texture stretch modeJorn Van denbussche
Prototype for stretching the texture across the whole line. Fixed end cap tile mode.
2018-07-16Finally figured out how to implement AnimatedTexture properly.Juan Linietsky
2018-07-16Merge pull request #20034 from Faless/master_fixesThomas Herzog
Fix server and GDNative in master branch
2018-07-16More accurate UV round begin capJorn Van denbussche
2018-07-15Several name fixes for visual shaderChaosus
2018-07-14Visual Shaders are back.Juan Linietsky
2018-07-14fix scrollbar icons with atlas texture.Ibrahn Sahir
Draw scrollbar icons through their textures, rather than calling directly to the server. Allows atlas textures to manipulate the source rect as required.
2018-07-14fix issue with bezier tracks using incorrect duration for interpolating valuesLuke Miller
2018-07-12Merge pull request #20068 from Xrayez/submenu-popup-delayMax Hilbrunner
Add ability to set submenu's popup delay time on mouse hovering
2018-07-12Merge pull request #19540 from muiroc/cylinderMax Hilbrunner
Cylinder resource and collision shape (bullet only)
2018-07-10Fix possible bug with AudioStreamPlayer2D audio positionMarcelo Fernandez
2018-07-10fix ColorPickerButton.get_popup()Alexander Holland
2018-07-10Merge pull request #20014 from Chaosus/scrollableMax Hilbrunner
Added scrollable property for sliders
2018-07-09Improved stream paused fade codeMarcelo Fernandez
2018-07-09Add ability to set submenu's popup delay time on mouse hoveringAndrii Doroshenko (Xrayez)
This allows to set delay time for the submenu to popup. Setting this value low can increase responsiveness. If the popup menu is added as a child of another (acting as a submenu), it will inherit the delay time of the parent menu item.
2018-07-08Fix some enum export in new Animation editor.Fabio Alessandrelli
2018-07-07Add option to convert Particles to CPUParticlesJuan Linietsky
2018-07-07Added scrollable property to SlidersChaosus
2018-07-06Support for CPU based particles, which aids compatibility with OpenGL ES 2.0Juan Linietsky
2018-07-05Merge pull request #19475 from YeldhamDev/animplayer_cosmeticMax Hilbrunner
Minor changes to the AnimationPlayer editor
2018-07-05Merge pull request #19498 from guilhermefelipecgs/fix_regressionMax Hilbrunner
Fix "find and replace" initializing with wrong size
2018-07-05Merge pull request #19646 from chanon/fix-audiostream-cant-set-null-streamMax Hilbrunner
Fix can't set AudioStreamPlayer stream to null
2018-07-05Merge pull request #19735 from Paulb23/text_offset_issue_15688Max Hilbrunner
Fixed text drawing too high in TextEdit, issue 15688
2018-07-05Merge pull request #19351 from guilhermefelipecgs/fix_reversed_textMax Hilbrunner
Fixes to the new inspector
2018-07-05Merge pull request #19187 from Zirak/editor-autocomplete-quoteMax Hilbrunner
Editor autocomplete won't insert unnecessary quotes
2018-07-05Merge pull request #18028 from gabrii/18026Max Hilbrunner
Fix #18026. Expose TextEdit::set_draw_breakpoint_gutter.
2018-07-04Fixes to the new inspectorGuilherme Felipe
- Fix inspector dock not updating tree for main resource; - Fixes the inspector input text reverted during typing; - Add method bind for "refresh" used by MultiNodeEdit;
2018-07-05Merge pull request #19015 from ↵Max Hilbrunner
toger5/fixed_scrolling_with_trackpad_in_new_inspector fixed scrolling in new ispector when using trackpad pan gesture
2018-07-04Merge pull request #19960 from groud/fix_control_sizeMax Hilbrunner
Fixes control nodes size not updated when outside the tree
2018-07-04Merge pull request #19947 from GagaPete/html5-http-fixMax Hilbrunner
Fix CORS problems due to added headers on JS target
2018-07-04Fixes control nodes size not updated when outside the treegroud
2018-07-04Merge pull request #19782 from Calinou/fix-control-pixel-snap-roundingRémi Verschelde
Fix control pixel snap rounding using floor() instead of round()
2018-07-04Merge pull request #19786 from JFonS/correct_normal_scalingRémi Verschelde
Add render mode to ensure correct normals when using non-uniform scaling
2018-07-04Fix CORS problems due to added headers on JS targetGagaPete
Before this change, missing User-Agent and Accept headers were automatically added on all platforms. Setting the User-Agent header forces the browser to do a CORS preflight (see 1) which fails if the HTTP endpoint is not configured appropriate. It's not neccesary to set either header as the browser sets them and so this commit disables that functionality on the JS target. 1: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Simple_requests