Unity Tutorial How To Make Game Object Or Character Move Along Bezier Curve With Simple C# Script

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

КОМЕНТАРІ • 291

  • @abhinavsaha3342
    @abhinavsaha3342 3 роки тому +57

    For people who are trying to make this in 3D
    Route script:-
    [SerializeField]
    private Transform[] controlPoints;
    private Vector3 gizmosPosition;
    private void OnDrawGizmos()
    {
    for (float t = 0; t routes.Length - 1)
    {
    routeToGo = 0;
    }
    coroutineAllowed = true;
    }

    • @danieldarko
      @danieldarko 2 роки тому +2

      life saver, ty

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

      I know you shared this like 10 months ago, but by end the of the script you change the speedModifier by 0.90f:
      speedModifier = speedModifier * 0.90f;
      why exactly are you changing that value there? I don't see that line in the video and I was wondering why you added it.
      Thanks a ton for the script btw.

    • @user-em9su3dd9y
      @user-em9su3dd9y 2 роки тому

      Dude, yes.

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

      @@danieldarko
      That's not a necessary step. I just did it cuz I was testing something

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

      sheeeesh, much thanks Abhinav:)

  • @niblet8308
    @niblet8308 4 роки тому +179

    Here's the route script if you're too lazy to copy it yourself:
    [SerializeField]
    private Transform[] controlPoints;
    private Vector2 gizmosPosition;
    private void OnDrawGizmos()
    {
    for(float t = 0; t

    • @niblet8308
      @niblet8308 4 роки тому +75

      and here's the follow script:
      [SerializeField]
      private Transform[] routes;
      private int routeToGo;
      private float tParam;
      private Vector2 objectPosition;
      private float speedModifier;
      private bool coroutineAllowed;
      // Start is called before the first frame update
      void Start()
      {
      routeToGo = 0;
      tParam = 0f;
      speedModifier = 0.5f;
      coroutineAllowed = true;
      }
      // Update is called once per frame
      void Update()
      {
      if (coroutineAllowed)
      {
      StartCoroutine(GoByTheRoute(routeToGo));
      }
      }
      private IEnumerator GoByTheRoute(int routeNum)
      {
      coroutineAllowed = false;
      Vector2 p0 = routes[routeNum].GetChild(0).position;
      Vector2 p1 = routes[routeNum].GetChild(1).position;
      Vector2 p2 = routes[routeNum].GetChild(2).position;
      Vector2 p3 = routes[routeNum].GetChild(3).position;
      while(tParam < 1)
      {
      tParam += Time.deltaTime * speedModifier;
      objectPosition = Mathf.Pow(1 - tParam, 3) * p0 + 3 * Mathf.Pow(1 - tParam, 2) * tParam * p1 + 3 * (1 - tParam) * Mathf.Pow(tParam, 2) * p2 + Mathf.Pow(tParam, 3) * p3;
      transform.position = objectPosition;
      yield return new WaitForEndOfFrame();
      }
      tParam = 0f;
      routeToGo += 1;
      if(routeToGo > routes.Length - 1)
      {
      routeToGo = 0;
      }
      coroutineAllowed = true;
      }

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

      @@niblet8308 you da real MVP

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

      Thank you, god.

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

      Thank you so much! 💎

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

      My pleasure

  • @paulhoover5511
    @paulhoover5511 5 років тому +64

    As others have said, this is one of the best Unity tutorials I've come across. The presentation of the information is concise, understandable and to-the-point. The tutorial moves quickly, but covers everything that one needs in order to achieve the goal of the lesson. There's no time wasted with turning on the camera to begin recording, describing how to make a unity project, stopping to answer disruptive DMs, trying to remember what the person was say, etc.--all of the problems with the majority of video tutorials out there today. Alexander's knows his stuff, knows what he wants to impart and does so, eloquently.

    • @AlexanderZotov
      @AlexanderZotov  5 років тому +10

      And this is one of the best comments I've read :-) Thank you very much!

  • @alexandershulzycki5376
    @alexandershulzycki5376 4 роки тому +42

    For anyone who wants the object to rotate along the bezier curve (like a train), simply add "transform.LookAt(position);" before line 51 in the bezierfollow script. Because the calculated position will be applied on the next line, this rotates your object towards that next point, then applies the transform.

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

      Muchas gracias..!!!, excelente..!!

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

      Yes you are right, You can also do like this "
      Vector3 dir = objectPosition - transform.position;
      dir.y = 0; // if you want in sepecific directions only or its optional
      transform.rotation = Quaternion.LookRotation(dir);
      transform.position = objectPosition; "

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

      que genio! muchas gracias

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

    Worked like a charm for 3d movement, just changed "Vector2" for "Vector3"! Thank you so much!

  • @MERTYILMAZGAMES
    @MERTYILMAZGAMES Рік тому +2

    I do not usually thank for tutorials but this was amazing

  • @grandmasterskitz748
    @grandmasterskitz748 5 років тому +25

    Probably hands down the most useful tutorial I've seen in a really long time 😊
    +1 like

  • @alexandershulzycki5376
    @alexandershulzycki5376 4 роки тому +4

    If anyone doesn't want the movement to freeze up when you switch to scene, simply swap out WaitForEndOfFrame() with WaitForFIxedUpdate() - this will also make sure that the speed is independent of the frame rate.

  • @BeeBeeCoding
    @BeeBeeCoding 5 років тому +2

    MAN you are a coding god, i have been trying to learn bezier/spline curves for a while every tutorial is complicated as hell 33 Lines of code compared to my last bezier tutorial that was over 150 lines. thank you so much !!!

    • @AlexanderZotov
      @AlexanderZotov  5 років тому

      Thanks for your feedback :-) Why 150 lines :-)

    • @BeeBeeCoding
      @BeeBeeCoding 5 років тому

      @@AlexanderZotov using the Unityeditor to make more complicated.
      How could i keep speed of the object the same on different routes with different sized curves i noticed on bigger curves the object i move is going faster than then on smaller ones any way to solve this?
      Thanks again

    • @AlexanderZotov
      @AlexanderZotov  5 років тому

      Speed depends on t. Gotta play with it to make speed to be constant.

    • @BeeBeeCoding
      @BeeBeeCoding 5 років тому

      ​@@AlexanderZotov yeah i believe i have done it now thanks

    • @AlexanderZotov
      @AlexanderZotov  5 років тому

      Cool!

  • @JimmyKadesch
    @JimmyKadesch 4 роки тому +2

    dude, this was amazing! I'm on a mission to implement some enemy/boss "swooping" motions at the player. This is the perfect foundation. Thank you!!

  • @DoomTrooper
    @DoomTrooper 5 років тому +5

    You can also use
    transform.LookAt2D(p3, -90f); (The angle might differ based on the sprite)
    This will make the sprite look directly at the last waypoint. Really useful when you are spawning waves of enemies and want them to look at a specific direction with multiple routes.

    • @AlexanderZotov
      @AlexanderZotov  5 років тому +1

      :-)

    • @jamieelliot6881
      @jamieelliot6881 5 років тому

      Helpful, do you do this in the update()? i'm having trouble trouble trying to figure out how to have my sprite follow this curve, the sprite has 5 body parts and need them to move so looks kinda like a snake/serpent in space game, out of ideas

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

    It was surprisingly difficult to find a tutorial to move an icon along a simple Bezier curve path...this is exactly what I was looking for, and as far as I can tell, it is one of a kind. Thank you!

  • @joolzc3776
    @joolzc3776 4 роки тому

    One of the best Unity Tutorial Channels there is!!!! Should have a Billion Subs!!!!! Helped me many times this channel!!!!! No messing around and explains scripts in a good and clear way! Well done bro! keep up the good work!!!!!!!!!!!

  • @powersx2508
    @powersx2508 5 років тому +4

    This tutorial is a best tutorial I have ever seen.

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

    Thank you so much for this tutorial! I'm really hesitant to use curves since I don't understand them yet but this was so easy to understand and modify to fit our game project! Now our player will bounce back smoothly from unwanted objects, just perfect!

  • @spe.z.artist
    @spe.z.artist 4 роки тому +1

    this is amazing alex. your channel has once again saved the day. Every other tutorial on bezier curves is too complex, you simplified it! I used this to make 2d pendulum swing, and it could not be any better. you're the best,

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

    Thank you very much! Wanted to do a shoot em up and give the enemies some smooth movement as they arrive onto screen and this is perfect for the job.

  • @purpl3grape
    @purpl3grape 4 роки тому +1

    Thank you brother. I'm about to begin some Vehicle AI using bezier curves, this was an approach I was recommended.

  • @SirGogan
    @SirGogan 4 роки тому +8

    I notice the movement of the Cat on the Y is quicker than that of the X. I'm assuming that's because if you have a distance of 100, on the X that may equate to 10% of the overall screen width, where as 100 on the Y may equate to 30% of the overall screen height.
    Or to put it another way, the screen is wider than it is tall so the time it takes to travel the same distance is different from one axis to another.
    Does anyone have any suggestions on how to adjust the speed along the curves to account for this?

  • @saumyasaurav159
    @saumyasaurav159 5 років тому +2

    Bezier Curves are Awesome. Thanks man for this Tutorial.

  • @dharmeshkumar2763
    @dharmeshkumar2763 5 років тому +2

    You are so smart.👍👌. This method can be used in various places such as enemy patrolling. Really helpful tutorial.

  • @waqasgamedev
    @waqasgamedev 4 роки тому

    Why to use Coroutine? If you are also wondering then this is what I understand.: First of all this is a very nice video explaining stuff even for beginners like me so thanks a lot to Alexander Zotov. I have subscribed to the channel as well. Then come to point. What I have understood (Please correct me fellows if I got it wrong) we need coroutine because other wise the while loop which is updating the position of the cat will run with in the single frame (and remember in 1 second there are 60 frames for 60 FPS rate) so the unity hangs and does not respond on such successive position updates with in a single frame. So we need to postpond this updation to the next frame so we are using "yield return" statement at end of each position updation at end of loop. However in my case yield return null worked because yield return new WaitForEndOfFrame caused unsteady updations instead of smooth.

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

    Thanks Alexander! Clear, concise and entertaining!

  • @iansong1676
    @iansong1676 5 років тому +2

    I found your channel today and I'm enjoying it so much!

  • @mmporg94
    @mmporg94 5 років тому +3

    this is exactly what i was looking for! thank you for the tutorial! definitely gonna be messing around with it

  • @probadaa5788
    @probadaa5788 9 місяців тому

    Бро, спасибо тебе огромное, так долго пытался понять, что делать с моим простым перемещением, ибо не хотел переходить на движение с физикой и использованием AddForce. Про Bezier знал, но забыл, а на твоё видео наткнулся случайно, спасибо тебе большое, что напомнил!

  • @sam_smax
    @sam_smax 4 роки тому +1

    if you want here is a piece of code in order to make the cat rotate depending on where it's going
    the variable _angle is a private float
    by the way thank you a lot for the tutorial
    Vector3 relative = transform.InverseTransformPoint(_catPosition);
    _angle = Mathf.Atan2(relative.x, relative.y)*Mathf.Rad2Deg;
    transform.Rotate(0,0, -_angle);
    transform.position = _catPosition;

    • @Reita69
      @Reita69 4 роки тому +1

      Man, i love you for that

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

    Thank you so much! I've been trying to find a way to do tank tracks in my 2D Tank Game. Now the next step is figuring out how to duplicate a single track enough times to make a perfect loop. Also have to figure out how I'm going to pull off the interaction of the tracks and wheels.

  • @leonardopaciello5966
    @leonardopaciello5966 5 років тому +1

    Nice tutorial, Bezier is pretty tricky to learn, but you made it simple, thanks

  • @rafaelskiarteportfolio1098
    @rafaelskiarteportfolio1098 9 місяців тому

    Man, this is AMAZING! Congratulations and thank you!

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

    lol " As we can see at this Wikipedia article a Bezier curve is a quite complicated shiiiiiii........ uh thing"
    perfect!

  • @SiegeMinion
    @SiegeMinion 4 роки тому

    FINALLY a guide worth following.
    Thank you

  • @gbhgvhgbh
    @gbhgvhgbh 4 роки тому

    Great tutorial, how all tutorials should be clear and concise

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

    cheers for the tutorial, I was able to use this for creating a rotating object with four platforms.

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

    All your tutorials are just amazing!. Keep going please!.

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

    Hi, how do I fill up the transform array through script if I want to make the cat into a prefab?, since it would lose references to the routes...

  • @games2play502
    @games2play502 5 років тому +2

    Thankyou Alexander great tutorial, you are one of the best in game tutoring finaly i can know add platforms to my game :)

    • @AlexanderZotov
      @AlexanderZotov  5 років тому

      You are welcome! Thanks for your feedback.

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

    If you're having trouble seeing the spheres generated by the Route script, change the code on line 19 shown in the video to DrawWireSphere instead of DrawSphere.

    • @DuongNguyen-hx1lo
      @DuongNguyen-hx1lo 2 роки тому

      I changed to drawwiresphere but still cannot sê the sphere

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

      @@DuongNguyen-hx1lo increase radius of sphere, or enable gizmos tab in unity

  • @RobertBojor
    @RobertBojor 5 років тому +1

    You made my day man! :) Kudos for the tutorial.

  • @sixto2003
    @sixto2003 4 роки тому +1

    I like this video, if you follow step by step its easy and fun, and I spend time make something with angles and its more hard than this and low universal. Thanks

  • @ACour008
    @ACour008 4 роки тому +2

    This is a really great video and explains Bezier curves super clearly. I am wondering in terms of 3D space, is applying the Gizmos script just a matter of using Vector3 types rather than Vector2? How does the gizmoPosition formula change if using it in 3D space?

  • @ElSonk
    @ElSonk 4 роки тому +1

    You are a genius, thank you for this tutorial.

  • @a.mused22
    @a.mused22 5 років тому

    I didn't know that you could do that with Unity. Great!

  • @TheVeryMadMath
    @TheVeryMadMath 4 роки тому

    Wow ! Thanks a lot ! You just saved my project right now...

  • @zubairhussain-kl9pm
    @zubairhussain-kl9pm Рік тому +1

    speed is not same throughout animation ...How can we do that?

  • @DoomTrooper
    @DoomTrooper 5 років тому +10

    0:28 Bezier Curve is a wide complicated Shi 🤣🤣🤣

  • @sife-i9n
    @sife-i9n 3 роки тому

    your tutorials are awesome u always give me exactly what i need thank u

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

    Excellent tutorial. Thanks Alexander!

  • @Gregasaurus
    @Gregasaurus 5 років тому +1

    awesome work. exactly what I was looking for. thanks Alexander

  • @ClashWithHsen
    @ClashWithHsen 5 років тому +3

    Thanks! just what I want to implement in my game

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

    Thank you so much my guy! Looking all over for something like this

  • @CORKALOT
    @CORKALOT 4 роки тому

    Incredible, Alexander! I'm new to coding but I'm going to go ahead with this as a foundation and try to get my GameObject to move in this manner upon trigger without the repetition! Wish me luck. :D

    • @AlexanderZotov
      @AlexanderZotov  4 роки тому +1

      Good luck :-)

    • @CORKALOT
      @CORKALOT 4 роки тому

      @@AlexanderZotov Did it!
      If anyone wants to know how, let me know.

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

      @@CORKALOT I know it's been a year, but I'm stuck on how to stop gameobject when reaches the last point.

  • @skywoker123456
    @skywoker123456 5 років тому +2

    Отличный урок,как и всегда!!

  • @JozefKonradPlata
    @JozefKonradPlata 4 роки тому

    Very good stuff. I like to see that Im not the only crazy person that likes to use while loops XD

    • @AlexanderZotov
      @AlexanderZotov  4 роки тому

      Yeah, "while"s can bring lots of headache :-)

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

    Thank you, this tutorial is excellent!

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

    this video is pure gold my hero

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

    if i wanted to do this, but for the camera, like the camera would follow that fixed line while following the player for example, the camera smoothly advances on that line as the player moves

  • @swordmaster3005
    @swordmaster3005 4 роки тому

    THIS WAS SO HELPFUL THANK YOU!

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

    Hi Alex, Brilliant tutorial.

  • @dizignit1983
    @dizignit1983 4 роки тому

    Great video!! I am pretty new to Unity. This has really opened up my eyes to the potential of Unity. Thank you!

  • @federickpabalate3606
    @federickpabalate3606 4 роки тому +1

    Hi, how can i implement dragging object through the bezier curve only. hope you help me thanks

  • @romanh.4689
    @romanh.4689 4 роки тому

    Great! Exactly what I needed! Thanks.

  • @pravatpandey1937
    @pravatpandey1937 4 роки тому +2

    Hey! Awesome Tutorial.
    Can anyone tell me why we used coroutine and waitForEndOfFrame ?
    What would happpen otherwise?
    Why do we generally use this technique?

    • @waqasgamedev
      @waqasgamedev 4 роки тому +1

      Hi, What I have understood (Please correct me other fellows if I got it wrong) we need coroutine because other wise the while loop which is updating the position of the cat will run with in the single frame (and remember in 1 second there are 60 frames for 60 FPS rate) so the unity hangs and does not respond on such successive position updates with in a single frame. So we need to postpond this updation to the next frame so we are using "yield return" statement at end of each position updation at end of loop. However in my case yield return null worked because yield return new WaitForEndOfFrame caused unsteady updations instead of smooth.

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

    Thanks for the great how-to!

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

    Hi Alexander, Thank you for this tutorial ! I have a little problem at 09:00. When my cat reaches the p0 of Route02, there is a 'jitter' due to the fact that 'route01 p4' and 'route02 p0' are the same point. When you run step by step in unity editor, you can see clearly that behaviour. Do you have a tip to avoid this between routes ?

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

    Incredible stuff, thanks for sharing!

  • @poho3928
    @poho3928 5 років тому

    fantastically useful Alexander, thank you

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

    how does bezier script get a route array. works differently for me. there is no array

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

    is there anyway the object can go back the bezier curve while in the middle of it?

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

    I have benn looking for this video for a long time, since I did not search for bezier curve.

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

    My computer doesn't like this code. Adding all 4 control points causes my memory to increase to 100% then crashes unity

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

    Hi Sir, How can I correctly apply this to X, Z? So how can we apply it to the horizontal plane.
    Can you help me? Thank you. Have A Good Day.

  • @karenminasyan8209
    @karenminasyan8209 5 років тому +2

    Amazing tutorial, thank you 🤩🤩🤩

  • @littleninja7485
    @littleninja7485 5 років тому +2

    how to make it stop looping??

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

    How can we make a line renderer on mouse position follow the path defined by bezian curve

  • @pavel9425
    @pavel9425 5 років тому +1

    Thank you! Great tutorial.

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

    thanks for the tutorial, however, I'm having the issue that the object that follows the path stutters a bit... it's not much but it does... I've tried replacing transform. position for rigidbody.moveposition and yield return new WaitForEndOfFrame for WaitForFixedUpdate but nothing solves the issue.. any advice for that?

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

    Transform.posion is ok but any suggestion for transform.rotation if it would be a car in place of cat

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

    A small request which I am really in need.
    What if i want it to stop cat at one controlPoint for certain time and then move to next after some time.
    Appreciate your vidoes.

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

    thank you so much. It very well 💯

  • @TheParasone
    @TheParasone 4 роки тому

    How about performance ? Does it take alot of cpu ? Would this method run on a mobile game with 10+ Obj to follow a path?

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

    Question: how do u find the midpoint, or is it as easy as adding the start point end point coordinate and dividing by 2?

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

    How would we place objects on Bezier surfaces with (u,v) versus t?

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

    Hi sir,How Do I Connect Two Splines Just Keep On Iterate From First Curve to the next Curve?
    is it correct statement?
    if 1stcurve = 1 then
    1stcurve=0
    object= 2ndcurve
    2ndcurve= 2ndcurve+ speed?

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

    Hey I was looking for this but in a different view, can we make a 2d laser with bezier curve?

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

    I am new to this, does anyone know if the player character is following the path.. can they jump and return to the path?

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

    Hi I have a question - is there a simple way to reduce the amount of points that make the curve?

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

    Amazing, thanks!

  • @jean-michel.houbre
    @jean-michel.houbre 4 роки тому +1

    Very interesting ! I love it.

  • @ethanfields8737
    @ethanfields8737 4 роки тому

    hey how do you adjust how many gizmos are on the line of the curve?

  • @iansong1676
    @iansong1676 5 років тому +1

    For somereason whenever I use unity remote 5 the graphic quality of the game and the performance(frame rate) goes down drastically. Is there any solution or does it get better when I make a build of the game?

    • @CouchFerretmakesGames
      @CouchFerretmakesGames 5 років тому +2

      Do you mean the quality on the phone? If yes, then it's normal. Basically, Unity streaming the game into your phone and your phone sends back the inputs. So it's pretty normal to have crappy quality and frame rate. If you build your game to your phone then it should be just as good as in the Unity Editor. :)

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

    When using this script I noticed the cat would change velocity depending on how concentrated the curve was, how can I fix this?

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

      did you figure it out,

  • @xssjgohanx9233
    @xssjgohanx9233 5 років тому

    Hi, I would like to create a stickman that runs/walks (with the running or walking animation). My question is, since I saw your vids about 2d animation and left and right buttons, is there a way to use both of those tutorial in a project? Thanks

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

    Switch all the vector2's to vector3's if you want it to follow a curve in 3d space

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

    Hi Alex, is it possible to drag that game object along the created path using touch input ? can you please guide me how to do that?

  • @IvanGtzdiseno
    @IvanGtzdiseno 5 років тому +1

    I succesfully made this bezier curve in 3D with this:
    using UnityEngine;
    public class Route : MonoBehaviour
    {
    [SerializeField]
    private Transform[] Beziercontrol;
    private Vector3 gizmosPosition;
    private void OnDrawGizmos()
    {
    for (float t = 0; t routes.Length - 1)
    routeToGo = 0;
    coroutineAllowed = true;
    }
    }
    Any idea of what's happening?

  • @mhmde3
    @mhmde3 4 роки тому

    great tutorial, thank you very much

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

    Hi Alexander, Great tutorial thank you. I wanted to ask if this works with adding more than one game object to it. For example, if you wanted a train with multiple components on it. Would 'Hinge joint' work on it?
    Thank you

  • @AtomXploD
    @AtomXploD 4 роки тому

    Thank you for sharing, very helpful. I only have a doubt, when you create the childrens for route, then you modify the size of it to 4, I don't know why, but now it doesn't appear the size paramater in my inspector, you know what could be the reason? Thanks and Greetings.

  • @7even462
    @7even462 4 роки тому +1

    nice tutorial!