Skip to content

Commit

Permalink
Fix for beginFill() alpha being ignored.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanrpace committed Dec 22, 2012
1 parent 907f55d commit 17098aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/starling/display/Graphics.as
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ package starling.display
_fillAlpha = alpha;

_currentFill = new Fill();
_currentFill.alpha = _fillAlpha;
_currentFill.material.color = color;
_currentFill.material.alpha = alpha;
_container.addChild(_currentFill);
}

Expand Down

0 comments on commit 17098aa

Please sign in to comment.