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

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

741. 单选框组组件 · LayaAir3.0文档 · LAYABOX [ 62%]

...创建完毕,此方法只执行一次 onAwake(): void { this.skins = ["resources/res/ui/radioButton (1).png", "resources/res/ui/radioButton (2).png", "resources/res/ui/radioButton (3).png"]; Laya.loader.load(this.skins).then(() => { this.onLoadComplete(); }); } private onLoadComplete(e: any = n...

来源: Laya3.0_文档 发布时间: 20241014

742. 1.70beta Dialog增加动画后第二次执行popup不显示弹窗 [ 62%]

...de = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; assets = ["../../res/ui/dialog (1).png", "../../res/ui/close.png"]; Laya.loader.load(assets, Handler.create(this, onSkinLoadComplete)); })(); function onSkinLoadComplete() { var dialog = new Dialog(); var bg = new Image(assets[0]); dialog.add...

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

743. 3D阴影无法渲染出来 [ 62%]

...ght.shadow = true; directionLight.shadowDistance = 3; directionLight.shadowResolution = 2048; directionLight.shadowPSSMCount = 1; directionLight.shawowPCFType = 3; box.meshRender.receiveShadow = true; sphere.meshRender.castShadow = true; box 和 sphere 都是 Sprite3D 的,贴了2D贴图,为啥...

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

744. 多线程worker(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 62%]

...stener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` ​ 这个例子是在worker中进行...

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

745. 正交相机要怎么控制啊,坐标什么的全部懵!看了这个官方示例表示不懂,为什么还要转化为2D坐标? [ 62%]

....Stage.SCREEN_NONE; var dialog = Laya.stage.addChild(new Laya.Image("../../res/threeDimen/texture/earth.png")); var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 1000)); camera.transform.rotate(new Laya.Vector3(-90, 0, 0), false, false); //-30改...

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

746. laya2.x 图集的资源版本管理问题 [ 61%]

...不存在 https://3dparking-1256769450.cos.ap-shanghai.myqcloud.com/test/res/atlas/main.png   2019-06-13 0 12 分享 微博 QZONE 微信 kylin 赞同来自: 目前来看,即使加了版本管理,引用云上资源仍然引用的无版本号的资源。现在的问题是即使是无版本管理...

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

747. 小游戏发布工具与小游戏目录介绍(TypeScript-小游戏适配文档-微信小游戏) [ 61%]

...自己使用的库,尤其是第三方库,进行手工复制。 #### `res`资源目录 res是默认的资源目录,小游戏由于初始包的限制,建议将初始包的内容在规划好,最好能放到统一的目录下,便于初始包的剥离。 该文件会将js合并成一个JS ###...

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

748. 启动画面LoadingView · LayaAir3.0文档 · LAYABOX [ 61%]

... Android: 工程目录下的assets/scripts/config.js IOS:工程目录下的resources/scripts/config.js config.js中的内容如下所示,开发者可以根据自己的需求进行修改: window.loadingView = new loadingView(); if(window.loadingView) { window.loadingView.loadingAutoClose=true;//t...

来源: Laya3.0_文档 发布时间: 20241024

749. 二进制图片(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 61%]

...如下: ```JavaScript var xhr = new XMLHttpRequest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload...

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

750. 关于微信小游戏加载 ls和lh资源文件被认为是string而不是json对象问题 [ 61%]

...e3D  (2.0 插件导出的 lh) 文件 加载成功后,用 Laya.loader.getRes() 获取 let sprite3D: Laya.Sprite3D = Laya.loader.getRes(resName) as Laya.Sprite3D; 调试发现 获取到的 对象居然是 string 类型,而不是 Sprinte3D 对象   相同的代码 在 LayaAir IDE v.1.7.22 中建 ...

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