大约有 336 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
Laya_社区(129) Laya3.0_api(69) Laya2.0_api(58) laya_api(54) Laya_示例(9) Laya2.0_文档(8) Laya2.0_示例(7) Laya3.0_文档(2)
...50); gun_skin.pivot(gun_skin.width / 2, gun_skin.height / 2); gun = Bodies.rectangle(150, 150, 50, 50, { frictionAir: 0.5, //空气摩擦力 density: 0.68, // 密度 layaSprite: gun_skin, // 绑定一个laya的Sprite, 不能用render.sprite render: { visible: true, // 开启渲染 } }); console.log(...
来源: Laya_社区 发布时间: 20180522
...aya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 1. 设置容器的autoSize为true。 ```typescript var sp=new L...
来源: Laya2.0_文档 发布时间: 20210714
...t = height; content._style.scrollRect || (content.scrollRect = Rectangle.create()); content._style.scrollRect.setTo(rectX, rectY, width, height); content.scrollRect = content.scrollRect; } 附件 : --> Bug文本.zip 2021-11-08 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20211108
...tArray){ if (!this._$P.mHtmlBounds)this._set$P("mHtmlBounds",new Rectangle()); var tRectangle=this._$P.mHtmlBounds; tRectangle.x=tRectangle.y=0; tRectangle.width=this.contextWidth=tArray[0]; tRectangle.height=this.contextHeight=tArray[1]; this.setBounds(tRectangle); //我自己添加的部...
来源: Laya_社区 发布时间: 20180104
...itRect { constructor() { this.rec = new Laya.Rectangle(); this.isMouseOver = false; this.reset(); } reset() { this.rec.reset(); this.href = null; this.isMou...
来源: Laya_社区 发布时间: 20200724
...色 Returns FillTextureCmd | null getBounds getBounds(realSize?: boolean): Rectangle Defined in laya/display/Graphics.ts:201 获取位置及宽高信息矩阵(比较耗CPU,频繁使用会造成卡顿,尽量少用)。 Parameters Default value realSize: boolean = false (可选)使用图片的...
来源: Laya3.0_api 发布时间: 20231115
...色 Returns FillTextureCmd | null getBounds getBounds(realSize?: boolean): Rectangle Inherited from Graphics.getBounds Defined in laya/display/Graphics.ts:201 获取位置及宽高信息矩阵(比较耗CPU,频繁使用会造成卡顿,尽量少用)。 Parameters Default value realSize: boolean = ...
来源: Laya3.0_api 发布时间: 20231115
...max: number) { this.min = min; this.max = max; } } /// <summary> /// Rectangle area on plane. /// </summary> class PlaneArea { /// <summary> /// Center of area. /// </summary> public center: Transform3D; /// <summary> /// Width of area. /// </summary> public width...
来源: Laya_社区 发布时间: 20170714
...max: number) { this.min = min; this.max = max; } } /// <summary> /// Rectangle area on plane. /// </summary> class PlaneArea { /// <summary> /// Center of area. /// </summary> public center: Transform3D; /// <summary> /// Width of area. /// </summary> public width...
来源: Laya_社区 发布时间: 20190224
... { import laya.display.Sprite; import laya.events.Event; import laya.maths.Rectangle; import laya.ui.Button; import laya.ui.Image; import laya.utils.Tween; /** *ImageRunTime逻辑类 * @author mengjia * */ public class ImageRunTime extends Button { //缩放时间100毫秒 public var scaleTime:int = ...
来源: Laya2.0_文档 发布时间: 20210714