- Home /
ITween IsLocal not works properly
I Instantiate an object while camera is moving.
I use Itween.moveto function C# for my movement
In Itween.moveto "path" i give a array[]
but it acts weird not working
here is example code:
Vector3[] climbToRabbit = new[]{ new Vector3(7.43f, 3.92f, 0), new Vector3(0.36f, 9.75f, 0) new Vector3(0, 0, 0)
iTween.MoveTo(ninja, iTween.Hash( "path", climbToRabbit, "islocal", true, "time", 5.0f, "easetype", iTween.EaseType.linear, ));
This problem is only when i instantiate and trying to move across path.
If the object is in space means already in space it works fine.
Your answer

Follow this Question
Related Questions
iTween sine wave like movement 1 Answer
iTween.PutOnPath similar function for LeanTween or DoTween 1 Answer
How to animate a moving platform GameObject? 2 Answers
Call iTween Path function later in the game 1 Answer
iTween multiple path? 1 Answer