[AS3]as3通过距离判断碰撞状态源代码示例
[AS3]as3通过距离判断碰撞状态源代码示例
[AS3]as3通过距离判断碰撞状态源代码示例
- package
- {
- import com.ui.Ball;
- import flash.display.Sprite;
- import flash.display.StageAlign;
- import flash.display.StageScaleMode;
- import flash.events.Event;
- import flash.events.MouseEvent;
- import flash.geom.Rectangle;
- public class Main extends Sprite
- {
- private var ball:Ball;
- private var ball2:Ball;
- public function Main():void
- {
- init();
- }
- private function init():void
- {
- ball = new Ball(0x00ffff,Math.random() * 50);
- ball.x = stage.stageWidth / 2;
- ball.y = stage.stageHeight / 2;
- ball2 = new Ball(0xffff00,Math.random() * 50);
- ball2.startDrag(true);
- this.addChild(ball);
- this.addChild(ball2);
- stage.addEventListener(Event.ENTER_FRAME, onEnterFrame);
- }
- private function onEnterFrame(event:Event):void
- {
- var dx:Number = new Number();
- var dy:Number = new Number();
- dx = ball2.x - ball.x;
- dy = ball2.y - ball.y;
- //CuPlayer.com提示:获得两个球圆心之间的距离公式
- var dist:Number = Math.sqrt(dx*dx + dy*dy);
- if(dist < (ball.width / 2) + (ball2.width / 2))
- {
- trace("CuPlayer.com提示:撞上!");
- }
- }
- }
- }
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3.0的sound类常用技巧整理
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例
请稍候...