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

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

1. 区块地图-PerspectiveWall [ 100%]

... = new TiledMap(); this.tiledMap.createMap("res/tiledMap/perspective_walls.json", new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), null); } } new TiledMap_PerspectiveWall();module laya { import Stage = Laya.Stage; import TiledMap = Laya.TiledMap; import Rectangle = Laya.Rectangle; import Br...

来源: Laya2.0_示例 发布时间: 20241117

2. 区块地图-带动画的地图 [ 99%]

...new TiledMap(); tiledMap.createMap("res/tiledMap/orthogonal-test-movelayer.json", new Laya.Rectangle(0, 0, Laya.stage.width, Laya.stage.height), null); } } new TiledMap_AnimationTile();module laya { import Stage = Laya.Stage; import TiledMap = Laya.TiledMap; import Rectangle = Laya.Rectangle; import...

来源: Laya2.0_示例 发布时间: 20241117

3. 性能测试-卡通人物 [ 96%]

...8"; Stat.show(); Laya.loader.load("res/cartoonCharacters/cartoonCharactors.json", Handler.create(this, this.createCharacters), null, Loader.ATLAS); } createCharacters() { characterGroup = []; for(let i = 0; i = 0; --i) { this.animateCharactor(characterGroup[i]); } } animateCharactor(charactor) { cha...

来源: Laya2.0_示例 发布时间: 20241117

4. 粒子-粒子演示1 [ 94%]

...oad(partPath, Laya.Handler.create(this, this.onAssetsLoaded), null, Loader.JSON); } onAssetsLoaded(settings) { // 当load数组的时候,回调函数传入的参数不再是资源,可以通过以下方法获取资源 // let settings = Laya.loader.getRes(partPath); const Particle2D = Laya.Particl...

来源: Laya2.0_示例 发布时间: 20241117

5. 粒子-粒子演示2 [ 94%]

...oad(partPath, Laya.Handler.create(this, this.onAssetsLoaded), null, Loader.JSON); } onAssetsLoaded(settings) { // 当load数组的时候,回调函数传入的参数不再是资源,可以通过以下方法获取资源 // let settings = Laya.loader.getRes(partPath); const Particle2D = Laya.Particl...

来源: Laya2.0_示例 发布时间: 20241117

6. 粒子-粒子演示3 [ 94%]

...oad(partPath, Laya.Handler.create(this, this.onAssetsLoaded), null, Loader.JSON); } onAssetsLoaded(settings) { // 当load数组的时候,回调函数传入的参数不再是资源,可以通过以下方法获取资源 // let settings = Laya.loader.getRes(partPath); const Particle2D = Laya.Particl...

来源: Laya2.0_示例 发布时间: 20241117

7. 区块地图-等角地图 [ 86%]

...iledMap(); this.tiledMap.createMap("res/tiledMap/isometric_grass_and_water.json", new Rectangle(0, 0, Laya.stage.width, Laya.stage.height), Laya.Handler.create(this, this.mapLoaded), null, new Point(1600, 800)); } onStageClick() { let p = new Laya.Point(0, 0); // 通过屏幕坐标来获取选中格...

来源: Laya2.0_示例 发布时间: 20241117

8. 区块地图-滚动地图 [ 84%]

...候调用destory销毁地图 this.tiledMap.createMap("res/tiledMap/desert.json", new Rectangle(0, 0, Browser.width, Browser.height), new Handler(this, this.completeHandler)); } // 地图加载完成的回调 completeHandler() { Laya.stage.on(Laya.Event.RESIZE, this.resize); this.resize(); } // 鼠...

来源: Laya2.0_示例 发布时间: 20241117

9. 动画-图集动画 [ 83%]

...class Animation_Altas { private AniConfPath: string = "res/fighter/fighter.json"; constructor() { // 不支持eWebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMo...

来源: Laya2.0_示例 发布时间: 20241117

10. IDE-显示IDE创建的界面 [ 74%]

...程序入口 Laya.init(600, 400); Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void { //示例UI界面 var testUI: TestUI = new TestUI(); Laya.stage.addChild(testUI); }// TestView.as package { import game.ui.test.Te...

来源: Laya2.0_示例 发布时间: 20200319