博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LayaAir 旋转的小球 抛物线效果 [未完善]
阅读量:6608 次
发布时间:2019-06-24

本文共 2014 字,大约阅读时间需要 6 分钟。

hot3.png

一个旋转的小球

class Ball extends Laya.Sprite{    private static cached:boolean = false;    private body:Laya.Sprite;    constructor(){        super();        this.init();    }    public init():void{        if(!Ball.cached){            Ball.cached = true;            this.body = new Laya.Sprite();            this.body.loadImage("war/ball.png");            this.body.pivot(12,12);        }        this.addChild(this.body);        Laya.timer.frameLoop(1,this,this.animate);        }    private animate(e):void{		this.body.rotation += 10;	}}

通过贝塞尔曲线 获得一个投石车一样的效果

class Main{    private ball:Ball;    private targetX:number = 600;        private targetY:number = 300;      private centerX:number = 0;        private centerY:number = 0;      private angle:number = Math.PI;    private angle2:number = 0;    private radius:number = 150;  //半径    private speed:number = .05;    private points:Array
= []; private i:number = 0; constructor() { Laya.init(1100, 619, Laya.WebGL); Laya.loader.load("res/atlas/war.atlas",Laya.Handler.create(this,this.onLoaded),null,Laya.Loader.ATLAS); } private onLoaded():void{ this.ball = new Ball(); Laya.stage.addChild(this.ball); this.ball.x = Laya.stage.width / 2; this.ball.y = Laya.stage.height / 2; Laya.stage.on(Laya.Event.CLICK,this,this.onClick); Laya.timer.frameLoop(1,this,this.onEnterFrame); } private onEnterFrame():void{ if(this.points.length>0){ if(this.i
0) { cs *= start; bcs *= end; start--; end--; } return (cs / bcs); }; for (var i = 0; i < len; i++) { var point = points[i]; x += point.x * Math.pow((1 - t), (len - 1 - i)) * Math.pow(t, i) * (erxiangshi(len - 1, i)); y += point.y * Math.pow((1 - t), (len - 1 - i)) * Math.pow(t, i) * (erxiangshi(len - 1, i)); } return { x: x, y: y };}new Main();

 

转载于:https://my.oschina.net/u/659068/blog/1564002

你可能感兴趣的文章
VirtualBox移植
查看>>
HTTP要被抛弃? 亚洲诚信携手宝塔开启HTTPS加密快速通道
查看>>
Chrome: 完全移除对WoSign和StartCom证书的信任
查看>>
RecyclerView侧滑删除功能
查看>>
记一个hystrix异常
查看>>
9.02-Spring IOC 容器中Bean的生命周期
查看>>
6.6 tar打包
查看>>
微信自动抢红包的实现(Demo已增加查看TopActivity功能)
查看>>
Spring MVC核心技术
查看>>
TCP协议如何保证传输的可靠性
查看>>
Spring Cloud云架构 - SSO单点登录之OAuth2.0 登出流程(3)
查看>>
编程之美 测试赛 石头剪刀布
查看>>
签名问题
查看>>
软件开发各阶段交付物列表
查看>>
2018-05-24 Linux学习
查看>>
ntp服务器的搭建
查看>>
我的友情链接
查看>>
sysstat 安装
查看>>
六、nginx搭建织梦DedeCms网站
查看>>
Tair学习小记
查看>>