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

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

161. 滤镜-颜色滤镜 [ 65%]

...pe.y = secondChild.y; } function createApe() { var ape = new Sprite(); ape.loadImage("../../res/apes/monkey2.png"); Laya.stage.addChild(ape); return ape; } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import ColorFilter = Laya.ColorFilter; import Texture = Laya.Texture;...

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

162. 缓动-时间线 [ 65%]

... this.target = new Sprite(); Laya.stage.addChild(this.target); this.target.loadImage("res/apes/monkey2.png"); this.target.pivot(55, 72); this.target.pos(100,100); } createTimerLine() { const TimeLine = Laya.TimeLine, Event = Laya.Event; this.timeLine = new TimeLine(); // addLabel(label:String, offse...

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

163. putimagedata 不起作用 [ 65%]

...imageData, 0, 0, 0, 0, 400, 400) } function showApe() { // 方法1:使用loadImage var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); // 方法2:使用drawTexture Laya.loader.load("../../res/apes/monkey2.png", Handler.create(this, function() { var t = ...

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

164. 画出来鼠标轨迹线 [ 65%]

...获得遮罩层 //给两个老婆穿上衣服,并出现在舞台上 img1.loadImage("bg.jpg"); img2.loadImage("bg.jpg"); Laya.stage.addChild(img2); Laya.stage.addChild(img1); //给两个老婆穿上衣服,并出现在舞台上 //鼠标移动时触发的mousemove事件 function mousemove(){    ...

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

165. laya.display.Animation [ 64%]

...画的播放实质就是定时切换Graphics对象。 使用set source、loadImages(...)、loadAtlas(...)、loadAnimation(...)方法可以创建动画模版。使用play(...)可以播放指定动画。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefin...

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

166. 滤镜-发光滤镜 [ 64%]

...yFilter(); } private createApe(): void { this.ape = new Sprite(); this.ape.loadImage(this.apePath); var texture: Texture = Laya.loader.getRes(this.apePath); this.ape.x = (Laya.stage.width - texture.width) / 2; this.ape.y = (Laya.stage.height - texture.height) / 2; Laya.stage.addChild(this.ape); } pr...

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

167. 将字节数组转为图片 [ 64%]

...            var sp:Sprite = new Sprite();             sp.loadImage(url);             addChild(sp);             sp.pos(100, 200);             trace("url=" + url);//blob:file%3A///1c4effc4-4022-4ab5-8feb-e39ff76b7410             trace(sp.width);//0...

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

168. 小游戏启用版本管理本地资源加载报错解决方案 [ 63%]

...pe==="image" || type==="htmlimage" || type==="nativeimage")return [b]this._loadImage(url);[/b] 改为: if (type==="image" || type==="htmlimage" || type==="nativeimage")return [b]this._loadImage(this._url);[/b] 再修改bin/libs/laya.wxmini.js文件的下面几处即可。 1. 大约793行 if(MiniAd...

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

169. 飞机大战js源码中判断语句问题 [ 63%]

...(box); //创建背景1 bg1 = new Sprite(); //加载并显示背景图1 bg1.loadImage("res/background.png"); //把背景1添加到容器 box box.addChild(bg1); //创建背景2 bg2 = new Sprite(); //加载并显示背景图2 bg2.loadImage("res/background.png"); //设置背景图2的坐标 bg2.pos(0, -...

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

170. 没有预加载的图片怎么获取width和height ? [ 63%]

...交 2 个回复 浪货界扛把子 赞同来自: cuixueying 给精灵设置loadimage后不能直接获取它的大小;   问题:是不是只有加载完图片在能真正获取他的width和height?   本人当前解决方法:提前加载资源,在回调中进行操作设置 text_load_wid...

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