Skip to content

Instantly share code, notes, and snippets.

View ma77os's full-sized avatar

André Mattos ma77os

View GitHub Profile
@ma77os
ma77os / SimplexNoise3D.hlsl
Created October 26, 2020 16:58
Simplex noise custom node for Shader Graph (Updated)
//
// Simplex noise custom node for Shader Graph
//
// Original work (webgl-noise) Copyright (C) 2011 Ashima Arts.
// Translation and modification was made by Keijiro Takahashi.
// Ported to Shader Graph by Sergio L. Valladares and updated by André Mattos
//
// This shader is based on the webgl-noise GLSL shader. For further details
// of the original shader, please see the following description from the
// original source code.
@ma77os
ma77os / Particles_compute.glsl
Last active May 25, 2018 21:43
Particles_compute
/*
Particle system using a compute shader
Author: Tim Gerritsen <tim@mannetje.org> - Go Robot
Date: December 2017
Updated: Februari 2018, added comments
I tried to add as much comments as possible. Hope everything is clear.
If not, try to contact me through touchdesigner slack #glsl, or email.
*/