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

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

291. 资源加载清除问题 [ 72%]

....create(this, onLoadCom)); 加载成功一个纹理后,用一个Sprite  graphics.drawTexture(e); 在加载成功方法里面写Loader.clearRes(mapBit, true); 会立刻清掉了纹理,Sprite上面也没有了。 如果在加载成功后加一个延时1秒,调用Loader.clearRes就清理不掉...

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

292. 请问更新遮罩的最优方式 [ 72%]

...变化   _mask.size(_barImage.width * _percent, _barImage.height); _mask.graphics.clear(); _mask.graphics.drawRect(0, 0, _mask.width, _mask.height, "#FF0000");                      _barImage.mask = null; _barImage.mask = _mask;   试过需要置mask为null,然后再设置一次,...

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

293. DOM元素-视频 [ 72%]

...d(reference); reference.pos(100, 100); reference.size(600, 400); reference.graphics.drawRect(0, 0, reference.width, reference.height, "#CCCCCC"); // 每次舞台尺寸变更时,都会调用Utils.fitDOMElementInArea设置Video的位置,对齐的位置和refence重合 Laya.stage.on(Laya.Event.RESI...

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

294. 纹理截取后内存释放不了 [ 72%]

...(_url); for (var i:int = 0; i < list1["oriBDPos"].length; i++ ) { var g:Graphics = new Graphics(); var t:Texture = Texture.createFromTexture(tex, posObj.x, posObj.y, posObj.w, posObj.h); g.drawTexture(t, 0, 0); oriDBArr[i] = g; } private function onClear():void { console.log(Laya.loader.getRes(...

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

295. 在2.0中如何将Browser.createElement('canvas')转为可用的Texture [ 72%]

...ya.stage.height;     ctx = canvas.getContext('2d');     Laya.stage.graphics.clear(false);//清空绘制命令。     var textture = new Laya.Texture(canvas);     textture.bitmap.alwaysChange = true;//小游戏使用,非常费,每帧刷新     Laya.stage.graphics.drawTexture(t...

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

296. 这样写的代码,Tween动画里面只有alpha有效果,scalex和scaley没有变化,怎么回事啊? [ 72%]

...,怎么回事啊? var sprite:Laya.Sprite = new Laya.Sprite(); sprite.graphics.drawCircle(0, 0, 250, null, "#ff0000", 4); sprite.graphics.drawCircle(0, 0, 350, null, "#ff0000", 4); sprite.pivotX = sprite.width * 0.5; sprite.pivotY = sprite.height * 0.5; sprite.x = this.width * 0.5; sprite.y = thi...

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

297. 通过循环加载图片问题 [ 71%]

...一个可视对象然后通过addChild方法添加到sprite里,不想用graphics.drawTexture方法,因为那种方法在获得sprite的高度和宽度方面有点问题 2016-10-27 0 0 分享 微博 QZONE 微信 cuixueying 赞同来自: 1、如何在Loaded回调下添加dialog,你可以通过...

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

298. 微信小游戏截图问题 [ 71%]

...vas.height, destWidth: canvas.width, destHeight: canvas.height }) this.ctx.graphics.loadImage(wxhtmlC, 0, 0,this.ctx.width,this.ctx.height); 然后用drawTextture,很多问题都是有这个,可以带到下面那些东西怎么转成图片呢? var htmlC = Laya.stage.drawToTexture(Laya.stage.wi...

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

299. 鼠标交互-自定义事件 [ 71%]

...28"; createSprite(); })(); function createSprite() { sp = new Sprite(); sp.graphics.drawRect(0, 0, 200, 200, "#D2691E"); sp.pivot(100, 100); sp.x = Laya.stage.width / 2; sp.y = Laya.stage.height / 2; sp.size(200, 200); Laya.stage.addChild(sp); sp.on(ROTATE, this, onRotate); // 侦听自定义的事...

来源: Laya_示例 发布时间: 20241118

300. Sprite生成的mask对Sprite作用时显示不正确 [ 71%]

...题   let miniMap = new Laya.Sprite(); miniMap.autoSize = true; miniMap.graphics.drawRect(0,0,100,100, '#000000'); let mapMask = new Laya.Sprite(); mapMask.autoSize = true; mapMask.graphics.drawRect(0,0,miniMap.width,miniMap.height, '#ff0000'); miniMap.mask = mapMask; Laya.stage.addChild(miniMap) 2...

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