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

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

321. 物理Bodies绑定Laya.Sprite [ 50%]

...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

322. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 49%]

...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

323. Panel初始化BUG [ 49%]

...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

324. html固定宽高,设置垂直居中没有效果。只有水平居中才生效。看了下源码,感觉在updatePos函数里的算法不对 [ 45%]

...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

325. 富文本过程中我遇到的问题以及解决方法(超链接换行以及无法接收超链接鼠标事件以及br或者 标签会崩溃报错的问题) [ 45%]

...itRect {         constructor() {             this.rec = new Laya.Rectangle();             this.isMouseOver = false;             this.reset();         }         reset() {             this.rec.reset();             this.href = null;             this.isMou...

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

326. laya.display.Graphics_API3.0 [ 45%]

...色 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

327. laya.ani.GraphicsAni_API3.0 [ 43%]

...色 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

328. 3D中摄像机绕物体旋转该如何实现? [ 43%]

...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

329. 官方案例里摄像机绕物体旋转脚本的问题 [ 42%]

...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

330. runTime使用(ActionScript-IDE篇(AS3)-组件化开发相关) [ 42%]

... { 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