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

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

331. 区块地图-PerspectiveWall [ 77%]

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

来源: Laya_示例 发布时间: 20241118

332. UI-Image [ 77%]

...his.setup(); } setup() { const Image = Laya.Image; let dialog = new Image("res/ui/dialog (3).png"); Laya.stage.addChild(dialog); dialog.pos(165, 62.5); } } new UI_Image();module laya { import Stage = Laya.Stage; import Image = Laya.Image; import WebGL = Laya.WebGL; export class UI_Image { constructo...

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

333. 其他引擎的Demo-Example_23 [ 77%]

...232628"; Stat.show(); // create a background texture Laya.stage.loadImage("res/pixi/laserBG.jpg"); Laya.stage.frameLoop(1, this, this.animate); } animate() { const Sprite = Laya.Sprite, Point = Laya.Point; let laser; if (tick > frequency) { tick = 0; // iterate through the dudes and update the posit...

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

334. 关于微信小游戏缓存问题 求大佬们指教 [ 77%]

...信提供了50M的缓存区域  在开发者工具下看到目录是usr/res  而项目的资源目录是 game/res 问题来了 请教下 如何让包体尽量达到4M后多出来的资源进行缓存 如3D资源 目前发现的问题是 引擎的loader方法无法访问usr目录  除非修改 Lay...

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

335. 引擎示例中的新手引导自己写了一次,不知道为什么无法实现点击。 [ 77%]

...function() { var guideSteps = [ { x: 151, y: 575, radius: 150, tip: "../../res/guide/help6.png", tipx: 200, tipy: 250 }, { x: 883, y: 620, radius: 100, tip: "../../res/guide/help4.png", tipx: 730, tipy: 380 }, { x: 1128, y: 583, radius: 110, tip: "../../res/guide/help3.png", tipx: 900, tipy: 300 } ]...

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

336. 微信小游戏怎么加载本地的配置文件 [ 77%]

...置文件?在laya是可以 public initConfig(){ this.configAsset=[ {url:"res/config/playerCard.json",type:laya.net.Loader.TEXT} ]; Laya.loader.load(this.configAsset,Handler.create(this,this.loadConfigCallBack)) } public loadConfigCallBack(str:boolean){ if(str){ var config; config=laya.net.Loader.g...

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

337. laya接入fairyGUI的时候资源加载方式? [ 77%]

...fairyGUI的时候资源加载方式?     Laya.loader.load([{ url: "res/Basics_atlas0.png", type: laya.net.Loader.IMAGE },     { url: "res/Basics.fui", type: laya.net.Loader.BUFFER }, { url: "res/MainMenu_atlas0.png", type: laya.net.Loader.IMAGE },     { url: "res/MainMenu.fui", type: l...

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

338. 【简单跑酷--JS版】---Lv.2 类之间的引用以及背景滚动实现 [ 77%]

... Background.js 将我们需要的素材放到项目目录下面bin -> res RunGame.js是我们游戏的入口类  //后面会提到具体的作用 Background,js 是我们的背景类     //=======================  美丽的分割线 ========================   加载图片并且测试图片是...

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

339. Laya同时加载图片和引用图片的资源时会报错 [ 77%]

...           Laya.loader.create([             { url: "res/Sword 10 Blue Gold.lmat", type: Laya.Loader.MATERIAL},             { url: "res/Sword 10 Blue Gold.jpg", type: Laya.Loader.IMAGE}         ]); 附件 : --> Test.zip 2022-01-07 添加评论 ...

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

340. 微信小游戏分包实战(ActionScript-小游戏适配文档-微信小游戏) [ 77%]

...age({ name: 'stage1', // name 可以填 name 或者 root success: function(res) { // 分包加载成功后通过 success 回调 }, fail: function(res) { // 分包加载失败通过 fail 回调 } }) ``` 加载成功的同时,wx.loadSubpackage 会返回一个 [LoadSubpackageTask](https://developers....

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