大约有 1,171 项符合查询结果, 库内数据总量为 31,624 项。 (搜索耗时: 0.0055 秒)
Laya_社区(876) Laya3.0_api(80) Laya2.0_文档(72) Laya_示例(52) Laya2.0_示例(48) Laya3.0_文档(39) laya_api(2) Laya2.0_api(2)
...官方API中有反余弦的方法吗? 调用动画结束on方法,报错this.zombieAnimator.on is not a function 使用API:loadAnimation 加载并播放动画问题 layaair2.0)请问js的Laya.Event.FRAME怎么用,看api中有,但写了不执行。 layair 两点之间的距离api在哪里 ...
来源: Laya_社区 发布时间: 20180813
...数的target判断是不是button来做。 Laya.stage.on(Laya.Event.CLICK, this, function(res:Laya.Event){ if (res.target instanceof Laya.Button){ // click button } }) 2018-12-01 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 183*****288...
来源: Laya_社区 发布时间: 20180706
... 'clientWidth', get: function get() { var ret = parseInt(this.style.fontSize, 10) * this.innerHTML.length; return Number.isNaN(ret) ? this.width : ret; } }, { key: 'clientHeight', get: function get() { var ret = parseInt(this.st...
来源: Laya_社区 发布时间: 20180512
...tion Connect(url:String):void { socket=new Socket(); socket.on(Event.OPEN, this, onSocketOpen); socket.on(Event.CLOSE, this, onSocketClose); socket.on(Event.MESSAGE, this, onMessageReveived); socket.on(Event.ERROR, this, onConnectError); socket.connectByUrl(url); } public function Add(handler:IHandl...
来源: Laya_社区 发布时间: 20170724
...n; constructor(){ super()} createChildren():void { super.createChildren(); this.loadScene("Attack"); } } } 扩展UI代码: import { ui } from "../ui/layaMaxUI"; export default class AttackView extends ui.AttackUI { constructor() { super(); this.btn_attack.on("click", this, this.onAttack); } pri...
来源: Laya_社区 发布时间: 20180926
...annel extends Laya.SoundChannel { constructor(audio, miniSound) { super(); this._audio = audio; this._miniSound = miniSound; this._onEnd = MiniSoundChannel.bindToThis(this.__onEnd, this); audio.onEnded(this._onEnd); } static bindToThis(fun, scope) { var rst = fun; rst = fun.bind(scope); return rst; ...
来源: Laya_社区 发布时间: 20200103
...语句写错吗?怎么一直执行第一个条件 我的本意是判断this.boy.visible=true的话,鼠标可以点击然后到isShowBoy方法中,可是在这个时候我已经将this.boy.visible=false了,点击的时候为什么控制台还是会一直输出8,不是应该输出9嘛 附件 : ...
来源: Laya_社区 发布时间: 20170112
...的链接 提交 1 个回复 Apple 赞同来自: xxx.on(Laya.Event.STOPPED,this,this.onStop); function onStop(){ //你的代码 } 2018-04-04 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 ssss111 相关问题 配置layaAir需要注...
来源: Laya_社区 发布时间: 20180404
... blue.size(500, 500); blue.on("click", this, onClick); Laya.stage.addChild(blue); //增加一个容器 box = new Sprite(); //设置容器为画布缓存 ...
来源: Laya_社区 发布时间: 20161122
...行如下代码:private _sp = new Laya.Sprite(); private _testMask() { this._sp.graphics.clear(); this._sp.graphics.drawCircle(100, 100, 50, '#ffffff'); Laya.timer.once(3000, this, () => { this.img.mask = this._sp; }) }之后编译项目 2. 使用iphone手机的safari扫码功能运行项目 3...
来源: Laya_社区 发布时间: 20191215