yasirkula / UnityBezierSolution

A bezier spline solution for Unity 3D with some utility functions (like travelling the spline with constant speed/time)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to create 2 bezier paths with 2 independent runs with BezierWalkerWithSpeed

skyprotect opened this issue · comments

I have a project, need to create many bezier lines, each object will move independently on the bezier line using the BezierWalkerWithSpeed function. how can i control moving objects on different bezier lines with different motion start time and motion speed. Thank you

Each object will have its own BezierWalkerWithSpeed component. Then you can assign different splines, speeds and normalized T's to these components.

thank you!