ActionScript 3 使用Matrix翻转对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 使用Matrix翻转对象相关的知识,希望对你有一定的参考价值。

function flipHorizontal(dsp:DisplayObject):void {
	var matrix:Matrix = dsp.transform.matrix;
	matrix.a = -1;
	matrix.tx = dsp.width + dsp.x;
	dsp.transform.matrix = matrix;
}

function flipVertical(dsp:DisplayObject):void {
	var matrix:Matrix = dsp.transform.matrix;
	matrix.d = -1;
	matrix.ty = dsp.height + dsp.y;
	dsp.transform.matrix = matrix;
}

以上是关于ActionScript 3 使用Matrix翻转对象的主要内容,如果未能解决你的问题,请参考以下文章

需要帮助使用 Flex/ActionScript 3 创建平滑的翻转或 FishEye 效果

ActionScript 3 按钮翻转

ActionScript 3 翻转DisplayObject

ActionScript 3 翻转DisplayObjects

ActionScript 3 翻转DisplayObject垂直或水平

带Flash/Actionscript 3的3D翻转效果