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

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

271. 加载的时候动画会卡 [ 69%]

...ont.json",type:Loader.ATLAS});         Laya.loader.load(imgArr,Handler.create(this,onAssetLoaded),Handler.create(this,onProgress,null,false));     }   (function() {     function Lload() {         Lload.__super.call(this);         this.dh();         this.btn.on(Event.MOUSE_DOWN,g...

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

272. UNITY导出的模型旋转不了 [ 69%]

... Laya.Stat.show(); Laya.Scene3D.load('/1/res/SampleScene.ls', Laya.Handler.create(null, function(scene1){ let scene = Laya.stage.addChild(scene1); Laya.Sprite3D.load("/1/res/SampleScene.lh", Laya.Handler.create(null, function(sp) { //let obj = sp; let obj = scene.addChild(sp); obj.transform.scale = ...

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

273. 设置遮罩(JavaScript-LayaAir基础篇(JS)-位图) [ 69%]

...过回调方法绘制图片并添加到舞台 Laya.loader.load(Res,Handler.create(this,graphicsImg)); })(); function graphicsImg() { img = new Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台 Laya.stage.addChild(img); } })()...

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

274. 发射射线检测不到,物体有包围盒 [ 69%]

... Laya.Scene3D.load("res/LayaScene_game/Conventional/game.ls",Laya.Handler.create(null,function(scene3d){             // HelperApp.a = scene3d;             //加载完成获取到了Scene3d             scene3d.name = 'good';             self.owner.addChild(scene3d);       ...

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

275. 请问怎么制作一个layabox js版本的加载效果 [ 69%]

...ya.loader.load(["./comp/progress.png", "./comp/progress$bar.png"], Handler.create(this, onLoadComplete)); } console.log(1); Laya.class(Loadings,"Loadings",_super); function onLoadComplete() { progressBar = new ProgressBar("./comp/progress.png"); progressBar.width = 400; progressBar.x = (Laya.stage.w...

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

276. 材质动画的使用(ActionScript-3D基础(AS3)-LayaAir3D之Animator动画) [ 69%]

...window下Animation打开动画编辑界面,快捷键Ctrl+6。 2、点击create按钮创建动画并取名,本例中取名使用的默认名字New Animation,保存后在资源管理器中会生成动画文件New Animation。 3、选择时间轴上时间,修改材质的漫反射颜色,重复...

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

277. 预加载2D骨骼动画(Skeleton) [ 69%]

...写的。。。 Laya.loader.load("res/Dragon/Dragon.sk",Handler.create(this,onLoaded),null,Loader.BUFFER); geo • 2018-06-22 22:56 @Monica:一定要指定Loader.BUFFER吗?

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

278. 请问怎么监听在IDE中创建的UI中资源的加载进度呢 [ 68%]

...面的配置文件:Laya.loader.load(['res/atlas/game.json'],Laya.Handler.create(this,Slot.onSourcesLoaded), Laya.Handler.create(this,Slot.onSourcesLoading,null,false),Laya.Loader.ATLAS);这样写似乎监听的当前加载进度不太对,我总共有6张未打包图和1张打包图 打印的结...

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

279. [0]laya-zip让你的游戏加载速度提升350%!! [ 68%]

...ntion, only resource files in the level-1 directory are loaded Laya.loader.create([{ url: "xx.zip", type:"ZIP"}]) [/size][/code] 如果只需要加载zip包中的部分资源,或者资源路径在多级目录下。可以在constructParams中进行配置,来加载指定文件资源。[size=14][co...

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

280. 解析JSON格式的数据 [ 68%]

...son/ENDLESS_TABLE.json"; var strJson=Laya.loader.load(fileURL,Handler.create(this,readJsonFinish),null,Loader.JSON); function readJsonFinish() { console.log(strJson); var contact = JSON.parse(strJson); } } cuixueying • 2016-07-26 11:13 Laya.loader.load是预加载JSON字符串,并非是获...

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