forked from Gonkee/Gonkees-Shaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fire.shader
100 lines (77 loc) · 2.53 KB
/
fire.shader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
shader_type canvas_item;
// Gonkee's fire shader for Godot 3 - full tutorial https://youtu.be/CI3JZ-3cabg
// If you use this shader, I would prefer it if you gave credit to me and my channel
uniform vec4 transparent : hint_color;
uniform vec4 inner : hint_color;
uniform vec4 outer : hint_color;
uniform float inner_threshold = 0.4;
uniform float outer_threshold = 0.15;
uniform float soft_edge = 0.04;
uniform vec2 center = vec2(0.5, 0.8);
uniform int OCTAVES = 6;
float rand(vec2 coord){
return fract(sin(dot(coord, vec2(12.9898, 78.233)))* 43758.5453123);
}
float noise(vec2 coord){
vec2 i = floor(coord);
vec2 f = fract(coord);
// 4 corners of a rectangle surrounding our point
float a = rand(i);
float b = rand(i + vec2(1.0, 0.0));
float c = rand(i + vec2(0.0, 1.0));
float d = rand(i + vec2(1.0, 1.0));
vec2 cubic = f * f * (3.0 - 2.0 * f);
return mix(a, b, cubic.x) + (c - a) * cubic.y * (1.0 - cubic.x) + (d - b) * cubic.x * cubic.y;
}
float fbm(vec2 coord){
float value = 0.0;
float scale = 0.5;
for(int i = 0; i < OCTAVES; i++){
value += noise(coord) * scale;
coord *= 2.0;
scale *= 0.5;
}
return value;
}
float overlay(float base, float top) {
if (base < 0.5) {
return 2.0 * base * top;
} else {
return 1.0 - 2.0 * (1.0 - base) * (1.0 - top);
}
}
float egg_shape(vec2 coord, float radius){
vec2 diff = abs(coord - center);
if (coord.y < center.y){
diff.y /= 2.0;
} else {
diff.y *= 2.0;
}
float dist = sqrt(diff.x * diff.x + diff.y * diff.y) / radius;
float value = sqrt(1.0 - dist * dist);
return clamp(value, 0.0, 1.0);
}
void fragment() {
vec2 coord = UV * 8.0;
vec2 fbmcoord = coord / 6.0;
float egg_s = egg_shape(UV, 0.4);
egg_s += egg_shape(UV, 0.2) / 2.0;
float noise1 = noise(coord + vec2(TIME * 0.25, TIME * 4.0));
float noise2 = noise(coord + vec2(TIME * 0.5, TIME * 7.0));
float combined_noise = (noise1 + noise2) / 2.0;
float fbm_noise = fbm(fbmcoord + vec2(0.0, TIME * 3.0));
fbm_noise = overlay(fbm_noise, UV.y);
float everything_combined = combined_noise * fbm_noise * egg_s;
if (everything_combined < outer_threshold){
COLOR = transparent;
} else if (everything_combined < outer_threshold + soft_edge){
COLOR = mix(transparent, outer, (everything_combined - outer_threshold) / soft_edge);
} else if (everything_combined < inner_threshold){
COLOR = outer;
} else if (everything_combined < inner_threshold + soft_edge){
COLOR = mix(outer, inner, (everything_combined - inner_threshold) / soft_edge);
} else {
COLOR = inner;
}
//COLOR = vec4(vec3(everything_combined), 1.0);
}