a three-js templat, vanilla js
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
uniform vec3 u_color;
|
|
uniform float u_speed;
|
|
|
|
|
|
void main() {
|
|
gl_Position = vec4( position, 1.0 );
|
|
}
|