• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,204 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0052 秒)

731. http请求能否取消 [ 59%]

...ueying 赞同来自: 可以清除当前请求,请参考clear方法/** * @private * 清除当前请求。 */ protected function clear():void { var http:* = this._http; http.onerror = http.onabort = http.onprogress = http.onload = null; } 2016-12-05 0 0 分享 微博 QZONE 微信 为什么被折叠?...

来源: Laya_社区 发布时间: 20161205

732. 问题10600的复现方式 [ 59%]

...0,WebGL); Laya.timer.callLater(this,onLater); Laya.timer.clearAll(this); } private function onLater():void{ trace("xxx"); } } } 2018-01-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: ...

来源: Laya_社区 发布时间: 20180112

733. 官方案例里摄像机绕物体旋转脚本的问题 [ 59%]

...上一次手机触摸位置判断用户是在左放大还是缩小手势 private oldPosition1: Vector3 = new Vector3(); private oldPosition2: Vector3 = new Vector3(); private m_IsSingleFinger: boolean; /* private void ScaleCamera() { //计算出当前两点触摸点的位置 var tempPosition1 = Inpu...

来源: Laya_社区 发布时间: 20190224

734. Laya.stage.mouseX; Laya.stage.mouseY取到的坐标用来赋给画曲线方法的起点;在左顶点正常,越往右下角起点就越偏移了 [ 59%]

...,越往右下角起点就越偏移了 // 程序入口 class GameMain { private ps: Laya.Sprite; a: number; b: number; path: Array<number> = ; constructor() { Laya.init(1600, 1400); Laya.stage.bgColor = "#000000"; this.ps = new Laya.Sprite(); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.do...

来源: Laya_社区 发布时间: 20170721

735. timeline destroy的bug [ 59%]

timeline destroy的bug private numTimeLine: Laya.TimeLine;   release() {   this.numTimeLine.offAll();   this.numTimeLine.destroy(); } 我调用代码release时报错,发现core.js中先把_tweenDataList置null然后又引用了 附件 : --> 2017-06-10 添加评论 免费帖 --> 分享 微博 Q...

来源: Laya_社区 发布时间: 20170610

736. 怎么只用RegExp进行正则校验 [ 59%]

怎么只用RegExp进行正则校验 private static function RegExpFunc(reg:RegExp,str:String):Boolean { var p:RegExp=reg; return p.test(str) ; } 我这样子写,直接传进去,运行报错 2017-03-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

来源: Laya_社区 发布时间: 20170313

737. 设置音乐音量不能立即生效 [ 59%]

...1 0 分享 微博 QZONE 微信 cuixueying 赞同来自: 代码写错了: private function ChangeMusicVolume():void { SoundManager.setMusicVolume(0); } 用setMusicVolume就可以了! 2017-05-22 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发...

来源: Laya_社区 发布时间: 20170518

738. 浏览器接口 · LayaAir3.0文档 · LAYABOX [ 59%]

...iniGame: boolean; /** 抖音小游戏*/ static onTTMiniGame: boolean; /** @private */ static onFirefox: boolean;//TODO:求补充 /** @private */ static onEdge: boolean;//TODO:求补充 /** @private */ static onLayaRuntime: boolean; 例如,我们可以这样在代码中判断: //如果是Chrome...

来源: Laya3.0_文档 发布时间: 20241014

739. laya.ui.ProgressBar_API3.0 [ 58%]

...ProgressBar; import laya.utils.Handler; public class ProgressBar_Example { private var progressBar:ProgressBar; public function ProgressBar_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/pro...

来源: Laya3.0_api 发布时间: 20231115

740. 如何阻止 点击 继续传递 [ 58%]

...已邀请: 与内容相关的链接 提交 2 个回复 ssqhu 赞同来自: private function onPauseBtnClick(e:Event):void          {             //阻止后续节点的监听器             e.stopPropagation();     }   用这个方法就可以阻止后面的事件了。 ...

来源: Laya_社区 发布时间: 20170224