summaryrefslogtreecommitdiff
path: root/scene/resources
AgeCommit message (Collapse)Author
2019-12-13Merge pull request #34189 from aaronfranke/mesh-aabbRémi Verschelde
Expose Mesh get_aabb
2019-12-12Added missed enum constant VisualShaderNodeTexture::SOURCE_PORTYuri Roubinsky
2019-12-11Expose Mesh get_aabbAaron Franke
2019-12-11Merge pull request #34259 from timothyqiu/validate-texture-32982Rémi Verschelde
Fixes crash after set_piece_texture with invalid texture
2019-12-11Merge pull request #34241 from timothyqiu/sync-fallbacks-size-32701Rémi Verschelde
Fixes crash when using DynamicFont::set_font_data
2019-12-11Merge pull request #34240 from timothyqiu/invalid-shader-io-29985Rémi Verschelde
Fixes crash when shader inputs/outputs is invalid string
2019-12-11Validates texture in set_piece_textureHaoyu Qiu
2019-12-10Fixes crash when using DynamicFont::set_font_dataHaoyu Qiu
2019-12-10Fixes crash when shader inputs/outputs is invalid stringHaoyu Qiu
2019-12-10Fixes crash when using Theme::clearHaoyu Qiu
2019-12-10Merge pull request #34040 from qarmin/unused_variable_more_precise_numbersRémi Verschelde
Removed unused variables, add some constants numbers
2019-12-10Removed unused variables, add some constants numbersRafał Mikrut
2019-12-05Don't store index of root nodesTomasz Chabora
2019-11-26Only display Environment sky rotation in degrees in the InspectorHugo Locurcio
This makes it consistent with Spatial.
2019-11-25Fix bug where specularmode disabled is not cachedclayjohn
2019-11-24StyleBox preview adjusted to fit all drawn contentPouleyKetchoupp
This change allows StyleBox preview to take shadows and content margins into account to display how a whole panel would be rendered. The preview control clips contents so that in any case it doesn't bleed on controls around. Fixes #33801
2019-11-20Fix some overflows and unitialized variablesRafał Mikrut
2019-11-17Merge pull request #33683 from clayjohn/material-texture-bugRémi Verschelde
Properly update texture when roughness/metallic set
2019-11-17Properly update texture when roughness/metallic setclayjohn
2019-11-17StyleBoxFlat doesn't draw content when width or height is zeroPouleyKetchoupp
Causes unnecessary computations and drawing, and a division by zero when calculating uv coordinates. This case happened with ScriptEditor's member overview (ItemList), initialized with a minimum width of 0. Fixes #33634
2019-11-10Merge pull request #33516 from qarmin/small_fixesRémi Verschelde
Memory leaks and crash fixes
2019-11-10Merge pull request #33452 from Chaosus/fix_tilemapRémi Verschelde
Fix incorrect offset for old-format tilemaps
2019-11-10Memory leak and crash fixesRafał Mikrut
2019-11-09Merge pull request #33465 from rxlecky/list-theme-resources-fixRémi Verschelde
Fix functions listing all theme resources
2019-11-09Fix functions listing all theme resourcesrxlecky
Fix functions get_<resource>_list in Theme currently returning vector of double-the-necessary size with the first half completely empty.
2019-11-09Merge pull request #33431 from Kaonnull/bugParticles2D_2Rémi Verschelde
Fixed the particles2D prematurely animation ending
2019-11-08Fixed prematurely ending animation of particles.Simon Hardt
2019-11-08Fix incorrect offset for old-format tilemapsYuri Roubinsky
2019-11-07Merge pull request #32477 from aaronfranke/equal-approx-separateRémi Verschelde
Make is_equal_approx separate and make == exact again
2019-11-04Fix invalid casting on visual shader samplerYuri Roubinsky
2019-11-03Added sampler inputs for visual shadersYuri Roubinsky
2019-11-03Merge pull request #33277 from clayjohn/update_materialRémi Verschelde
Force update SpatialMaterial when texture set and always use ALBEDO
2019-11-02Force update SpatialMaterial when texture set and always use ALBEDOclayjohn
2019-11-01Fix some crashes, overflows and using variables without valuesRafał Mikrut
2019-10-29Removes translations from generated visual shader codeYuri Roubinsky
2019-10-28Merge pull request #33120 from YeldhamDev/popup_dialog_panel_styleRémi Verschelde
Add "panel" style to PopupDialog
2019-10-28Merge pull request #33104 from qarmin/fix_some_crashesRémi Verschelde
Fix some crashes and using null pointers
2019-10-28Fix some crashes and using null pointersRafał Mikrut
2019-10-27Fixed using compressed textures and add work around for firefox webgl mesa ↵clayjohn
sampler limit
2019-10-27Add "panel" style to PopupDialogMichael Alexsander
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-14Replace vector == and is_zero_approx(distance) with is_equal_approxAaron Franke
Internal changes only
2019-10-14Small fixes to redundand code, copy paste bugsqarmin
2019-10-12Optimize images losslessly using `oxipng -o6 --strip all --zopfli`Hugo Locurcio