AS3中的3d Polkadot旋转木马
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3中的3d Polkadot旋转木马相关的知识,希望对你有一定的参考价值。
import com.theflashblog.fp10.*; // get lee brimelow's simplezsorter classes here: http://code.google.com/p/leebrimelow/source/browse/trunk/as3/com/theflashblog/fp10/?r=13 import com.greensock.TweenLite; // get tweenlite at http://www.greensock.com/tweenlite/ var rotationValue; orbit.rotationX = 90; // First rotate the whole Movieclip back 90 degrees in 3d space for(var i=0; i<orbit.numChildren; i++){ // Now rotate all the inside MovieClips back up to the correct orientation again var planet = orbit.getChildAt(i); planet.rotationX = -90; } addEventListener(Event.ENTER_FRAME,doOrbit) function doOrbit(e){ rotationValue = (mouseX + stage.stageWidth / 2) * 1.5 ; TweenLite.to(orbit,0.5,{rotationY:rotationValue}); // orbit spins around the Y axis for(var i=0; i<orbit.numChildren; i++){ var planet = orbit.getChildAt(i); TweenLite.to(planet,0.5,{rotationZ:rotationValue}); // each polkadot spins around Z axis to correct the orientation } SimpleZSorter.sortClips(orbit); }
以上是关于AS3中的3d Polkadot旋转木马的主要内容,如果未能解决你的问题,请参考以下文章