summaryrefslogtreecommitdiff
path: root/scene/resources
AgeCommit message (Collapse)Author
2019-03-03Skeletons can now choose between using local or world coords for processing, ↵Juan Linietsky
fixes #26468
2019-03-03Fix style issues from recent commitsRémi Verschelde
2019-03-02Fixed a case of broken loop due to wrapping on the edge, closes #25245Juan Linietsky
2019-03-01Remove old method that makes no sense today, fixes #25566Juan Linietsky
2019-03-01Merge pull request #26441 from QbieShay/fix_sigill_when_no_parent_escnRémi Verschelde
Engine does not crash anymore if a non root node in escn is missing a parent.
2019-03-01Editor does not crash anymore if a non root node in escn is missing a parentIlaria Cislaghi
2019-02-28added diffuse and specular as inputs to visual shaderclayjohn
2019-02-27Merge pull request #26257 from kaadmy/procedural_sky_sun_energyRémi Verschelde
Use sun energy for ProceduralSky generation
2019-02-27Merge pull request #26134 from marxin/fix-Wsign-compareRémi Verschelde
Fix -Wsign-compare warnings.
2019-02-27Fix GCC 5 build after #26331 and cleanup styleRémi Verschelde
Also cleanup after 01a3dd3.
2019-02-27Fix -Wsign-compare warnings.marxin
I decided to modify code in a defensive way. Ideally functions like size() or length() should return an unsigned type.
2019-02-27Don't crash on previewing an AtlasTexture without a regionHein-Pieter van Braam
2019-02-25Fix saturate ScalarFunc in Visual ShaderWindy Darian
Was getting this error when using a saturate node. This change fixes it. ``` :39 - Invalid arguments for built-in function: max(float,int) drivers\gles3\rasterizer_storage_gles3.cpp:2150 - Condition ' err != OK ' is true. ```
2019-02-25Several fixes to make GLES2 on HTML5 work much better.Juan Linietsky
Changed math class error reporting to be a bit less paranoid.
2019-02-25Update controls when a stylebox or icon override changes; change to ↵Bojidar Marinov
CONNECT_REFERENCE_COUNTED Also, cleanup unnessesary calls to update() and NOTIFICATION_THEME_CHANGED. Fixes #25904.
2019-02-24Many separate fixes to ensure non power of 2 textures work on GLES2, closes ↵Juan Linietsky
#25897 and many others
2019-02-24Use sun energy for ProceduralSky generationKaadmY
2019-02-24Explicitly use floating point numbers in the our shadersHein-Pieter van Braam
We need to be explicit about using floating point numbers in our shaders for compatibility with mobile GLES drivers.
2019-02-24Prevent circular references to scene being saved, fixes #24384Juan Linietsky
2019-02-23-Treat scalar conversions when calling functions as error, closes #24261Juan Linietsky
-Make shader editor display errors if exist when just opening it -Make ShaderMaterial not lose parameters if opened in error.
2019-02-22-Support DEPTH_TEXTURE in GLES2, fixes #25106Juan Linietsky
-Fix use of transparent framebuffers in GLES2 -Fix use of ambient color clearing in GLES2 when no environment exists.
2019-02-22Fix code style issuesRémi Verschelde
2019-02-21Implement a cleaner (and better) way to save imagedata from ImageTexture, ↵Juan Linietsky
fixes #18801
2019-02-20Add -Wshadow=local to warnings and fix reported issues.marxin
Fixes #25316.
2019-02-14Fix 2 more UBSAN issues (#25217).marxin
2019-02-14-Fixes to undo redo to avoid crash, closes #24251Juan Linietsky
-Changed Animation to have a special signal when tracks are changed, to avoid unnecesary track cache rebuilds in AnimationPlayer -Added missing emit_changed whe modifying keys to Animation -Changed AnimationPlayer to use the new refcounted connections instead of the previous hacky way to keep references -Changed AnimationEditor to update the current track when keys are edited -Fixed bug where undo/redo did not work with AnimationKeyEdit (was not being updated) -Made sure UndoRedo does not mind deleted objects in undo/redo history, this would corrupt the history or clear it without need.
2019-02-14Merge pull request #25717 from nekomatata/dynamic-font-settings-fixRémi Verschelde
Fixed undefined behavior when loading dynamic font settings
2019-02-13Fix typos with codespellRémi Verschelde
Using codespell 1.14.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang doubleclick lod nd numer que te unselect EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-02-12Fixed undefined setting values when loading dynamic fontsPouleyKetchoupp
2019-02-12Scene: Ensure classes match their header filenameRémi Verschelde
Also drop some unused files. Renamed: - `scene/2d/navigation2d.h` -> `navigation_2d.h` - `scene/2d/screen_button.h` -> `touch_screen_button.h` - `scene/3d/scenario_fx.h` -> `world_environment.h` - `scene/audio/audio_player.h` -> `audio_stream_player.h` - `scene/resources/bit_mask.h` -> `bit_map.h` - `scene/resources/color_ramp.h` -> `gradient.h` - `scene/resources/shape_line_2d.h` -> `line_shape_2d.h` - `scene/resources/scene_format_text.h` -> `resource_format_text.h` - `scene/resources/sky_box.h` -> `sky.h` Dropped: - `scene/resources/bounds.h`
2019-02-12Merge pull request #25481 from hpvb/fix-ubsan-asan-reportsRémi Verschelde
Fix many asan and ubsan reported issues
2019-02-12Merge pull request #25725 from clayjohn/multimesh_transform_2dRémi Verschelde
Added ability to set_instance_transform_2d in multimesh
2019-02-12Merge pull request #25754 from JFonS/fix_25567Rémi Verschelde
Fix canvas particle material for old GLSL versions
2019-02-11Fix canvas particle material for old GLSL versionsJFonS
2019-02-10Add disabled tab styleMichael Alexsander Silva Dias
2019-02-10TSCN: Remove extra newline after [resource]/[ext_resource]Rémi Verschelde
Some cases had been handled in #17602, but those two were missed. Fixes #24677.
2019-02-09Merge pull request #25653 from BastiaanOlij/fix_hide_skyrotationRémi Verschelde
Hide new sky properties if we don't have sky as a background
2019-02-08added ability to set instance_transform_2d in multimeshclayjohn
2019-02-08Merge pull request #25627 from clayjohn/visual_shader_texture_bugRémi Verschelde
Change hint_color to hint_albedo for sampler2ds
2019-02-08Merge pull request #25509 from bojidar-bg/25504-update-bitmask-crashRémi Verschelde
Fix crashes when calling update_bitmask_area
2019-02-06Hide new sky properties if we don't have sky as a backgroundBastiaan Olij
2019-02-04change hint_color to hint_albedo for sampler2dsclayjohn
2019-01-31Fix crashes when calling update_bitmask_areaBojidar Marinov
Fixes #25504
2019-01-30Add check in folding to see if the nodepath exists to avoid message spam.K. S. Ernest (iFire) Lee
2019-01-30Fix many asan and ubsan reported issuesHein-Pieter van Braam
This allows most demos to run without any ubsan or asan errors. There are still some things in thirdpart/ and some things in AudioServer that needs a look but this fixes a lot of issues. This should help debug less obvious issues, hopefully. This fixes #25217 and fixes #25218
2019-01-28Fix recursive assignment of Textures and BitMapFontRémi Verschelde
Fixes #24213.
2019-01-27Merge pull request #25366 from clayjohn/visual_shader_builtinsRémi Verschelde
Updated visual shader builtins
2019-01-27Document AnimatedTexture and bind MAX_FRAMES constantRémi Verschelde
Closes #24935.
2019-01-27updated visual shader builtinsclayjohn
2019-01-26doc: Sync classref with current sourceRémi Verschelde