Export tests

This commit is contained in:
Willow Behar
2024-05-13 18:17:20 -05:00
parent 724c66ba9d
commit 18ba83c0da
20 changed files with 15248 additions and 10 deletions

View File

@ -0,0 +1,14 @@
shader_type canvas_item;
void vertex() {
// Called for every vertex the material is visible on.
}
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.
//}