Skip to content

Instantly share code, notes, and snippets.

View baznzab's full-sized avatar

Foo Bar baznzab

View GitHub Profile
@javiersalcedopuyo
javiersalcedopuyo / unityRayMarching.md
Last active October 30, 2025 16:27
Ray Marching in Unity

Ray Marching in Unity

Javier Salcedo,
Telecom and Graphics Engineer,
Technical artist & producer at Virtual Phenix Games



@phi-lira
phi-lira / UniversalPipelineTemplateShader.shader
Last active October 21, 2025 16:44
Template shader to use as guide to create Universal Pipeline ready shaders. This shader works with Universal Render Pipeline 7.1.x and above.
// When creating shaders for Universal Render Pipeline you can you the ShaderGraph which is super AWESOME!
// However, if you want to author shaders in shading language you can use this teamplate as a base.
// Please note, this shader does not necessarily match perfomance of the built-in URP Lit shader.
// This shader works with URP 7.1.x and above
Shader "Universal Render Pipeline/Custom/Physically Based Example"
{
Properties
{
// Specular vs Metallic workflow
[HideInInspector] _WorkflowMode("WorkflowMode", Float) = 1.0
@patriciogonzalezvivo
patriciogonzalezvivo / GLSL-Noise.md
Last active November 1, 2025 13:44
GLSL Noise Algorithms

Please consider using http://lygia.xyz instead of copy/pasting this functions. It expand suport for voronoi, voronoise, fbm, noise, worley, noise, derivatives and much more, through simple file dependencies. Take a look to https://github.com/patriciogonzalezvivo/lygia/tree/main/generative

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);