[PV3D] サンプル2 (3Dのアニメーション)

by clockmaker forked from [PV3D] サンプル1 (3Dの初期表示) (diff: 15)
♥0 | Line 19 | Modified 2009-11-30 11:37:21 | MIT License
play

ActionScript3 source code

/**
 * Copyright clockmaker ( http://wonderfl.net/user/clockmaker )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/yxUo
 */

package {
    import flash.events.Event;
    import org.papervision3d.materials.WireframeMaterial;
    import org.papervision3d.objects.primitives.*;
    import org.papervision3d.view.BasicView;
    
    public class Sample2 extends BasicView {
        private var sphere:Sphere; // 球面のインスタンス
        public function Sample2():void {
            // マテリアルを作成
            var material:WireframeMaterial = new WireframeMaterial(0xFF0000);
            
            // 3Dオブジェクトを作成
            sphere = new Sphere(material, 300, 10, 10);
            
            // 3Dシーンに追加して、表示させる
            scene.addChild(sphere);
            
            // レンダリングを開始
            startRendering();
            
            // エンターフレームを設定
            addEventListener(Event.ENTER_FRAME, loop);
        }
        
        private function loop(e:Event):void {
            // 球面をY軸方向に回転
            sphere.rotationY += 1;
        }
    }
}

Forked