Skip to content

Instantly share code, notes, and snippets.

View Duotun's full-sized avatar
🧶
Focusing

Duotun Wang Duotun

🧶
Focusing
View GitHub Profile
@Duotun
Duotun / WebGL-WebGPU-frameworks-libraries.md
Created January 28, 2024 08:31 — forked from dmnsgn/WebGL-WebGPU-frameworks-libraries.md
A collection of WebGL and WebGPU frameworks and libraries

A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.

Engines and libraries ⚙️

Name Stars Last Commit Description
three.js ![GitHub
@Duotun
Duotun / URP_Normal.shader
Created January 25, 2022 10:50 — forked from shivaduke28/URP_Normal.shader
simple URP Lit shaders for learning
Shader "MyShader/URP_Normal"
{
Properties
{
[Header(Base Color)]
[MainTexture]_BaseMap("_BaseMap (Albedo)", 2D) = "white" {}
[HDR][MainColor]_BaseColor("_BaseColor", Color) = (1,1,1,1)
[Header(Normal)]
[MainTexture]_NormalMap("_NormalMap", 2D) = "white" {}
}
@Duotun
Duotun / UnlitTexture.shader
Created January 24, 2022 12:56 — forked from phi-lira/UnlitTexture.shader
URP Unlit Texture example
Shader "Custom/UnlitTexture"
{
Properties
{
[MainColor] _BaseColor("BaseColor", Color) = (1,1,1,1)
[MainTexture] _BaseMap("BaseMap", 2D) = "white" {}
}
// Universal Render Pipeline subshader. If URP is installed this will be used.
SubShader