iTween.DrawLineHandles C# (CSharp) Method

DrawLineHandles() public static method

Draws a line through the provided array of Transforms with Handles.DrawLine().
public static DrawLineHandles ( Transform line ) : void
line Transform /// A ///
return void
    public static void DrawLineHandles(Transform[] line)
    {
        if(line.Length>0){
            //create and store line points:
            Vector3[] suppliedLine = new Vector3[line.Length];
            for (int i = 0; i < line.Length; i++) {
                suppliedLine[i]=line[i].position;
            }
            DrawLineHelper(suppliedLine,Defaults.color,"handles");
        }
    }

Same methods

iTween::DrawLineHandles ( Transform line, Color color ) : void
iTween::DrawLineHandles ( Vector3 line ) : void
iTween::DrawLineHandles ( Vector3 line, Color color ) : void
iTween