Hi there,
I need to update a LineSegment. Does anyone would guess why the following code doesn’t work
mySegmentSet.getSegment(0)).start.x= newXValue;
.
I would like to add a tweening effect. Why does this codeline doesn’t work, even if my trace
caurina.transitions.Tweener.addTween(mySegmentSet.getSegment(0).start, {"x":newXValue, "time":1, "onComplete":this._onComplete});
private function _onComplete():void{
trace(mySegmentSet.getSegment(0).start);
// The start vector has been updated with the newXValue....
}