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

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

1. drawToCanvas无法截取到有子元素。 [ 100%]

...xture = new Laya.Texture(htmlCanvas); const sp = new Sprite(); sp.graphics.drawTexture(texture); this.shot.addChild(sp);对,是可以的。当时drawToCanvas的第一个参数设置小了,没看到后面的元素。 这里还有一个问题: const sp1 = new Laya.Image(); sp1.skin = 'bet/cheer_...

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

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

...物的位置 this.bg.y = -32; this.addChild(this.bg); } this.bg.graphics.drawTexture(this.bgTexture, 0, 0, 960, 96); //创建一个帧循环处理函数 Laya.timer.frameLoop(1, this, this.onLoop); } //在地板上面添加物品 _proto.addItem = function(){ } //获取当前地板上面的所有物...

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

3. 纹理平铺怎么做 [ 81%]

... jacksing888 相关问题 Graphics.cmds切换纹理做动画 图片通过drawTexture平铺出现缝隙 tiledMap api 纹理索引值及TileSetId的含义? clearTextureRes无法恢复(另文本纹理释放有bug,经常出现文本渲染混乱) 纹理截取后内存释放不了 希望加入类似...

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

4. 【简单跑酷--JS版】---Lv.6 终篇 [ 58%]

...this.bar = new Sprite(); this.bar.x = 15; this.bar.y = 2; this.bg.graphics.drawTexture(texture1, 0, 0, 180, 21); this.bar.graphics.drawTexture(texture2, 0, 0, 155, 12); this.addChild(this.bg); this.addChild(this.bar); } /** * 修改当前状态 */ _proto.changeValue = function(value){ this.value += ...

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

5. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 49%]

...补一个 this.rightBg = new laya.display.Sprite(); this.rightBg.graphics.drawTexture(laya.resource.Texture.createFromTexture(this.bgTexture,32*29,0,32,96), 0, 0, 32, 96); this.rightBg.width = 32; this.addChild(this.rightBg); } switch(type){ case 1: this.rightBg.visible = false; this.bg.graphics.dra...

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