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

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

71. Sprite-遮罩-放大镜 [ 73%]

...mask maskSp = new Sprite(); maskSp.loadImage("../../res/mask.png"); maskSp.pivot(50, 50); //设置mask bg2.mask = maskSp; Laya.stage.on("mousemove", this, onMouseMove); } function onMouseMove() { bg2.x = -Laya.stage.mouseX * 2; bg2.y = -Laya.stage.mouseY * 2; maskSp.x = Laya.stage.mouseX; maskSp.y =...

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

72. 在tiledMap中使用了镜像,但是在laya里面无法显示 [ 72%]

...layaair里就是ScaleX跟ScaleY为负值,同时你要设置下对象的pivot值,要不一翻转就出去! 2016-12-24 0 0 分享 微博 QZONE 微信 qq_小P孩/拥抱 赞同来自:     tiledmap.rar Demo.rar 2016-12-24 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要...

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

73. 鼠标交互-自定义事件 [ 72%]

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

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

74. 刚接触laya的一系列问题 [ 72%]

...网例子做的scalebutton缩放功能,锚点在左上角,使用this.pivot(this.width/2,this.height/2);修改没效果,是方法不对还是其他原因? 根据官方例子做的按钮缩放功能在快速点击的时候,按钮会出现卡在缩小状态,代码中确实添加了MOUSE_UP...

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

75. 文本在屏幕不垂直居中 [ 72%]

...'; tx.fontSize="20"; tx.pos(Laya.stage.width /2 ,Laya.stage.height /2); tx.pivot(tx.width /2 ,tx.height / 2); tx.align="center"; tx.valign="middle"; Laya.stage.addChild(tx); } })()   2017-11-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...

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

76. 在动画编辑器里怎么设置动画的轴心点啊? [ 72%]

...单张散图的中心点,不过你可以通过程序来设置animation的pivot属性 2017-03-06 0 0 分享 微博 QZONE 微信 youhong168 赞同来自: 可是,那样的话,我在编辑器里制作旋转动画的时候,不能设置轴心点,得不到想要的旋转效果啊。比如,我...

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

77. Sprite-遮罩-放大镜 [ 72%]

...sk let maskSp = new Sprite(); maskSp.graphics.drawTexture(maskRes); maskSp.pivot(50, 50); // 设置mask bg2.mask = maskSp; Laya.stage.on(Laya.Event.MOUSE_MOVE, this, () => { bg2.x = -Laya.stage.mouseX * 2; bg2.y = -Laya.stage.mouseY * 2; maskSp.x = Laya.stage.mouseX; maskSp.y = Laya.stage.mouseY; })...

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

78. Matter和Sprite绑定后图片移位问题 [ 72%]

...        ball_skin.scale(50/120, 80/178);         ball_skin.pivot(ball_skin.width / 2, ball_skin.height / 2);         var ball = Matter.Bodies.rectangle(330, 1,50, 80, {         layaSprite: ball_skin, // 绑定一个laya的Sprite, 不能用render.sprite        ...

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

79. laya.display.Sprite.graphics对象的旋转问题 [ 72%]

... cuixueying 赞同来自: 1、设置下你graphics线条的显示对象的pivot,也就是线条的中心点 2、然后针对你的显示对象进行rotate旋转 private function createTexts():void { var sp:Sprite=new Sprite(); Laya.stage.addChild(sp); sp.graphics.drawLine(0,0,200,200,'#FF00000'); ...

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

80. Sprite-切换纹理 [ 71%]

...tr); this.ape = new Laya.Sprite(); Laya.stage.addChild(this.ape); this.ape.pivot(55, 72); this.ape.pos(Laya.stage.width / 2, Laya.stage.height / 2); this.switchTexture(); this.ape.on(Laya.Event.CLICK, this, this.switchTexture); } switchTexture() { let monkey = (this.flag = !this.flag) ? monkey1Res :...

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