├── .dockerignore ├── .eslintrc ├── .github └── workflows │ └── render-video.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── Dockerfile ├── README.md ├── out.mp4 ├── package.json ├── public ├── 1.jpg ├── 2.jpg ├── butterflywavecrawler.glsl ├── cannabisleaf.glsl ├── cube.glsl ├── polkadot.glsl └── zoomblur.glsl ├── remotion.config.ts ├── src ├── GLTransitions.tsx ├── Root.tsx ├── cube-transition.tsx ├── gl-transition.tsx ├── index.tsx └── init.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@remotion" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/render-video.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/.github/workflows/render-video.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | .env 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/README.md -------------------------------------------------------------------------------- /out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/out.mp4 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/package.json -------------------------------------------------------------------------------- /public/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/public/1.jpg -------------------------------------------------------------------------------- /public/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/public/2.jpg -------------------------------------------------------------------------------- /public/butterflywavecrawler.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/public/butterflywavecrawler.glsl -------------------------------------------------------------------------------- /public/cannabisleaf.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/public/cannabisleaf.glsl -------------------------------------------------------------------------------- /public/cube.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/public/cube.glsl -------------------------------------------------------------------------------- /public/polkadot.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/public/polkadot.glsl -------------------------------------------------------------------------------- /public/zoomblur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/public/zoomblur.glsl -------------------------------------------------------------------------------- /remotion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/remotion.config.ts -------------------------------------------------------------------------------- /src/GLTransitions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/src/GLTransitions.tsx -------------------------------------------------------------------------------- /src/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/src/Root.tsx -------------------------------------------------------------------------------- /src/cube-transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/src/cube-transition.tsx -------------------------------------------------------------------------------- /src/gl-transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/src/gl-transition.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/src/init.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remotion-dev/gl-transitions/HEAD/tsconfig.json --------------------------------------------------------------------------------