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

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

331. 图集动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 42%]

...mport laya.display.Animation; import laya.display.Stage; import laya.maths.Rectangle; import laya.net.Loader; import laya.utils.Browser; import laya.utils.Handler; import laya.webgl.WebGL; public class HelloLayabox { private const AniConfPath:String = "../../../../res/role.atlas"; private var roleAn...

来源: Laya2.0_文档 发布时间: 20210715

332. 引擎 TiledMap 居然不支持图块翻转 [ 41%]

...          this._mapTileH = 0;             this._rect = new Laya.Rectangle();             this._paddingRect = new Laya.Rectangle();             this._mapSprite = null;             this._layerArray = [];             this._renderLayerArray = [];             this...

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

333. laya.ui.AutoBitmap_API3.0 [ 41%]

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

334. 【简单跑酷--JS版】---Lv.5 玩家踩地板 [ 41%]

... var Loader = laya.net.Loader; var Animation = laya.display.Animation; var Rectangle = laya.maths.Rectangle; var Event = laya.events.Event; var Pool = laya.utils.Pool; var Browser = laya.utils.Browser; var Stat = laya.utils.Stat; var SoundManager = laya.media.SoundManager; var Pool = laya.utils.Pool...

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

335. 2D性能优化 · LayaAir3.0文档 · LAYABOX [ 35%]

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

336. LayaAir能做RPG吗?不要问我能不能,因为我已经在做 - 杀意来袭 [ 24%]

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