I have a question, why did you need to calculate the "new normal" at 19'45''? Why not using @N directly? What would change?
@JohnDowson1004 жыл бұрын
Hi @Entagma great tutorial! Can I ask, how can I interpolate between the normal vector and the gradient, let say if I want to copy the feathers so that they are not completely tangent to the surface? :)
@Entagma4 жыл бұрын
Heya, for example in VEX, using LERP: float bias = chf("Blend_Amnount"); v@out = lerp(v@N, v@gradient, bias); Cheers, Mo