大约有 2,369 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0066 秒)
Got a response from the target app, but no target pages found 使用IDE1.7.16beta,新建一个项目,点击运行,就出现了下图显示的错误 附件 : --> 2018-03-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交...
来源: Laya_社区 发布时间: 20180328
Event类中的target属性IDE返回值为什么和文档不一样 文档上写着Event是 target : Sprite 事件目标触发对象。 IDE中 Event.target: EventTarget 是我哪弄错了吗? 2017-10-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20171015
MovieClip的target和currentTarget属性为undefined? private function showNowPic():void{ for each(var ul:String in pics){ var mc:MovieClip = new MovieClip; mc.load(ul); this.addChild(mc); mc.on(Event.COMPLETE,this,stopNowMC) } } private function stopNowMC(e:Event):void{ trace(e.currentTarget); t...
来源: Laya_社区 发布时间: 20161221
Laya 2.2.0 只支持编译 target 为 es6的相关问题 引擎版本: Laya 2.2.0 语言: typescript 构建方式: { "compilerOptions": { "module": "es2015", "lib": [ "es2015", "es6", ...
来源: Laya_社区 发布时间: 20191101
Event的target和currentTarget类型错误 使用版本:1.0正式版, 语言:ts Event的的target和currentTarget类型有错误,并不是所有EventDispatcher都是显示对象,比如访问网络的HttpRequest,希望改正 /** 事件目标触发对象。*/ target: laya.display.Sprite; /*...
来源: Laya_社区 发布时间: 20160701
一个LayaAir moveout target 设计上的疑问? Laya.init(600, 600); Laya.stage.bgColor = "white"; var sp = ; //10x10个黑色方块,鼠标移动过去时变红,鼠标移走恢复 for (var i = 0; i < 10; i++) { for (var j = 0; j < 10; j++) { sp[j + i * 10] = new Laya....
来源: Laya_社区 发布时间: 20160715
...ask; } private static _layerMap = {'ui':5} public static assignCullingMask(target){ let layerNodeName = ''; let prefix = 'culling_mask='; for(let i = 0; i < target.numChildren; ++i){ let child = target.getChildAt(i); if(child.name.indexOf(prefix) == 0){ layerNodeName = child.name.replace(prefix,'...
来源: Laya_社区 发布时间: 20200110
...* * 颜色工具类 */ export class ColorTool { private _targetsValue: number = 16777215; private _targetsLastValue: number = null; private targets: Array<Laya.Sprite> = null; public static instance: ColorTool = null; private targetsFilter: Laya.ColorFilter = null; private _p...
来源: Laya_社区 发布时间: 20180930
...有了 //如果对象被销毁,则立即停止缓动 /*[IF-FLASH]*/if (target is Node && target.destroyed) return clearTween(target); //[IF-JS]if (target.destroyed) return clearTween(target); [IF-JS]if (target != null && target.destroyed) return clearTween(target); ? 2017-03-13 添...
来源: Laya_社区 发布时间: 20170313
LayaAir的Xcode工程target都是mac平台的 LayaAir:v1.7.19 【项目限制如此】 LayaNative: v1.0.7 XCode: v11.5 项目就是很简单的一个测试的例子;见图。 导出的设置如图: 但是使用xcode打开就显示target都是mac的;但是XCode11.3上面却正...
来源: Laya_社区 发布时间: 20200721