summaryrefslogtreecommitdiffstats
path: root/scene/resources/visual_shader_nodes.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-0/+2
|\
| * VisualShader: Add LinearToSRGB and SRGBToLinear to ColorFunc nodetetrapod002024-10-191-0/+2
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Visual Shader: Add vector operations to Remap nodetetrapod002024-09-221-1/+34
|
* Allow setting a cubemap as default parameter to shaderChaosus2024-08-271-6/+19
|
* Add `hint_enum` for uniform int in gdshaderRobert Borghese2024-07-131-0/+5
|
* Merge pull request #83729 from Chaosus/vs_fix_texture_paramRémi Verschelde2024-06-121-0/+1
|\ | | | | | | Add extra warning messages to `VisualShaderNodeTextureParameter`
| * Add extra warning messages to `VisualShaderNodeTextureParameter`Yuri Rubinsky2023-10-211-0/+1
| |
* | [VisualShader] Add reroute node and improve port drawingHendrik Brucker2024-05-131-0/+31
| |
* | Fix some missing categories in visual shader nodesA Thousand Ships2024-03-051-2/+22
| |
* | Redesign the graph editor for visual shadersHendrik Brucker2024-02-221-0/+101
|/
* made visual shader ports expandable by default if there is only one output ↵DennisManaa2023-09-221-6/+0
| | | | | | port and it's of any vector type Co-authored-by: QbieShay <cislaghi.ilaria@gmail.com>
* Additional Visual Shader NodesPatrick2023-07-261-0/+64
| | | | | | | * RotationByAxis Visual Shader Node added * WorldPositionFromDepth Visual Shader Node added * ScreenNormalWorldSpace Visual Shader Node added
* Make the dragging connections more user-friendly in visual shadersYuri Roubinski2023-07-201-0/+2
|
* Extract and reorganize texture resource classesHendrik Brucker2023-07-141-0/+4
|
* Add derivative functions with precision to shadersYuri Rubinsky2023-01-261-0/+13
|
* Fix code generation for ProximityRange node in visual shaderYuri Rubinsky2023-01-201-0/+1
|
* Remove SCREEN_TEXTURE, DEPTH_TEXTURE, and NORMAL_ROUGHNESS_TEXTUREclayjohn2023-01-181-0/+16
| | | | in favour of texture hints
* Add `uint` type support to visual shadersYuri Rubinsky2023-01-061-0/+166
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Fix code generation for `VisualShaderNodeTextureParameterTriplanar`Yuri Rubinsky2022-09-071-0/+1
|
* Disable Output port preview of Linear Depth Visual Shader nodePatrick2022-09-031-0/+3
| | | This disables the output port preview of the node because it's enabled preview caused a shader compilation error
* Rename `uniform` to `parameter` across the engineYuri Rubinsky2022-09-011-56/+63
|
* Implement custom non-trivial shader functionsPatrick Exner2022-08-271-0/+126
|
* Merge pull request #62454 from Geometror/reflect-refract-vec2-vec4Rémi Verschelde2022-08-071-4/+3
|\ | | | | Allow for vec2/vec4 to be used in reflect and refract
| * Allow vec2 and vec4 for reflect and refractHendrik Brucker2022-08-071-4/+3
| |
* | Add `hint_transparent` to use a transparent black placeholder textureHugo Locurcio2022-08-011-0/+1
|/ | | | | This can be used in shaders to avoid the need to supply a transparent placeholder texture manually.
* Fix typo "Frac" instead of "Fract"Aaron Record2022-06-051-2/+2
|
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Merge pull request #60845 from Chaosus/vs_color_funcYuri Rubinsky2022-05-091-3/+2
|\
| * Push `HSV2RGB/RGB2HSV` to `ColorFunc` (from `VecFunc`) in visual shadersYuri Roubinsky2022-05-071-3/+2
| |
* | Change output port of `VisualShaderNodeColorUniform` to vec4Yuri Roubinsky2022-05-071-0/+2
|/
* Continue to improve vector4 type in visual shadersYuri Roubinsky2022-04-221-26/+4
|
* Add Vector4 to VisualShaderHendrik Brucker2022-04-121-0/+85
|
* Add some more fixes to visual shaderYuri Roubinsky2022-02-071-1/+1
|
* Add support for 2D vector type to visual shadersYuri Roubinsky2022-02-021-35/+165
|
* [VisualShader] Merge scalar and vector derivative functions into oneYuri Roubinsky2022-01-281-44/+15
|
* Fix default input port hints for some modes in visual shaderYuri Roubinsky2022-01-221-10/+10
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add texture filtering properties to `VisualShaderNodeTextureUniform`Yuri Roubinsky2021-12-161-0/+30
|
* Rename `hint_aniso` to `hint_anisotropy` in the shader languageHugo Locurcio2021-12-101-1/+1
| | | | | The word "anisotropy" is used in full form in BaseMaterial3D's anisotropy-related properties.
* Add bitwise operators to `VisualShaderNodeIntOp`Yuri Roubinsky2021-12-031-0/+6
|
* Added missed limiters for Visual Shader node enumsYuri Roubinsky2021-08-151-36/+61
|
* Changed `TransformMult` node to `TransformOp` in visual shadersYuri Roubinsky2021-08-111-8/+14
|
* Rename Curve3Texture to CurveXYZTextureRémi Verschelde2021-07-141-6/+6
| | | | | | Neither name is a perfect match but `Curve3Texture` looked too similar to `CurveTexture` and `Curve3D`, which made things confusing when picking a texture type or browsing the API reference.
* Added Curve3Texture to Visual ShadersYuri Roubinsky2021-07-041-0/+33
|
* Adds `UVFunc` for panning/scaling on UV's to VisualShader's.Yuri Roubinsky2021-06-071-0/+45
|
* Rename Transform to Transform3D in coreAaron Franke2021-06-031-6/+6
|
* Added Billboard Node to Visual ShadersYuri Roubinsky2021-05-281-0/+47
|