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

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

371. laya.core.js报错:value._addReference is not a function [ 70%]

...ght (in promise) TypeError: value._addReference is not a function     at Texture.<anonymous> (laya.core.js:15911)     at Texture.__proto._onLoaded (laya.core.js:15752)     at EventHandler.__proto.runWith (laya.core.js:1410)     at ResInfo.__proto.event (laya.core.js:1166)     at Load...

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

372. laya.ui.FrameClip [ 70%]

...自动更新缓存,只能通过调用reCache方法手动刷新。Sprite texture : Texture设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.time...

来源: laya_api 发布时间: 20170422

373. laya.spine.js问题以及spine.core.js问题 [ 70%]

...tus   }, (state, responseText) => { this.errors[path] = `Couldn't load texture atlas ${path}: status ${status}, ${responseText}`; if (error) error(path, `Couldn't load texture atlas ${path}: status ${status}, ${responseText}`); this.toLoad--; this.loaded++; }); 附件 : --> 2022-01-22 添加评...

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

374. drawToCanvas的问题 [ 70%]

...); sp.graphics.drawPie(128,128,128,0,angle,"0xff0000"); var tex = sp.drawToTexture(256,256,0,0); //var html:Laya.HTMLCanvas = sp.drawToCanvas(256,256,0,0); //img.loadImageSource(html.source,true); //html.clear(); //html.destroy(); mat.albedoTexture.destroy(); // 先删除旧的 mat.albedoTexture = t...

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

375. laya.ani.bone.Skeleton [ 70%]

...rite  templet : Templet[read-only] 得到动画模板的引用 Skeleton texture : Texture 设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。 等同于graphics.clear();graphics.drawImage(),但性能更高 还可以赋值一个图片地址,...

来源: Laya2.0_api 发布时间: 20190513

376. timer无法执行 [ 70%]

...ball1mat: Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial();   Laya.Texture2D.load("res/layabox.png", Laya.Handler.create(null, function(layabox: Laya.Texture2D): void{ ball1mat.albedoTexture = layabox; })); //ball1mat.tilingOffset = new Laya.Vector4(10, 10, 0, 0); ball1.meshRenderer.material...

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

377. 3d的纹理无法释放 [ 69%]

3d的纹理无法释放 如图,3d纹理类型是texture2d,不能执行disposebitmap方法 另外,官方给出的   var resouce = Laya.loader.getRes(resourceName); if(resouce) resouce.destroy(); 方法也无法释放内存,亲测,native上,系统内存会不断增长,直到崩溃,...

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

378. 【简单跑酷--JS版】---Lv.3 添加地板 [ 69%]

...nction(){ /** * 地板类 */ function Floor(){ //背景贴图纹理 this.bgTexture = null; //背景 this.bg = null; Floor.__super.call(this); } //Floor 是一个显示对象 继承此 Sprite Laya.class(Floor, "Floor", laya.display.Sprite); var _proto = Floor.prototype; _proto.init = function(){ //...

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

379. Spine的播放出现闪烁 [ 69%]

...致出现闪烁。 原因:spine动画模板类SpineTemplet_3_x 使用的Texture加载回来后,从新创建了一个SpineGLTexture,没有放进Loader.textureMap中管理,既textureMap中缓存起来的Texture与spine在destroyUnusedResources后没有关联了,然后spine是调用drawTri...

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

380. 图片遮罩大小跟设置不一致 [ 69%]

... (function() { var Sprite  = Laya.Sprite; var Stage   = Laya.Stage; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL   = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); ...

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