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

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

231. 文档教程设置遮罩的导入出错 [ 76%]

...emo.ts,编码如下: module laya { import Loader = Laya.Loader; import Handler= Laya.Handler; import maskDemoUI = ui.maskDemoUI;这里 import maskDemoUI = ui.maskDemoUI;报错 [ts] Property 'maskDemoUI' does not exist on type 'typeof ui'. [ts] Namespace 'laya.ui' has no exported member 'maskDemo...

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

232. 显存优化:纹理压缩的使用(TypeScript-2D进阶篇(TS)-性能优化) [ 75%]

...ndroid) { //注意这里的加载 Laya.loader.load("res/layabox.ktx", Laya.Handler.create(null, function (tex: Laya.Texture2D) { material.albedoTexture = tex; })); } else { //注意这里的加载 Laya.Texture2D.load("res/layabox.jpg", Laya.Handler.create(null, function (tex: Laya.Texture2D) { mater...

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

233. LayaNative 2.8.0 加载的TTF字体不生效,附复现工程。 [ 75%]

...答。           Laya.loader.load("fonts/OPPOSANS-H.ttf", Laya.Handler.create(this, (success) => {             console.log("2.8.0 字体加载是否成功:", success);             Laya.Text.defaultFont = "OPPOSANS-H";         }), null, Laya.Loade...

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

234. TS setExternalLinkEx問題 [ 75%]

...Laya.WebGL; import Stage = Laya.Stage; import Button = Laya.Button; import Handler = Laya.Handler; import Loader = Laya.Loader; import Event = Laya.Event; import Browser = Laya.Browser; export class GameMain{   constructor() {  Browser.window.conch && Browser.window.conch.showAssistantTouc...

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

235. 分享个资源加载的方法,类似白鹭的加载方式 [ 75%]

...n(srcName: string,caller: any){ Laya.loader.load("res/" + srcName,new Laya.Handler(caller,function(arg: any){ if(arg){ RES.groups = arg.groups; RES.resources = arg.resources; RES.getInstance().event(RES.ONLOADEDRESJSON,arg); }else{ RES.getInstance().event(RES.ONLOADERRORRESJSON,arg); } })) } /** * g...

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

236. TimeLineUI不存在的问题 [ 75%]

...执行onLoaded回调方法 Laya.loader.load("res/atlas/apes.atlas", Laya.Handler.create(this, onLoaded)); function onLoaded() { //创建一个UI实例 var plan = new ui.TimeLineUI(); //添加到舞台 Laya.stage.addChild(plan); //播放UI场景中的动画 plan.crashed.play(); }运行时发现ui变...

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

237. LayaNative端使用.ttf字体 [ 75%]

...Text; import laya.net.Loader; import laya.utils.Browser; import laya.utils.Handler; public class Test { public function Test() { Laya.init(550,400); Laya.stage.bgColor="#EEFFCC"; Laya.loader.load("hu.ttf",Handler.create(this,onLoaded),null,Loader.BUFFER); } private function onLoaded():void { var arr...

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

238. 【简单跑酷--JS版】---Lv.2 类之间的引用以及背景滚动实现 [ 75%]

...aya.loader.load(["res/background.png", "res/m_background.png"], laya.utils.Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); //加载进度 function onLoading(progress){ console.log("onLoading: " + progress); } //加载完毕 function onLoaded(){ console.log("...

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

239. Unity插件与LAYAAIR加载的天空盒子BUG与修改方法 [ 75%]

...nProcessChange(loader,0,ltcWeight,1.0);             var processHandler=Handler.create(null,Laya3D._onProcessChange,[loader,ltcWeight,6 / 7],false);             Laya3D._innerFourthLevelLoaderManager.load(urls,Handler.create(null,Laya3D._onTextureCubeImagesLoaded,[loader,urls,p...

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

240. 音频-播放演示 [ 75%]

...放音效"); Laya.SoundManager.playSound("res/sounds/btn.mp3", 1, new Laya.Handler(this, this.onComplete)); } // 播放音乐 onPlayMusic() { console.log("播放音乐"); Laya.SoundManager.playMusic("res/sounds/bgm.mp3", 1, new Laya.Handler(this, this.onComplete)); } onComplete() { console.log("播...

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