Created
July 31, 2018 16:01
-
-
Save HighTeaFrog/055d374025ade5a71a96c4d41c6b04b5 to your computer and use it in GitHub Desktop.
Random, Noise and Doodle Function in HLSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float random(float2 seed) | |
{ | |
return frac(sin(dot(seed.xy, float2(12.9898, 78.233))) * 43758.5453123); | |
} | |
float noise(float2 seed) | |
{ | |
float2 i = floor(seed); | |
float2 f = frac(seed); | |
float a = random(i); | |
float b = random(i + float2(1.0f, 0.0f)); | |
float c = random(i + float2(0.0f, 1.0f)); | |
float d = random(i + float2(1.0f, 1.0f)); | |
float2 u = f* f * (3.0f - 2.0f * f); | |
return lerp(a, b, u.x) + (c - a) * u.y * (1.0f - u.x) + (d - b) * u.x * u.y; | |
} | |
float2 DoodleTextureOffset(float2 textureCoords, float2 maxOffset, float time, float frameTime, int frameCount, float2 noiseScale) | |
{ | |
float timeValue = (floor(time / frameTime) % frameCount) + 1; | |
float2 offset = 0; | |
offset.x = (noise((textureCoords + timeValue) * noiseScale.x) * 2.0 - 1.0) * maxOffset.x; | |
offset.y = (noise((textureCoords + timeValue) * noiseScale.y) * 2.0 - 1.0) * maxOffset.y; | |
return offset; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment