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

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

181. 我浏览在线文档 关于共享材质和自身材质代码 貌似没有什么不同? [ 53%]

... Laya.loader.create("LayaScene_01/Assets/model/loveScene_jianzhu.lm",Laya.Handler.create(this,this.onCreateComplete)); //预加载完成后回调 private onCreateComplete():void { //创建预加载模型网格 var mesh:Laya.Mesh = Laya.loader.getRes("LayaScene_01/Assets/model/loveScene_jianzhu.lm...

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

182. 关于loader加载Loader.JSON一些问题 [ 53%]

...ON资源时,发现一个奇怪问题: Laya.loader.load(resUrl, Laya.Handler.create(this, function (res) { //解析题目 log(res);   //放置方块 }), null, Laya.Loader.JSON); }   代码运行到这老是报错,报错原因是有不认识字符,我想了下,resUrl指向是本...

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

183. list中item类中button注册事件不响应 是怎么回事呢 ?可以帮帮我解答下吗 [ 53%]

...一覺盜兲喨 赞同来自: 这里按钮,可以用   this.btn.clickHandler = laya.utils.Handler.create(this,this.方法,["你要传参数"],false); 2018-08-28 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Try everything___ ...

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

184. runTime使用(TypeScript-IDE篇(TS)-组件化开发相关) [ 53%]

...也不影响后续流程 Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION); } onVersionLoaded(): void { //激活大小图映射,加载小图时候,如果发现小图在大图合集里面,则优先加载大图...

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

185. TiledMap地图 · LayaAir3.0文档 · LAYABOX [ 52%]

...is.tMap.createMap("resources/TiledMap/orthogonal.json", viewRect, new Laya.Handler(this, this.completeHandler)); } //添加地图到Scene2D下 private onLoaded(): void { this.tMap.mapSprite().removeSelf(); this.owner.addChild(this.tMap.mapSprite()); } //地图加载完成回调 private completeHa...

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

186. scaleMode设为full时怎么pc浏览器跟平板上效果不一样? [ 52%]

... Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.loader.load("assets/bg.jpg", Handler.create(this, loadCompleteHandler)); } private function loadCompleteHandler():void { var bg:Image = new Image("assets/bg.jpg"); Laya.stage.addChild(bg); }这张图在三星平板上可以完整显示出来,为什么...

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

187. layaAir如何实现for循环加载多张图片,并且通过事件按比例缩小 [ 52%]

...           {                 Laya.loader.load(picAy[i],Handler.create(this, onAssetLoaded))             }         }         private function onAssetLoaded(texture:Texture):void         {             var ape:Sprite = new Sprite;          ...

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

188. 帮忙看看Texture类getPixels内存泄漏问题。 [ 51%]

... laya.resource.HTMLCanvas; import laya.resource.Texture; import laya.utils.Handler; import laya.utils.Stat; import laya.webgl.WebGL; public class Main { private var _tex:Texture; private var _htmlCanvas:HTMLCanvas; private var _colorSpr:Sprite; private var _colorTex:Texture; private var _initPixelCo...

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

189. 微信关系链:LayaAir引擎针对微信小游戏好友关系链实现方案 [ 51%]

...d { //加载引擎需要资源 Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, onLoaded)); } private function onLoad2():void { Laya.timer.once(2000, this, onLoaded); } private function onLoaded():void { //实例UI界面 //var testView:TestView = new TestView(); //Laya.stage.addChild...

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

190. ShaderPass介绍(TypeScript-3D基础(TS)-LayaAir3D之Shader) [ 51%]

...men/skinModel/LayaMonkey/Assets/LayaMonkey/LayaMonkey-LayaMonkey.lm", Laya.Handler.create(this, function(mesh) { var layaMonkey = scene.addChild(new Laya.MeshSprite3D(mesh)); layaMonkey.transform.localScale = new Laya.Vector3(0.3, 0.3, 0.3); layaMonkey.transform.rotation = new Laya.Quaternion(0.7071...

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