Render fibers with a script?
Hello! Is there any method for rendering Fibers via script, like the applyClouds method? I've spent a few hours looking and experimenting, but I can't seem to find anything. Thank you! ![]()
Hello! Is there any method for rendering Fibers via script, like the applyClouds method? I've spent a few hours looking and experimenting, but I can't seem to find anything. Thank you! ![]()
You can use Action Manager code I.E.
#target photoshop;
fibers(15,4);
function fibers(Variance,Strength) {
var ad = new ActionDescriptor();
ad.putInteger( charIDToTypeID( "Vrnc" ), Variance );
ad.putInteger( charIDToTypeID( "Strg" ), Strength );
ad.putInteger( charIDToTypeID( "RndS" ), Math.random()*10000000 );
executeAction( charIDToTypeID( "Fbrs" ), ad, DialogModes.NO );
};
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.