iTween.DrawPathHandles C# (CSharp) Method

DrawPathHandles() public static method

Draws a curved path through the provided array of Transforms with Handles.DrawLine().
public static DrawPathHandles ( Transform path ) : void
path Transform /// A ///
return void
    public static void DrawPathHandles(Transform[] path)
    {
        if(path.Length>0){
            //create and store path points:
            Vector3[] suppliedPath = new Vector3[path.Length];
            for (int i = 0; i < path.Length; i++) {
                suppliedPath[i]=path[i].position;
            }

            DrawPathHelper(suppliedPath,Defaults.color,"handles");
        }
    }

Same methods

iTween::DrawPathHandles ( Transform path, Color color ) : void
iTween::DrawPathHandles ( Vector3 path ) : void
iTween::DrawPathHandles ( Vector3 path, Color color ) : void
iTween