summaryrefslogtreecommitdiff
path: root/scene/resources
AgeCommit message (Collapse)Author
2019-10-25Fix the default TextEdit background colorHugo Locurcio
This closes #32724.
2019-10-24Refactor VideoPlayer and VideoStreamSeleckyErik
VideoStream: - Fix const correctenss VideoPlayer: - Remove unused member variable last_frame - Move _mix_audios function definition to source file - Fix function parameter naming to match p_ convention - Fix const correctness - Add null checking
2019-10-23Merge pull request #33006 from Chaosus/fix_billboard_bugRémi Verschelde
Allows change Sprite3D scale if Billboard mode is enabled
2019-10-23Allows change Sprite3D scale if Billboard mode is enabledYuri Roubinsky
2019-10-23Theme code refactoringSeleckyErik
- Move GDScript-exposed function definitions from header to source file - Add null check to functions taking list pointers as parameters - Call clear() in copy_theme() if null is passed
2019-10-22Merge pull request #32842 from LikeLakers2/animation-idx-to-track-idxRémi Verschelde
Changes the name of all parameters referring to track indices within Animation, to `track_idx`
2019-10-14Changes the name of all parameters referring to track indices within ↵LikeLakers2
Animation, to "track_idx"
2019-10-14Small fixes to redundand code, copy paste bugsqarmin
2019-10-12Optimize images losslessly using `oxipng -o6 --strip all --zopfli`Hugo Locurcio
2019-10-11Merge pull request #32731 from codecustard/fix_concaveshape_not_selectingRémi Verschelde
Fixes concaveshape not selecting in viewport
2019-10-11Fixes concaveshape not selecting in viewportEmmanuel Barroga
This PR resolves the issue of ConcaveShapes not being selectable in the Viewport.
2019-10-11[VShaders] Added sampler port to CubeMap, fixed parsing in expresssion sYuri Roubinsky
2019-10-10Merge pull request #32707 from Chaosus/vs_lod_texturesRémi Verschelde
Uses LoD even if UV slot is not used in visual shader textures
2019-10-10Merge pull request #32705 from qarmin/validate_array_index_styleboxRémi Verschelde
Validate array indexes in StyleBox
2019-10-10Uses LoD even if UV slot is not used in visual shader texturesYuri Roubinsky
2019-10-10Validate array indexes in StyleBoxqarmin
2019-10-10Removed "rebuild" function from public interface of VisualShaderYuri Roubinsky
2019-10-09Makes cube maps to be works in visual shadersYuri Roubinsky
2019-10-08Merge pull request #32618 from nekomatata/sprite-to-polygonRémi Verschelde
Sprite to polygon conversion improvements
2019-10-08Merge pull request #32606 from cbolgiano/bugfix/32294Rémi Verschelde
Fixes Default Angular Damp in Project Settings Disallows Fractional Input #32294
2019-10-0732294: Changed the default_angular_damp value to a float.devbox
32294: Added hints for both 2d/3d linear/angular. 32294: Added hints for both 2d/3d linear/angular.
2019-10-07Sprite to polygon conversion improvementsPouleyKetchoupp
- No reduced Rect in march square algorithm, it was causing inconsistent cases near the borders and made the outline less accurate - Ignore invalid generated polygons (under 3 points) to avoid unnecessary errors and crashes - Error popup only when no polygon could be generated at all - Added option to shrink pixels (to get rid of small separate islands) - Fixed polygon preview (lines were sometimes not showing along the borders) Fixes #32564, #29267
2019-10-07Merge pull request #32351 from nekomatata/texture-rect-size-updateRémi Verschelde
Update TextureRect when its Texture is modified directly
2019-10-05Update TextureRect and Sprite when their Texture is modified directly.PouleyKetchoupp
Modified Sprite to use "changed" signal instead of _changed_callback to make it work when tool is disabled (change receptors are editor only). Fixes #32349
2019-10-03Makes Texture and TextureUniform in visual shaders to use UV by defaultYuri Roubinsky
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-02Fix global code in visual shaders if two or more custom nodes are usedYuri Roubinsky
2019-10-01updated defaults and documentation for GLES2 glowclayjohn
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 #31845 from clayjohn/GLES2-BCSRémi Verschelde
Implement DOF blur, Glow, and BCS in GLES2
2019-09-30Implement DOF blur, Glow, and BCS in GLES2clayjohn
2019-09-29fix dynamic font crash if no available font sizeRodolfo Ribeiro Gomes
2019-09-27doc: Sync classref with current sourceRémi Verschelde
And various fixes to bindings, hyperlinks and an uninitialized variable.
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-25Mention `MeshLibrary.get_item_preview()` not working in running projectHugo Locurcio
2019-09-25Merge pull request #32051 from qarmin/some_error_explanationRémi Verschelde
Added some obvious errors explanations
2019-09-25Added some obvious errors explanationsqarmin
2019-09-24Merge pull request #32309 from clayjohn/particles_tex_scaleRémi Verschelde
Fix particles scale randomization
2019-09-24fix particles scale randomizationclayjohn
2019-09-24Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docsRémi Verschelde
Add overriden properties to the documentation
2019-09-24Fix copyright headers and style issuesRémi Verschelde
2019-09-24doc: Sync classref with current sourceRémi Verschelde
Fix a few missing bindings or unspecified argument names and default values.
2019-09-23Merge pull request #32275 from godotengine/skin_supportRémi Verschelde
Added skin support and simplified APIs to override bone position + glTF 2.0 import fixes
2019-09-23Merge pull request #32027 from lupoDharkael/group-orderRémi Verschelde
Preserve group order in scene files
2019-09-20Remove an unused icon and constant in TreeHugo Locurcio
2019-09-19Merge pull request #31904 from byfron/styleboxflag_uvcoordsRémi Verschelde
Computes UV coordinates of the canvas_item vertices of StyleBoxFlat
2019-09-18Added skin support and simplified APIs to override bone position.Juan Linietsky
2019-09-18Some formatting fixes in visual_shader_nodes.cppYuri Rou
2019-09-07Preserve group order in scene fileslupoDharkael