summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2019-10-05Merge pull request #32563 from qarmin/fix_tileset_crashRémi Verschelde
Fix crash in TileMap::fix_invalid_tiles
2019-10-05Fix crash in TileMap::fix_invalid_tilesqarmin
2019-10-04Merge pull request #22834 from lupoDharkael/recursive-itemRémi Verschelde
Add call_recursive method to TreeItem
2019-10-03Makes Texture and TextureUniform in visual shaders to use UV by defaultYuri Roubinsky
2019-10-03Merge pull request #32490 from mrcdk/tree_scroll_scrollcontainerRémi Verschelde
Handle scrolling correctly in Tree controls inside ScrollContainers
2019-10-03Remove unused stb_truetype-based DynamicFont implementationHugo Locurcio
The DynamicFont implementation currently in use is based on FreeType, which provides much better visual quality. This old implementation wasn't exposed anywhere, so this shouldn't break compatibility. This decreases binary sizes by a few kilobytes.
2019-10-02Merge pull request #32494 from Chaosus/vs_fix_globalsYuri Roubinsky
Fix global code in visual shaders if two or more custom nodes are used
2019-10-02Fix global code in visual shaders if two or more custom nodes are usedYuri Roubinsky
2019-10-02Handle scrolling correctly in Tree controls inside ScrollContainersMrCdK
2019-10-02Merge pull request #32485 from Calinou/macros-add-semicolonsRémi Verschelde
Add missing semicolons to `BIND_ENUM_CONSTANT` macro uses
2019-10-02Add missing semicolons to `BIND_ENUM_CONSTANT` macro usesHugo Locurcio
2019-10-02Revert "Fixes CPUParticles2D not making use of AtlasTextures"Rémi Verschelde
2019-10-02Merge pull request #32459 from bitstopper/masterRémi Verschelde
Fixes CPUParticles2D not making use of AtlasTextures
2019-10-01updated defaults and documentation for GLES2 glowclayjohn
2019-10-01Merge pull request #32467 from Ternvein/grid-container-min-size-fixRémi Verschelde
Fix GridContainer children visibility check for min size evaluation
2019-10-01FIX: GridContainer children visibility check for min size evaluationternvein
2019-10-01Fixes CPUParticles2D not making use of AtlasTexturesbitstopper
Fixes CPUParticles2D not making use of AtlasTextures #2
2019-10-01Merge pull request #32461 from Chaosus/vs_sampler_typeRémi Verschelde
Added sampler port type for visual shaders
2019-10-01Added sampler port type for visual shadersChaosus
2019-10-01Merge pull request #32364 from Relintai/resizeable-texture-progressRémi Verschelde
TextureProgress: nine_patch_stretch property -> enable stretching for radial fills.
2019-10-01Merge pull request #32440 from Ternvein/control-translation-fixRémi Verschelde
Fix for WindowDialog and Tabs controls translation
2019-10-01Merge pull request #32450 from soumyalahiri/rotation-adjustmentRémi Verschelde
Altered rotation_degrees range
2019-10-01Merge pull request #31845 from clayjohn/GLES2-BCSRémi Verschelde
Implement DOF blur, Glow, and BCS in GLES2
2019-10-01Merge pull request #30919 from nekomatata/timer-update-transform-fixRémi Verschelde
Fix GPU particle transform delay when created on SceneTree timer timeout
2019-09-30Make TextureProgress's nine_patch_stretch property to enable stretching for ↵Relintai
radial fills.
2019-09-30Altered rotation_degrees rangeSoumya Lahiri
2019-09-30Implement DOF blur, Glow, and BCS in GLES2clayjohn
2019-09-30FIX: Tabs text translationternvein
2019-09-30FIX: WindowDialog title translationternvein
2019-09-30Merge pull request #32390 from lupoDharkael/timer-treeRémi Verschelde
TextEdit: Fix timer inside tree warning
2019-09-29fix dynamic font crash if no available font sizeRodolfo Ribeiro Gomes
2019-09-28Make empty columns automatically expand in GridContainerMichael Alexsander Silva Dias
2019-09-27doc: Sync classref with current sourceRémi Verschelde
And various fixes to bindings, hyperlinks and an uninitialized variable.
2019-09-27Merge pull request #32379 from Calinou/colorpicker-add-overbright-indicatorRémi Verschelde
Draw an indicator to denote overbright colors in ColorPicker
2019-09-27Merge pull request #32380 from fire/skin_registrationRémi Verschelde
Update when the skeleton skin is changed.
2019-09-27Merge pull request #29681 from swarnimarun/vs-graph-unificationRémi Verschelde
Visual Script Graph Unification
2019-09-27Draw an indicator to denote overbright colors in ColorPickerHugo Locurcio
This makes it faster to distinguish overbright colors from "standard" colors.
2019-09-27TextEdit: Fix timer inside tree warninglupoDharkael
2019-09-27Merge pull request #32369 from ndarilek/get_button_tooltipRémi Verschelde
Implement `TreeItem.get_button_tooltip(column, idx)`.
2019-09-27Merge pull request #32354 from Relintai/rich-text-label-struct-refactorRémi Verschelde
Implement #32347 - (RichTextLabel's Item's should be structs)
2019-09-26Update when the skeleton skin is changed.K. S. Ernest Lee
2019-09-26#14011: Implement `TreeItem.get_button_tooltip(column, idx)`.Nolan Darilek
When added to `TreeItem`, buttons are given tooltips. When returned via `get_button(...)`, however, the button is a `Texture` and the tooltip information isn't included. For accessibility purposes, it is useful to have access to the tooltip text. As such, we can retrieve a button's tooltip to use as a button label.
2019-09-26Restore bone_custom_pose in skeletonsK. S. Ernest (iFIre) Lee
2019-09-26Merge pull request #32308 from Calinou/meshlibrary-item-preview-editor-onlyRémi Verschelde
Mention `MeshLibrary.get_item_preview()` not working in running project
2019-09-26Fix TileMap world_to_map rounding issue for negative integersbob
The previous code would fail for negative integer values like -3.0 (would return -4 instead of -3). Fixes #31468.
2019-09-26Implement #32347 - RichTextLabel's Item and Item* structs should not inherit ↵Relintai
Object, it's too expensive
2019-09-26Visualscript editor graph unification & refactoringSwarnim Arun
Removes the need to have separate graphs per function for the VisualScript Nodes, and refactoring UI and other improvements such as fuzzy search, right click search boxes and in-graph editable nodes
2019-09-25Mention `MeshLibrary.get_item_preview()` not working in running projectHugo Locurcio
2019-09-25Merge pull request #32047 from ↵Rémi Verschelde
codecustard/fix_scrollwheel_triggering_focus_change Fix scrollwheel triggering focus change
2019-09-25Merge pull request #32119 from Calinou/unify-axis-colorsRémi Verschelde
Use the same axis colors consistently in the 2D and 3D editors