This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| animations { | |
| window-open { | |
| duration-ms 500 | |
| curve "linear" | |
| custom-shader r" | |
| vec4 open_color(vec3 coords_geo, vec3 size_geo) { | |
| if (coords_geo.x < 0.0 || coords_geo.x > 1.0 || | |
| coords_geo.y < 0.0 || coords_geo.y > 1.0) | |
| return vec4(0.0); |