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

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

91. 点击事件面积太大 [ 76%]

...3good 1、如果你要改变go的位置,直接用pos方法,别直接在loadImage中修改 2、loadImage中的位置,是纹理logo.png相对于父级go的位置,所以虽然可见的图片不大,但是go的宽高是很大的 3、scale与width、height是相对独立互补影响的,如果...

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

92. 2.0.2使用worker加载图片的问题 [ 75%]

... Laya.loader.load加载图片时,如果使用worker加载,会调用到loadImage方法,然后执行这句话`this.worker.postMessage(url);`,然后 在worker.js中执行了这句话`onmessage=function(t){var e=t.data;switch(e.type){case"load":loadImage2(e)}};`,e=t.data,也就是上面postM...

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

93. 鼠标交互-拖动 [ 75%]

...eApe(); showDragRegion(); } function createApe() { ape = new Sprite(); ape.loadImage(ApePath); Laya.stage.addChild(ape); var texture = Laya.loader.getRes(ApePath); ape.pivot(texture.width / 2, texture.height / 2); ape.x = Laya.stage.width / 2; ape.y = Laya.stage.height / 2; ape.on(Event.MOUSE_DOWN, ...

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

94. 创建多个Sprite对象后,再次取出来的时候坐标全为0,0高宽跟创建时的也不一样 [ 75%]

...bg_" + nums; userBoxSprite.addChild(sb); userBoxSprite.addChild(sp); // sb.loadImage(newBg1, x, y, singleWidth, singleHeight); sb.skin = newBg1; sb.pos(x,y); sb.size(singleWidth, singleHeight); // sp.loadImage(imgUrl, x, y, singleWidth, singleHeight); sp.skin = imgUrl; sp.pos(x,y); sp.size(singleWid...

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

95. graphics 问题 [ 75%]

...olor = "#232628"; showApe(); })(); function showApe() { // 方法1:使用loadImage var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey2.png"); let m = new Laya.Matrix() m.skew(-0.25, 0) // ape.graphics.save() ape.graphics.transform(m) // ape.graphics.restore() le...

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

96. 鼠标交互-拖动 [ 75%]

...prite = Laya.Sprite, Event = Laya.Event; this.ape = new Sprite(); this.ape.loadImage(ApePath); Laya.stage.addChild(this.ape); let texture = Laya.loader.getRes(ApePath); this.ape.pivot(texture.width / 2, texture.height / 2); this.ape.x = Laya.stage.width / 2; this.ape.y = Laya.stage.height / 2; this....

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

97. scrollRect 改变后子对象的鼠标事件失效 [ 75%]

...失效 bg=new Laya.Sprite(); Laya.stage.addChild(bg); bg.size(800,600); bg.loadImage("aa_1.Png",0,0,800,600); poly=new Laya.Sprite(); bg.addChild(poly); poly.size(36,36); poly.pivot(18,18); poly.loadImage("SafeExitL.png",0,0,36,36); poly.pos(400,300); poly.on("mousedown", this, polyonMouseDown); bg....

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

98. 加上size设置后,精灵不能点击. [ 74%]

...img/flower1.jpg" : r > 0.33 ? "img/flower2.png" : "img/flower3.jpg" img.loadImage(s); img.on(Laya.Event.CLICK, this, () => { img.y -= 10; }) img.pos(100, 300) Laya.stage.addChild(img) } function createFlower() { var f = new Laya.Sprite(); var r = Math.random(); var s = r > 0.66 ? "img/flowe...

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

99. 3d场景下面有张2d的图片,当鼠标焦点不在该网页时,2d图片为啥会闪动 [ 74%]

...      var sprite0:Sprite = new Sprite();             sprite0.loadImage("creatRoom/background_bk.png");             sprite0.pos(0,0 );             sprite0.cacheAsBitmap = true;             Laya.stage.addChildAt(sprite0,0);                       ...

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

100. DrawPie例子中无法显示遮罩区域 [ 74%]

...olor = "#232628"; showApe(); })(); function showApe() { // 方法1:使用loadImage var p = Laya.stage.addChild(new Sprite()); var ape = new Sprite(); p.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); //创建遮罩对象 this.cMask = new Laya.Sprite(); //画一个圆形的遮罩区域 ...

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