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

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

281. 二次开发 异步回调没反应 [ 79%]

... */ public static showVideoAd(success: Laya.Handler, type: string): void { if (GameConfig.ins.isDev) { success.runWith(1); return; } var VGUtil = Laya.PlatformClass.createClass("com.szdn.game.fkzy.VGUtil"); VGUtil.callWithBack(back, "showVideoAd", type);  function back(code){ LayaManager.showTextTi...

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

282. 刚刚接触2天layaair,有几个问题请教。 [ 79%]

...GameConfig"; class Main { constructor() { //根据IDE设置初始化引擎 if (window["Laya3D"]) Laya3D.init(GameConfig.width, GameConfig.height); else Laya.init(GameConfig.width, GameConfig.height, Laya["WebGL"]); Laya["Physics"] && Laya["Physics"].enable(); Laya["DebugPanel"] && La...

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

283. 二次开发(TypeScript-LayaNative原生服务-LayaNative进阶) [ 79%]

...式: ```javascript var os = conchConfig.getOS(); var bridge; var obj = {}; if (os == "Conch-ios") { bridge = PlatformClass.createClass("JSBridge");//创建脚步代理 } else if (os == "Conch-android") { //需要完整的类路径,注意与iOS的不同 bridge = PlatformClass.createClass("demo.JSBr...

来源: Laya2.0_文档 发布时间: 20210714

284. layabox加载fairygui发布的二进制文件报错 [ 79%]

...:console.log("content not null"); //输出//////////////////////////////// if (content==null){ var errorCount=this._failRes[url] || 0; if (errorCount < this.retryNum){ console.warn("[warn]Retry to load:",url); this._failRes[url]=errorCount+1; Laya.systemTimer.once(this.retryDelay,this,this._addRe...

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

285. 屏幕适配-屏幕适配 [ 79%]

...e); } onBoyClick(e) { //点击后小人会放大缩小 let boy = e.target; if (boy.scaleX === 1) { boy.scale(1.2, 1.2); } else { boy.scale(1, 1); } } onTxtClick(e) { //点击后切换适配模式 e.stopPropagation(); index++; if (index >= modes.length) index = 0; Laya.stage.scaleMode = modes[index];...

来源: Laya2.0_示例 发布时间: 20241119

286. 其他 · LayaAir3.0文档 · LAYABOX [ 79%]

...log 在js脚本中,开发者可以通过以下函数设置Debug模式: if( window.conch ) { //值为0:表示关闭所有日志输出 //值为1:表示所有LOGE全部弹出alert //值为2:表示所有LOGE和LOGW全部弹出alert window.conch.config.setDebugLevel(1); } Tips 1、conch只能La...

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

287. 背景音乐问题 [ 79%]

...usic(url, loop, rate) {     Laya.SoundManager.playbackRate = rate;     if(soundControl){         Laya.SoundManager.playMusic(url, loop, Laya.Handler.create(this, onCompleteBgMusic, [loop, url]));     } } function onCompleteBgMusic(loop, url) {     if(loop > 0){         Laya.SoundM...

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

288. SVG渐变精灵的扩展脚本继承了多个精灵, 在safari环境下重叠了渲染 [ 78%]

...                    break;             }             if (this.style === style.DEFAULT) {                 this.color1Size = 20;                 this.color1 = DEFAULT_COLOR_1;                 this.color2Size = 40;                 this.color2 = DEFA...

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

289. Layabox web 复制一段文字到剪贴板 [ 78%]

...r _this = this;  this.AppConfirm = document.getElementById("AppConfirm"); if (this.AppConfirm == null) { this.AppConfirm = document.createElement("div"); document.body.appendChild(this.AppConfirm); this.AppConfirm.id = "AppConfirm"; }  this.modlueDiv = document.getElementById("modlue"); if (this.m...

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

290. 动画多层混合(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 78%]

...作的按钮监听事件中播放动作 switch (this.blendType) { case 0: if (this.motionCross) { //在当前动画状态和目标动画状态之间进行融合过渡播放 //第三个参数为layerIndex 层索引使用混合模式,混合了0层和1层的动画 this.animator.crossFade(this.motions...

来源: Laya2.0_文档 发布时间: 20210715