大约有 373 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
Laya_社区(156) Laya3.0_api(70) Laya2.0_api(62) laya_api(59) Laya_示例(9) Laya2.0_文档(8) Laya2.0_示例(7) Laya3.0_文档(2)
...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
...aya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 设置容器的autoSize为true。 var sp=new Laya.Sprite(); sp.auto...
来源: Laya3.0_文档 发布时间: 20241014
...map.viewPortY; } var t: any = new Laya.Rectangle(0, 0, this.width, this.height); if (this.x + t.width / 2 < 0 || this.x - t.width / 2 > Laya.Browser.width || this.y < 0 || this.y - t.height > Laya.Browser.height) { ...
来源: Laya_社区 发布时间: 20161109