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

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

441. 从网络上下载的BMP图片二进制数据后,如何赋值给 laya.ui.Image [ 49%]

...如何赋值给 laya.ui.Image      // 下载图片资源 1.bmp     _proto.MyHttpGet = function()      {         var url = "http://192.168.8.35:80/singer/1.bmp";         var req = new laya.net.HttpRequest();         req.on(laya.events.Event.COMPLETE, this, cb_onSuccess);       ...

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

442. Texture引用计数不为0的时候执行销毁纹理destroy方法后再加载这个资源会导致重复加载 [ 49%]

...致重复加载     /**     *销毁纹理。     */     __proto.destroy=function(force){         (force===void 0)&& (force=false);         if (!this._destroyed){             this._destroyed=true;             var bit=this._bitmap;    ...

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

443. AS项目怎么使用类成员变量 [ 48%]

...复 Monica - 知识达人 赞同来自: ljy328803417 作用域的问题,ProtoBuf.load执行之后当前作用域变成了window,所以你需要绑定下作用域。onAssetsLoaded.bind(this) 2017-09-27 1 4 分享 微博 QZONE 微信 Monica - 知识达人 赞同来自: 你AS中是怎么写的? 2...

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

444. laya升级到2.0.0beat4版本,加载场景出现的bug [ 48%]

...常: TypeError: node._setParent is not a function preload.js:55 at Stage.__proto.addChild (file:///E:/H5Project/TestH5Project/TestFeiChe3D/bin/libs/laya.core.js:13235:9) 2018-10-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...

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

445. 字距的调整问题 [ 48%]

...幕尺寸:例如在看库文件内,引入的laya.core里有方法 __proto.setScreenSize=function(screenWidth,screenHeight) 这是你调用了Laya.stage.screenMode=XXXXX之后 他就会在这里调用这个方法,然后适配屏幕。你会发现在某些 机型内 this.designWidth 、与 th...

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

446. unity导出的ls和lh文件发布到微信小程序,用微信开发者工具打开报错 [ 48%]

...ite3D,please use other function to load this file." 跟了一下,发现__proto.onAsynLoaded这个function接收的参数data在layaIDE中被正确解析为json数组,而在微信开发者工具中为字符串,data[0]="{" 导致出错。望尽快解决,不然没法用 2018-02-22 添加评论 ...

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

447. 如何隐藏tiledMap中指定的GridSprite? [ 48%]

...。但是试了之后发现无效。 查看getDrawSprite的源代码: __proto.getDrawSprite=function(gridX,gridY){ var tSprite=new GridSprite(); tSprite.relativeX=gridX *this._map.gridWidth; tSprite.relativeY=gridY *this._map.gridHeight; tSprite.initData(this._map); this._gridSpriteArray.push(tSpr...

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

448. 我看到这段话后,我 [ 48%]

...,size:14},checkbox2:{selected:true,x:10}};     */     __getset(0,__proto,'dataSource',function(){         return this._dataSource;         },function(value){         this._dataSource=value;         for (var prop in this._dataSource){             if...

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

449. 开启CastShadow以后,模型会莫名其妙消失,物体渲染队列的_IndexInList会被破坏 [ 48%]

...remove写坏了_indexInList 在CastShadowList中要重写_remove     __proto._remove=function(index){         this.length--;         if (index!==this.length){             var end=this.elements[this.length];             this.elements[index]=end;      ...

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

450. 关于Dialog的closeHandler问题 [ 48%]

...下! 2017-08-07 0 1 分享 微博 QZONE 微信 果丶酱 赞同来自: __proto.open=function(dialog,closeOther){ (closeOther===void 0)&& (closeOther=false); if (closeOther)this.removeChildren(); if (dialog.popupCenter)this._centerDialog(dialog); this.addChild(dialog); if (dialog.isModal ||...

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