-
Notifications
You must be signed in to change notification settings - Fork 24
/
gradientStep.js
41 lines (35 loc) · 1.43 KB
/
gradientStep.js
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
// This is the script equivalent of chaining multiple Step Gradient patches together.
// If you are looking a easy way to do this in patches, you can use Mate Steinforth's
// Easy Gradient Patch: https://gumroad.com/l/yYREv
// Import dependencies
const R = require('Reactive');
const S = require('Shaders');
// Helper function for creating gradients.
export function gradientStep(gradient, steps = []) {
if (steps.length < 2) {
throw 'You need at least 2 colors to make an gradient.';
}
let previousStep = steps[0][0];
for(let i = 1; i < steps.length; i++) {
previousStep = R.mix(previousStep, steps[i][0], R.smoothStep(gradient, steps[i-1][1], steps[i][1]));
}
return previousStep;
}
//
// Usage
//
// Create gradient type you want.
// HORIZONTAL: The gradient will be in horizontal direction.
// CIRCULAR: The gradient will radiate outward in a circular direction.
// VERTICAL: The gradient will be in vertical direction.
// https://sparkar.facebook.com/ar-studio/learn/documentation/reference/enums/shadersmodule.gradienttype
const gradientType = S.gradient({type: 'HORIZONTAL'});
const gradient = gradientStep(gradientType, [
// Array, first value is the color, second is the location of the color
// on the gradient (The same way as photoshop).
[R.pack4(1, 0, 0, 1), 0],
[R.pack4(0, 1, 0, 1), .5],
[R.pack4(0, 0, 1, 1), 1],
// Here you can add as many colors as you want
// Just remember to have the locations in right order.
]);