first
This commit is contained in:
commit
b97b3a9ae4
79 changed files with 1729 additions and 0 deletions
14
exo2/shaders/3_simple_vertex_shader.gdshader
Normal file
14
exo2/shaders/3_simple_vertex_shader.gdshader
Normal file
|
@ -0,0 +1,14 @@
|
|||
shader_type canvas_item;
|
||||
|
||||
void vertex() {
|
||||
VERTEX.y = sin(TIME);
|
||||
}
|
||||
|
||||
void fragment() {
|
||||
// Called for every pixel the material is visible on.
|
||||
}
|
||||
|
||||
//void light() {
|
||||
// // Called for every pixel for every light affecting the CanvasItem.
|
||||
// // Uncomment to replace the default light processing function with this one.
|
||||
//}
|
Loading…
Add table
Add a link
Reference in a new issue