FIFTY⁵⁰  Profile picture
Oct 11, 2022 7 tweets 4 min read Read on X
#Houdini Quick breakdown of just a simplified faked dynamic web part.

Thread... Image
So this is an overview of the visual controls and basic code to control the web. Complete control over the shape and also the decay over time. Let's look at each section of code... Image
// @u 0.0 ---- 0.5 ---1.0
f@ramp = chramp("shape",@u);

Here we are creating a u attribute typically @curveu but all it does is create a value starting at 0 peaks to 1 in the middle then goes back to 0 at the end. This is how we control the bend later...
/ A remapped time value counting down from 1.0
f@decay = fit(@TIME,1,5,1,0);

Here we are creating a decay attribute that controls that wobble falloff over time
// Ramp the decay for falloff curve at the end
@Decay = chramp("Fade_Off",@Decay);

Once we have that falloff we can visually control it with a ramp curve, so getting remapped again here.
//move points speed shape decay
@p.y = @p.y + sin(@TIME*10)*@ramp*@decay;

This is the math bit where we are using everything we created above. P.y is just the y movement of the points. Sin(with time) drives this. *10 speeds it up we couple add extra controls for this
Because everything is normalized, meaning mapped from 0-1 then everything else like shape and falloff can be * by this to then control those things that shape it over time.

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with FIFTY⁵⁰ 

FIFTY⁵⁰  Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @Fifty_5o

Oct 2, 2022
#Thinkbox #Deadline Render Manager in a Nutshell thread...

1. Let's first look at the easy way of setting things up.

Download deadline awsthinkbox.com/deadline

Sign in with your Amazon details and get the installer.

Basic setup -
2. If you want to use multiple machines then things can get a bit more tricky, you need to think about and understand how things are setup

So this is how I did it(can be done in different ways) but I like to keep things as simple as possible.
3. First of all I use a separate drive called Z: this will be shared by all computers on the network. I share all LAN permissions and preferences across my local network.
Read 15 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(