大约有 472 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0053 秒)
Laya_社区(253) Laya3.0_api(61) Laya2.0_api(57) laya_api(54) Laya2.0_示例(19) Laya_示例(17) Laya3.0_文档(6) Laya2.0_文档(5)
...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
...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
...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
...网例子做的scalebutton缩放功能,锚点在左上角,使用this.pivot(this.width/2,this.height/2);修改没效果,是方法不对还是其他原因? 根据官方例子做的按钮缩放功能在快速点击的时候,按钮会出现卡在缩小状态,代码中确实添加了MOUSE_UP...
来源: Laya_社区 发布时间: 20180905
...'; 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
...单张散图的中心点,不过你可以通过程序来设置animation的pivot属性 2017-03-06 0 0 分享 微博 QZONE 微信 youhong168 赞同来自: 可是,那样的话,我在编辑器里制作旋转动画的时候,不能设置轴心点,得不到想要的旋转效果啊。比如,我...
来源: Laya_社区 发布时间: 20170306
...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
... 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
... 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
...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