Loading video...

Video Failed to Load

Go Home

A few more tests, this time from the back yard combining some basic Nuke masking with mask sampling and inpt. The idea is to provide a basic growth mask as a guide, then the mask sampler expands the mask to the size of the projected latent output giving a...

62,915 views • 11 months ago •via X (Twitter)

10 Comments

Aaron Sorensen's profile picture
Aaron Sorensen11 months ago

This would be soo awesome to have as a Ai Gizmo in Nuke. Mask and area> Build some type of timing /animation guides for AI> generate effect> tweak generated fx. So Cool!

meh's profile picture
meh11 months ago

can you give some more details on the process for this?

Matt Collie's profile picture
Matt Collie11 months ago

do you have a nuke script you can post that demonstrates the workflow?

🦋's profile picture
🦋11 months ago

love this gng what is it tho

༄Brandon Rosado🕴's profile picture
༄Brandon Rosado🕴11 months ago

Next Level!!

Derek Rein's profile picture
Derek Rein11 months ago

Great result - excellent use of AI in VFX

Josh Mugayi's profile picture
Josh Mugayi11 months ago

🧐🧐🤔

SNARE JORDON THE SNARECROW's profile picture
SNARE JORDON THE SNARECROW11 months ago

game changer

Timor Kardum's profile picture
Timor Kardum11 months ago

Woooooo 😮

Henkjan's profile picture
Henkjan11 months ago

That approach makes a lot of sense; leveraging growth masks with mask sampling can really enhance the flexibility of your outputs. It’s all about pushing those boundaries creatively!

Related Videos

🎓Learn how to create a powerful Torn Fabric smart material in a matter of seconds in my latest video series (AAA) Pro Tips! This smart material can be used on virtually any 3D asset. ____________________________________________________ In this video, the steps are as follows: 1. Create a base fill layer containing no information. We will use this layer to call out the core effects. Add a black mask to this layer and inside that mask add a paint layer and draw a simple pill shape. 2. Next, add a blur directional and be sure the direction is the same direction that your fabric is flowing to. 3. Add a UV border generator set to subtract to mask out any uv seams followed by an anchorpoint. Additionally, add a messy Fibers 3 fill layer set to overlay. 4. Use a levels to adjust the mask along with a sharpen filter. A warp filter should also be added to introduce some randomness. Add an anchor point at the top of the mask as well. 5. Create another fill layer with its opacity channel set to black and apply a black mask to the fill layer. Inside its mask retrieve the anchorpoint information from the previous fill layer. 6. Create an additional fill layer with a bright diffuse color along with a black mask applied to it. Add the anchorpoint information from the previous mask into its mask as well and this should give us some white fibers on the edges. Now we have a torn fabric effect wherever we paint using the paint layer created inside the callout mask! ____________________________________________________ More AAA Game Dev Tips can be found on my YouTube channel here: Stay tuned for more weekly Tips! Happy Texturing!💚 #gamedev #gameart #tutorial #3dmodeling #hardsurface #texturing

Cohen Brawley

78,660 views • 2 years ago

CSS Trick! 🤙 You can create gradient borders on translucent elements using mask-clip and mask-composite with a pseudo-element 🔥 .gradient-border::after { mask-clip: padding-box, border-box; mask-composite: intersect; mask: linear-gradient(transparent, transparent), linear-gradient(white, white); } It's the same "Transparent border trick" from before. But, now you apply it to a pseudo-element 😎 The trick is to create a pseudo-element with a gradient background and then mask it so we only see the part we want, the border ✨ mask-clip defines the area affected by a mask. Similar to how you can define background-size. Using padding-box and border-box constrains the two masks. mask-composite is the magic part ✨ It defines a compositing operation for stacked mask layers. Using intersect means that the parts that overlap get replaced. And this seems to work in all browsers 🙌 As for the rest of the styles... – Make sure you set pointer-events: none on the pseudo-element – Make sure it fills the parent element. You can use position: absolute and inset: 0 – Make sure the background fills the space including the border-width. You can use calc to achieve that: --bg-size: calc(100% + (2px * var(--border))); background: var(--gradient) center center / var(--bg-size) var(--bg-size); That's it! 🚀 Gradient borders on translucent elements. You can set all the backdrop-filter: blur() you like! 😅 CodePen.IO link below! 👇

jhey ʕ•ᴥ•ʔ

269,739 views • 2 years ago