Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-04 | Fix invalid casting on visual shader sampler | Yuri Roubinsky | |
2019-11-03 | Added sampler inputs for visual shaders | Yuri Roubinsky | |
2019-10-29 | Removes translations from generated visual shader code | Yuri Roubinsky | |
2019-10-11 | [VShaders] Added sampler port to CubeMap, fixed parsing in expresssion s | Yuri Roubinsky | |
2019-10-10 | Removed "rebuild" function from public interface of VisualShader | Yuri Roubinsky | |
2019-10-09 | Makes cube maps to be works in visual shaders | Yuri Roubinsky | |
2019-10-03 | Makes Texture and TextureUniform in visual shaders to use UV by default | Yuri Roubinsky | |
2019-10-02 | Fix global code in visual shaders if two or more custom nodes are used | Yuri Roubinsky | |
2019-10-01 | Added sampler port type for visual shaders | Chaosus | |
2019-09-24 | doc: Sync classref with current source | Rémi Verschelde | |
Fix a few missing bindings or unspecified argument names and default values. | |||
2019-09-05 | Fix formatting error for bool in resulted code of visual shader | Chaosus89 | |
2019-09-04 | Added missing OUTPUT_IS_SRGB and FRONT_FACING to visual shaders | Chaosus89 | |
2019-09-04 | Fix parsing array indexing symbol in visual shader expression | Chaosus89 | |
2019-09-01 | Fix semicolon parsing in visual shader expression | Chaosus89 | |
2019-09-01 | Fix visual shader expression parsing | Chaosus89 | |
2019-08-22 | Added "editable" property to VisualShaderGroupNode | Yuri Roubinski | |
2019-08-20 | Fix preview for global expressions in visual shaders | Yuri Roubinski | |
2019-08-18 | Merge pull request #31453 from Chaosus/vs_code_preview | Rémi Verschelde | |
Added code preview to visual shader | |||
2019-08-18 | Added code preview to visual shader | Yuri Roubinski | |
2019-08-18 | Added global expressions to visual shaders | Yuri Roubinski | |
2019-08-14 | Plugin support for visual shaders | Yuri Roubinski | |
2019-08-09 | Remove ERR_EXPLAIN from scene/* code | Tomasz Chabora | |
2019-08-07 | Allow comma prefix to visual shader's expression parser | Yuri Roubinski | |
2019-07-12 | Added triplanar uniform texture node to visual shaders | Chaosus | |
2019-06-27 | Shows menu when dragging connection on empty space in visual shader graph | Chaosus | |
2019-06-22 | Fix expression node crashes | Chaosus | |
2019-06-11 | Fix error macro calls not ending with semicolon | Rémi Verschelde | |
It's not necessary, but the vast majority of calls of error macros do have an ending semicolon, so it's best to be consistent. Most WARN_DEPRECATED calls did *not* have a semicolon, but there's no reason for them to be treated differently. | |||
2019-05-27 | Fix GetTypeInfo error due to missing include | Ignacio Etcheverry | |
2019-05-21 | Fix expression node parsing when input_port + \0 is occured | Chaosus | |
2019-05-21 | Fix few bugs in expression node | Chaosus | |
2019-05-21 | Expression node for visual shaders | Chaosus | |
2019-04-24 | Disallow loopback connection in visual scripts and visual shaders | Chaosus | |
2019-04-13 | Added conditional nodes to visual shaders | Chaosus | |
2019-04-09 | Style: Apply new changes from clang-format 8.0 | Rémi Verschelde | |
It seems to stay compatible with formatting done by clang-format 6.0 and 7.0, so contributors can keep using those versions for now (they will not undo those changes). | |||
2019-04-07 | Major improvements for visual shader system | Chaosus | |
2019-02-28 | added diffuse and specular as inputs to visual shader | clayjohn | |
2019-02-13 | Fix typos with codespell | Ré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-01-27 | updated visual shader builtins | clayjohn | |
2019-01-21 | Modified code generation to be more friendly to previews, fixes #25094 | Juan Linietsky | |
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-11-08 | -Moved EditorDefaultValue to ClassDB, made it core | Juan Linietsky | |
-Removed one and zero hints for properties, replaced by default value | |||
2018-09-27 | Fix various warnings: [-Waddress], [-Wpointer-arith], [-Wwrite-strings], ↵ | Rémi Verschelde | |
[-Wreturn-local-addr] and more Fixes the following GCC 5 warnings: ``` core/os/file_access.cpp:49:19: warning: the address of 'FileAccess::create_func' will always evaluate as 'true' [-Waddress] servers/audio_server.cpp:192:70: warning: comparison with string literal results in unspecified behaviour [-Waddress] drivers/gles2/rasterizer_storage_gles2.cpp:4095:90: warning: NULL used in arithmetic [-Wpointer-arith] modules/gdnative/register_types.cpp:237:3: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings] platform/android/export/export.cpp:207:1: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings] modules/gdscript/gdscript.h:150:67: warning: returning reference to temporary [-Wreturn-local-addr] servers/physics_2d/collision_object_2d_sw.h:119:56: warning: returning reference to temporary [-Wreturn-local-addr] servers/physics_2d/collision_object_2d_sw.h:123:56: warning: returning reference to temporary [-Wreturn-local-addr] servers/physics_2d/collision_object_2d_sw.h:127:50: warning: returning reference to temporary [-Wreturn-local-addr] servers/physics_2d/collision_object_2d_sw.h:131:52: warning: returning reference to temporary [-Wreturn-local-addr] editor/plugins/skeleton_editor_plugin.cpp:34:36: warning: extra tokens at end of #include directive modules/bullet/bullet_types_converter.cpp:31:9: warning: #pragma once in main file editor/import/editor_scene_importer_gltf.cpp:1996:51: warning: name lookup of 'i' changed modules/visual_script/visual_script_property_selector.cpp:402:45: warning: name lookup of 'E' changed scene/gui/tree.cpp:1268:25: warning: name lookup of 'i' changed scene/resources/visual_shader.cpp:808:32: warning: name lookup of 'i' changed ``` | |||
2018-09-14 | Don't open VisualShaders in the text shader editor, and don't support saving ↵ | elasota | |
them with the "shader" extension. | |||
2018-09-12 | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | |
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes. | |||
2018-08-29 | Add missing copyright headers | Rémi Verschelde | |
2018-08-24 | Make some debug prints verbose-only, remove others | Rémi Verschelde | |
2018-07-26 | doc: Sync classref with current source | Rémi Verschelde | |
Fix various missing arguments in bindings. | |||
2018-07-14 | Visual Shaders are back. | Juan Linietsky | |