Procedural Animation: Tail, Wings, Hair, Tentacles! (Unity Tutorial)

Поділитися
Вставка
  • Опубліковано 27 лис 2024

КОМЕНТАРІ • 272

  • @JasperDev
    @JasperDev 3 роки тому +84

    Really nice effect, dude :0

  • @AstroSamDev
    @AstroSamDev 3 роки тому +31

    I absolutely love procedural animation, it makes games look so much more interactive and real

  • @thereadypunk757
    @thereadypunk757 3 роки тому +35

    I love your art style, I’m surprised how well the smooth, blurred backgrounds work so well with the crisp cartoony art.

  • @VoidAshen
    @VoidAshen 3 роки тому +32

    for those who didn't get the head rotation code:
    I'll give a brief explanation
    1. direction = target.position - transform.position;
    basic vector math whenever you want a direction vector between 2 points, you subtract them.
    2. float angle = Mathf.Atan2(direction.y, direction.x) * Mathf.Rad2Deg
    basically calculation angle like in a unit circle. now you might ask, why is it y and x and not x and y because coordinates will be (cos, sin)
    it's because unity's angle system as 90 degrees of offset, and sin and cos also have the same, so we exchange them.
    It will also work if you did x and y and subtracted 90 and Mathf.Rad2Deg does what it says.
    3. Quaternion.rotation calculates rotation on the z-axis(Vector3.forward) based on the angle we provide.
    4. we use the calculated rotation to rotate the head and that's it.
    hope you got it. :D
    you can watch Sebastian Lague's video on trignometry for more details.

    • @Zackross712
      @Zackross712 Рік тому

      hey i tried to do the target how do i set it to a object

  • @monkeysaur4305
    @monkeysaur4305 3 роки тому +26

    I asked about this in the comments for your recent gamejam entry video, maybe you saw it. Thanks for making this video, these kind of things are great to learn about! :)

  • @golamashraf1464
    @golamashraf1464 2 роки тому +1

    Absolutely loved this inspiring tutorial, especially because I am a nerd for procedural animation, and what it does to open up young minds to math and science they learn in school! Thank you...

  • @master.9202
    @master.9202 3 роки тому +3

    I LIKE THAT TITLE! Thanks for this tutorial ,it's really appreciated!

  • @saultoons
    @saultoons 3 роки тому +5

    Wow this is exactly what I was looking for!!! Thanks a lot 😁

  • @stefanbartolo
    @stefanbartolo 3 роки тому +4

    I can't believe you did a tutorial about this. I asked you how you created this in your BTP game and voila' .. a whole tutorial about this :) This is awesome! Thanks for your fantastic videos!

  • @NeatGames
    @NeatGames 3 роки тому +5

    Dang this is so cool! I'm gonna try this in my current devlog project, thanks for sharing this :D

  • @avivyoukerharel2140
    @avivyoukerharel2140 3 роки тому +3

    This is so amazing! I always adored these smooth juicy Trails, Thank you so much for sharing this amazing tutorial noa and owen!

  • @madmax7876
    @madmax7876 Рік тому

    Dude this video is a life saver. I was trying to get a worm enemy in my game right for days now and this is just perfect!

  • @bwulf
    @bwulf 3 роки тому +4

    Thank you! Gonna use this to animate ropes in the wind for my 2D metroidvania! I was animating all of then by hand - think about time consuming….

  • @trananhkhoa4589
    @trananhkhoa4589 2 роки тому

    Can't thank you enough for your tutorial. These type of creatures I hadn't ever thought of making it, because of the complexity my brain created.
    Thank you very much!

  • @carrotmaster8521
    @carrotmaster8521 3 роки тому +2

    8:48 OMG I KNEW THAT WAS KEKE AS SOON AS I SAW IT. Also i need this for my project soon so thats awesome that this vid happened to come out

  • @sapientunderground
    @sapientunderground 3 роки тому +3

    Perfect timing, exactly what I needed right now, thanks!

  • @ThiagoPrego
    @ThiagoPrego 6 місяців тому

    As always, super fun, super informative and super easy to understand. May the Lord bless you always.

  • @BlueGooGames
    @BlueGooGames 3 роки тому +4

    Super cool Noa! Now I just need to figure out what to use this for in our 2D world 😀

  • @roguelove5807
    @roguelove5807 3 роки тому +1

    Your tutorials have helped me out with my own game, Stop the Saturnians, so much! Thank you! This one in particular taught me how to build the Centipede enemy ships. Thanks again, really appreciate what you do :)

  • @ash_does_dash
    @ash_does_dash 3 роки тому +1

    Thank you. Powerful examples inspired me to use this way instead of animation keys.

  • @Max-ci2re
    @Max-ci2re 3 роки тому +2

    BlackThornProd you are a god
    Your art is great and there is nothing to hate
    Your the best keep up the good work

  • @tobyk5091
    @tobyk5091 3 роки тому

    This is going into my playlist of Very Helpful Gamedev Stuff

  • @JustFor-dq5wc
    @JustFor-dq5wc 9 місяців тому

    Quick Tip: To simple rotate transform you can use transform.right = -direction; transform.right = direction; transform.up= direction; or transform.up= -direction, depending on which direction you have a sprite

  • @daksh_mamgain
    @daksh_mamgain 3 роки тому +24

    Welcome back tutorials.......

  • @Konflic
    @Konflic Місяць тому +1

    At 2:37 if your character staying still in the middle of the screen is likely due to the "Vector2.MoveTowards" function not being used correctly. This function requires a starting position, a target position, and a maximum distance to move. In his code, he using the "transform.position" as both the starting and target position, which means the object will never move. To fix this simple just change the code to:
    public class RotateToTarget : MonoBehaviour
    {
    public float rotationSpeed;
    private Vector2 direction;
    public float moveSpeed;
    void Update() {
    direction = Camera.main.ScreenToWorldPoint(Input.mousePosition) - transform.position;
    float angle = Mathf.Atan2(direction.y, direction.x) * Mathf.Rad2Deg;
    Quaternion rotation = Quaternion.AngleAxis(angle, Vector3.forward);
    transform.rotation = Quaternion.Slerp(transform.rotation, rotation, rotationSpeed * Time.deltaTime);
    Vector2 currentPosition = transform.position;
    Vector2 targetPosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
    transform.position = Vector2.MoveTowards(currentPosition, targetPosition, moveSpeed * Time.deltaTime);
    }
    }

  • @aneverything448
    @aneverything448 3 роки тому +1

    You are back to tutorials I like that

  • @GabrielAguiarProd
    @GabrielAguiarProd 3 роки тому

    What a great use of the Line Renderer. Nice one dude

  • @sherwinclaridge2807
    @sherwinclaridge2807 3 роки тому +1

    Really nice effect. Ive been using the built in particle system's trail module for basic trails at the moment

  • @Yipper64
    @Yipper64 2 роки тому

    this is exactly what I needed! Im making a platformer and I want the main character to have a nice looking scarf that follows him, and I think this will look perfect. there's something ethereal about the style of my game so I think the lack of gravity will only add to that.
    edit - I put it together and *I love it so much!*

    • @nikhilvardhantawania4591
      @nikhilvardhantawania4591 2 роки тому

      Hey, how do you stop your scarf's length from getting increased when your player moves. For me when my player moves his hair length increases on of its own then the original size when player is standing.

  • @FiddleStickNick
    @FiddleStickNick 3 роки тому

    This was super fun to make! Thank you blackthornprod and Owen for sharing :)

  • @wafa6377
    @wafa6377 3 роки тому

    everyone say it with me... thanks owen senior and noa! it looks great

  • @Sam-cj3wv
    @Sam-cj3wv 3 роки тому +5

    definitely saving this one for later

  • @Iramontes
    @Iramontes 3 роки тому

    This is awesome! I love doing procedural animations on gamemaker, so your video made me super exited to try it on unity!

  • @diliupg
    @diliupg 3 роки тому

    Black On The Block! Great as usual! Black is the new Brackey!

  • @Gregasaurus
    @Gregasaurus 3 роки тому +4

    awesome stuff, Owen and Blackthornprod. Would love to see tutorial for 3D effect!

  • @sathyanarayananviswanathan3770
    @sathyanarayananviswanathan3770 2 роки тому

    I am gonna add this technique to my sprite mask and modify it a bit..... thanks for the tutorial btw

  • @MrAnaKol
    @MrAnaKol 3 роки тому +1

    Dude who made it THANK YOU!!!!

  • @katrinacalice6484
    @katrinacalice6484 3 роки тому +4

    I really love the effects and flow of these creatures with long tails or wings, so smooth and beautiful, how I would love a game without obstacles , just a fun discovery of beautiful movement art like yours and music to go with a fabulous world created, like an animated story , what do you think NOA? 😉

  • @willofd.816
    @willofd.816 3 роки тому +4

    I'm a Man of Culture and I have seen Enough Tentacles to know where this is going ✨

  • @rafateivfik
    @rafateivfik 3 роки тому +14

    How would one go about procedurally animating the clothes like the ones on the character from 0:34 to 0:37?

  • @DJnoratos
    @DJnoratos 3 роки тому +1

    Finally some quality tutorial :) Good job !

  • @awesomeperson3342
    @awesomeperson3342 3 роки тому +2

    It’s been a long time since I watched blackthornprod :)

  • @tauheedgamedev2388
    @tauheedgamedev2388 3 роки тому

    Some really nice uses for the line renderer, now I just need to learn to make art.

  • @playtotroll2336
    @playtotroll2336 3 роки тому

    Vraiment les meilleur Tutorial. Merci :)
    The best Tutorials man I LOVE YOU

  • @burningapparatus5211
    @burningapparatus5211 3 роки тому +121

    The secret to good platformers is hair physics. (cough cough Celeste cough cough)

    • @coralcrowglow
      @coralcrowglow 3 роки тому +32

      there's so much coughing here that I believe perhaps you should go and get COVID tested

    • @rendered3090
      @rendered3090 3 роки тому +10

      It's just the good gaming chair

    • @JovsValorant
      @JovsValorant 3 роки тому

      Yeah i was actually curious how to code that in unity

    • @milanstevic8424
      @milanstevic8424 3 роки тому +1

      @@JovsValorant covid?

    • @JovsValorant
      @JovsValorant 3 роки тому

      @@milanstevic8424 are you ok bro?

  • @AayushChaudharyGames
    @AayushChaudharyGames 3 роки тому +2

    Alright, let's do this Noah! Thanks for this, 🥰. Will be using this in my game. Love your art style, will surely check out other game Devs you mentioned. ❤️

  • @tobiacancelliere6972
    @tobiacancelliere6972 3 роки тому

    Very beautiful effects.

  • @stardreamix786
    @stardreamix786 3 роки тому +1

    Amazing! Thank you so much for uploading! ;)

  • @josean_3gd
    @josean_3gd Рік тому

    Great, thanks, just what I was looking for.

  • @hm4266
    @hm4266 3 роки тому

    That’s very cool thanks for sharing and shoutout to Owen)

  • @geri4367
    @geri4367 3 роки тому +1

    Imagine now using a All In 1 Sprite Shader material on top of this awesome stuff 😎🔥

    • @Blackthornprod
      @Blackthornprod  3 роки тому +2

      Oh YES man. Will be merging the two in future projects!

    • @geri4367
      @geri4367 3 роки тому +1

      @@Blackthornprod Hell yeah, some sort of spooky misty trail or something like that. Although I'm sure you'll think something better :D

  • @Itsysss
    @Itsysss 3 роки тому +1

    Now this is *something* else

  • @BlueberryMauro
    @BlueberryMauro 3 роки тому

    Nice video! I´ll 100% use this for one of my games

  • @shaldar44
    @shaldar44 3 роки тому +6

    Amazing effects. Is it possible to have mesh/rigidbody effects on these trails? That will allow them to have colliders and give/take damage....

  • @CodingWorm
    @CodingWorm 3 роки тому +1

    Gotta save this for later

  • @hermanator5543
    @hermanator5543 3 роки тому +18

    Hi, when are you going to release the multiplayer tutorial? I love your videos btw.

    • @Blackthornprod
      @Blackthornprod  3 роки тому +11

      Hey :) I've released an online multiplayer course on Udemy with my brother! People seem to really like it, and it's a great financial support for us, so consider learning from it. There's also a 30 day money back guarantee, so if you don't like the teaching style, you can get a refund. Cheers!

    • @Xcceler
      @Xcceler 3 роки тому +2

      @@Blackthornprod I just bought your Game dev/art and 2d game courses. I hope to learn as much as possible. Also keep up the good work. Watched quite a few of your UA-cam videos first to judge you xD. I can see me spending a lot of hours watching your tutorials. Cheers.

    • @rendered3090
      @rendered3090 3 роки тому +1

      Why is everyone saying "Chears" at the end

    • @toastgames9028
      @toastgames9028 3 роки тому +1

      @@rendered3090 You spelt cheers wrong. Cheers

  • @eriknastesjo843
    @eriknastesjo843 3 роки тому

    Awesome, thank you! You seem to always notice where there is a tutorial gap on youtube :)

  • @geniusapple6471
    @geniusapple6471 3 роки тому +6

    _Wait_ , how'd you read my mind?
    Just what I wanted...
    But how?
    Noa's a *psychic* .

    • @coderarcher7122
      @coderarcher7122 3 роки тому +1

      You are here!????

    • @geniusapple6471
      @geniusapple6471 3 роки тому +1

      @@coderarcher7122 Obviously xD

    • @coderarcher7122
      @coderarcher7122 3 роки тому +1

      @@geniusapple6471 lol. Actually I am also learning game dev on platforms other than scratch (like on Godot - but sometimes the these great people give during unity or tutorials of any other game engines, gets useful universally.)

    • @geniusapple6471
      @geniusapple6471 3 роки тому +1

      Haha nice dude. But i recommend Unity over Godot, cause godot is more 2d based

  • @99bosses22
    @99bosses22 Рік тому

    This video was amazing! I do want to point out though, that the script requires the ResetPos() function to work correctly. In your example, the character was placed at Vector3(0,0,0) in the world, so it worked fine, but it is a problem if the character is placed anywhere else. This is because the first point is placed at the character's position, but all 29 other points show up at Vector3(0,0,0). When the game starts, the tail will be stretched all the way to the center of the world and then retract to the character. Running ResetPos() in Start() works great to fix this :)

    • @DonTouch
      @DonTouch Рік тому

      Hey if you see this could you give me some insight, I maybe am not far enough in the video to have seen him implement the resetPos() yet
      Thanks in advance!

    • @99bosses22
      @99bosses22 Рік тому

      @@DonTouch RestPos() shows up briefly at 12:32

    • @DonTouch
      @DonTouch Рік тому

      @@99bosses22 Thanks so much! 🤘

  • @kanedenooijer5785
    @kanedenooijer5785 3 роки тому

    Another good tutorial as always!

  • @GARTZ09
    @GARTZ09 3 роки тому

    I was looking for this, thank you so much man

  • @JustP3DS
    @JustP3DS 3 роки тому

    If only I had seen this earlier. This looks awesome :)

  • @PatientRock
    @PatientRock 3 місяці тому

    I appreciate the video and it helped me figure out how to create a squid. The video is a little sloppy and doesn't show some code on screen. Eventually figured it out. In case someone stumbles on this like I did, here's my code for the first part:
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    public class SquidTentacle : MonoBehaviour
    {
    public int length;
    public LineRenderer lineRend;
    public Vector3[] segmentPoses;
    private Vector3[] segmentV;
    public Transform targetDir;
    public float targetDist;
    public float smoothSpeed;
    public float trailSpeed;
    private void Start()
    {
    length = 10;
    targetDist = 0.1f;
    smoothSpeed = 0.04f;
    trailSpeed = 350f;
    lineRend.positionCount = length;
    segmentPoses = new Vector3[length];
    segmentV = new Vector3[length];
    }
    private void Update()
    {
    segmentPoses[0] = targetDir.position;
    for (int i = 1; i < segmentPoses.Length; i++)
    {
    segmentPoses[i] = Vector3.SmoothDamp(segmentPoses[i], segmentPoses[i - 1] + targetDir.right * targetDist, ref segmentV[i], smoothSpeed + i / trailSpeed);
    }
    lineRend.SetPositions(segmentPoses);
    }
    }

  • @lubu682
    @lubu682 2 роки тому

    thanks, owen, you saved me

  • @TryingCode
    @TryingCode 3 місяці тому

    Rotation Code at 1:38:
    private Vector2 direction;
    public float rotationSpeed;
    void Update(){
    direction = Camera.main.ScreenToWorldPoint(Input.mousePosition) - transform.position;
    float angle = Mathf.Atan2(direction.y, direction.x) * Mathf.Rad2Deg;
    Quaternion rotation = Quaternion.AngleAxis(angle, Vector3.forward);
    transform.rotation = Quaternion.Slerp(transform.rotation, rotation, rotationSpeed * Time.deltaTime);
    }

  • @ParthivRaju
    @ParthivRaju 3 роки тому

    Thank you Owen 😊

  • @tanmayupadhyay2027
    @tanmayupadhyay2027 3 роки тому

    Hey great tutorial noa !👍

  • @FerreroRopher
    @FerreroRopher 3 роки тому +8

    is it possible to add collision to the tentacle/hair/ whatever? Would you just have to add like a rigid body to it or something?

    • @pelodofonseca6106
      @pelodofonseca6106 2 роки тому +1

      Yeah i managed to do it.

    • @oricz8210
      @oricz8210 Рік тому

      How, i cant seem to figure it out@@pelodofonseca6106

  • @tassiomiranda2985
    @tassiomiranda2985 3 роки тому

    Thanks Owen!

  • @DARÉ_REBELO
    @DARÉ_REBELO 3 роки тому

    thank you owen

  • @seriouslee4119
    @seriouslee4119 3 роки тому

    Wiggledir might be my new favorite word.

  • @piousthepious
    @piousthepious 3 роки тому +9

    Amazing tutorial! How would someone add some kind of gravity effect in case we want something similar to a tail or hair that looks naturally influenced by gravity?

    • @fragrantupholstery2779
      @fragrantupholstery2779 3 роки тому +7

      My solution was to make a new float variable called 'Gravity' and set it to something like 0.5, then for the second parameter of Vector3.SmoothDamp I would put new Vector3(segmentPoses[i - 1].x, segmentPoses[i - 1].y - gravity)

    • @piousthepious
      @piousthepious 3 роки тому

      @@fragrantupholstery2779 Oh wow thank you!

    • @lincolncharlles
      @lincolncharlles 2 роки тому

      Thank you so much, made my day

    • @Loztc0ld
      @Loztc0ld Рік тому

      kind of a long shot but did you guys get this working?

  • @VeneDrummer
    @VeneDrummer 2 роки тому +1

    Im trying to figure out how to make it so the tip of the tentacle can attack things. Almost like an IK where I can have a target that pushes toward something. Let me know if yall have any ideas :)

  • @madmanga64
    @madmanga64 3 роки тому

    Awesome work!

  • @rubencrespo9699
    @rubencrespo9699 3 роки тому

    Thanks... very good tutorial

  • @itsonemole
    @itsonemole 3 роки тому

    Really love your vids, just a request, please post videos more often.....Thanks....!!!!

  • @valorantmuxur6453
    @valorantmuxur6453 3 роки тому +1

    Nice video good job 👏

  • @TryingCode
    @TryingCode 3 місяці тому

    Main Code at 6:15:
    public int length;
    public LineRenderer lineRend;
    public Vector3[] segmentPoses;
    private Vector3[] segmentV;
    public Transform targetDir;
    public float targetDist;
    public float smoothSpeed = 5f;
    private void Start()
    {
    lineRend.positionCount = length;
    segmentPoses = new Vector3[length];
    segmentV = new Vector3[length];
    }
    private void Update()
    {
    segmentPoses[0] = targetDir.position;
    for (int i = 1; i < segmentPoses.Length; i++)
    {
    segmentPoses[i] = Vector3.SmoothDamp(segmentPoses[i], segmentPoses[i - 1] + targetDir.right * targetDist, ref segmentV[i], smoothSpeed);
    }
    lineRend.SetPositions(segmentPoses);
    }

  • @lietajucemaciatko383
    @lietajucemaciatko383 3 роки тому

    Thank you Owen

  • @Jackeydev
    @Jackeydev 5 місяців тому +1

    The wiggle does not work when I use the tentacle two script I want the wiggle to happen and also to not stretch. How can I do that ?

  • @moiseslozano6906
    @moiseslozano6906 3 роки тому

    Beautiful

  • @Bruce.B
    @Bruce.B 3 роки тому +1

    Great tutorial. Thank you.
    But I am shocked and said "Oh my god! I love those characters" at 8:48 . He seems to be nailing the style. When can we play that?

  • @echophantom8511
    @echophantom8511 3 роки тому

    Yeah, this is a really nice vid

  • @heyreefes
    @heyreefes 3 роки тому

    Now I can finally make the glocktopus

  • @random_precision_software
    @random_precision_software 3 роки тому

    Welcome back to the real world!

  • @oricz8210
    @oricz8210 Рік тому +1

    i know in kinda late, but would it be possible to add a collision to the tail, i couldnt find any solution because it is moving by transform.position

  • @showthebeebub
    @showthebeebub 3 роки тому +6

    How do you do this with AI? That fish creature inspires me to make an aquarium style game and I'd like to know how to make it swim around on its own instead of following the mouse cursor. Also how would I move it with a joystick for controllers and mobile?

    • @Blackthornprod
      @Blackthornprod  3 роки тому +3

      You would simply need to create a patrol script, and have the head rotate to face the patrol point. For controllers, same thing, just make a classic joystick script, and have it rotate to match the joystick movement. The tail will follow behind :) (for gamepads I recommend Rewired, awesome asset pack that makes the whole input system easy!)

  • @patelvraj1362
    @patelvraj1362 2 роки тому

    PERFECT NOW WE DO NOT HAVE TO USE CLOATH SIMS

  • @timothycooke5561
    @timothycooke5561 3 роки тому +3

    Any thoughts on how to make something that wiggles consistently, but stays about the same length. I've tried a few things to make this but always end up with it either being too rigid and not really wiggling the whole length of the line, or it will wiggle nicely while holding still, but then it stretches out behind the creature when it moves.

    • @CookieJari
      @CookieJari 3 роки тому +2

      2nd Code does not wiggle for me as well

    • @seahood_
      @seahood_ 3 роки тому

      Did you ever figure this out?

    • @timothycooke5561
      @timothycooke5561 2 роки тому

      @@seahood_ , kind of. I did a lot of tweaking of the numbers and it worked close to how I wanted. Ultimately I ended up going a different direction anyway.

  • @pauldaulby260
    @pauldaulby260 3 роки тому

    Despite how triggering I found the lack of polymorphism with these, it's a very helpful tutorial, thanks

  • @emadehliel7377
    @emadehliel7377 3 роки тому +15

    using System.Collections;
    using System. Collections. Generic;
    using UnityEngine;
    public class TentacleTwo : MonoBehaviour
    {
    public int length; public LineRenderer lineRend; public Vector3[] segmentPoses; private Vector3[] segmentV;
    public Transform targetDir; public float targetDist; public float smoothSpeed;
    public float wiggleSpeed; public float wiggleMagnitude; public Transform wiggleDir;
    public Transform tailEnd;
    private void Start() {
    lineRend.positionCount = length; segmentPoses = new Vector3[length]; segmentV = new Vector3[length];
    }
    private void Update()
    {
    wiggleDir.localRotation = Quaternion.Euler(0, 0, Mathf.Sin(Time.time * wiggleSpeed) * wiggleMagnitude);
    segmentPoses[0] = targetDir.position;
    for (int i = 1; i < segmentPoses.Length; i++)
    Vector3 targetPos = segmentPoses[i - 1] + (segmentPoses[i] - segmentPoses[i - 1]).normalized * targetDist; segmentPoses[i] = Vector3.SmoothDamp(segmentPoses[i], targetPos, ro( segmentV[i], smoothSpeed);
    } lineRend.SetPositions(segmentPoses);
    tailEnd.position = segmentPoses[segmentPoses.Length -1];
    public class BodyRotation : MonoBehaviour
    }
    public float speed;
    private Vector2 direction;
    public Transform target;
    private void Update() {
    direction = target.position - transform.position;
    float angle = Mathf.Atan2(direction.y, direction.x) * Mathf.Rad2Deg; Quaternion rotation = Quaternion.AngleAxis(angle, Vector3.forward);
    transform.rotation = Quaternion.Slerp(transform.rotation, rotation, speed * Time.deltaTime);
    }
    }

  • @JovsValorant
    @JovsValorant 3 роки тому +1

    How many of you guys are curious on how to improvise making Celeste like hair?

  • @bigjamar
    @bigjamar 3 роки тому

    Excelente..!!!, muchas gracias..!!

  • @elzbieutko3054
    @elzbieutko3054 Рік тому +1

    It says something about vector and y and x not worky

  • @deraminator945
    @deraminator945 2 роки тому +1

    Can you do the same tutorial but for 3d?

  • @YongkangJR
    @YongkangJR 2 роки тому

    reminds me of the game flOw I used to play on xgen studios

  • @tienshido
    @tienshido 3 роки тому

    Ah, this is why I like you so much hahahaha! 😂 you are a Brushian ;)

  • @vuminhphuoc137
    @vuminhphuoc137 10 місяців тому

    hi, love your content! may I ask one question: is there anyway I can make a tile- base plant ( seaweed for example) that apply this procedural animation and can be add or remove length? Thanks in advance

  • @collinschigbata7932
    @collinschigbata7932 3 роки тому

    Nice tutorial
    Really appreciate it
    I can’t seem to get my Tentacle 1 object to move
    Don’t know why

  • @scriptsthefamous2250
    @scriptsthefamous2250 3 роки тому

    Noah made a song its called "DIR"