Rename shaders

This commit is contained in:
Tristan Daniël Maat 2022-08-12 22:26:01 +01:00
parent a1cf0d753b
commit 7f6cede914
Signed by: tlater
GPG key ID: 49670FD774E43268
5 changed files with 2 additions and 2 deletions

View file

@ -2,8 +2,8 @@ import { Shader } from "./Shader";
import { mat4 } from "gl-matrix";
import { Cube } from "./cube";
import vertexSource from "./vertices.glsl";
import fragmentSource from "./fragments.glsl";
import vertexSource from "./shaders/vertices.glsl";
import fragmentSource from "./shaders/fragments.glsl";
const ROTATION_SPEED = 0.0005;