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

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

61. 显示与切换图片(TypeScript-LayaAir基础篇(TS)-位图) [ 76%]

...ER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#ffffff"; Laya.loader.load([this.texture1, this.texture2], Handler.create(this, this.onAssetsLoaded)); } private onAssetsLoaded(): void { this.ape = new Sprite(); Laya.stage.addChild(this.ape); this.ape.pivot(55, 72); this.ape.pos(100,50); ...

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

62. 鼠标交互-拖动 [ 76%]

...e = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Stat.show(); Laya.loader.load(ApePath, Handler.create(this, this.setup)); } setup() { this.createApe(); this.showDragRegion(); } createApe() { const Sprite = Laya.Sprite, Event = Laya.Event; this.ape = new Sprite(); this.ape.loadImage(ApePath)...

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

63. 寻路系统(ActionScript-3D基础(AS3)-LayaAir3D之高级应用) [ 76%]

...前面摄影机,猴子精灵相关操作忽略 var heightMap:Texture2D = Loader.getRes("res/threeDimen/scene/TerrainScene/Assets/HeightMap.png") as Texture2D; //初始化MeshTerrainSprite3D terrainSprite = MeshTerrainSprite3D.createFromMeshAndHeightMap(meshSprite3D.meshFilter.sharedMesh as Mesh, h...

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

64. 新人求教!!! [ 75%]

...成功后,通过回调方法绘制图片并添加到舞台      Laya.loader.load([this.monkey1,this.monkey2],Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():void{    //创建一个实例    this.img = new Laya.Sprite();    //添加到舞台    Laya.stage.addChild(th...

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

65. Laya2.0版本linkSprite3DToAvatarNode无法正常使用了,因为新插件导出的动画没有avatar文件了,导致挂载不上 [ 75%]

...,可在GameUI.ts 41行下断点调试进入查看。   var actor = Laya.Loader.getRes("res/LayaScene_Actor/Conventional/XiaoHongMao.lh") as Laya.Sprite3D; var weapon = Laya.Loader.getRes("res/LayaScene_Item/Conventional/Wchangzhang01.lh") as Laya.Sprite3D; var animCtl = actor.getComponent(Laya.An...

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

66. [0]laya-zip让你的游戏加载速度提升350%!! [ 75%]

...y convention, only resource files in the level-1 directory are loaded Laya.loader.create([{ url: "xx.zip", type:"ZIP"}]) [/size][/code] 如果只需要加载zip包中的部分资源,或者资源路径在多级目录下。可以在constructParams中进行配置,来加载指定文件资源。[size...

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

67. 3D资源释放不干净 [ 75%]

...in.as里import miniadapter然后加载远程资源 就会无限加载 Laya.loader.getRes的声音资源如何用Laya.SoundManager播放? 调用Laya.loader.load()方法加载资源,怎么获取所加载的资源大小. 2.0正式版本使用Unity导出的资源加载出错? 问题状态 最新...

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

68. 寻路系统(TypeScript-3D基础(TS)-LayaAir3D之高级应用) [ 75%]

........前面摄影机,猴子精灵相关操作忽略 var heightMap = Laya.Loader.getRes("res/threeDimen/scene/TerrainScene/Assets/HeightMap.png"); //初始化MeshTerrainSprite3D this.terrainSprite = MeshTerrainSprite3D.createFromMeshAndHeightMap(meshSprite3D.meshFilter.sharedMesh as Mesh, heightMap...

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

69. texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 [ 74%]

..., 0); box.transform.rotate(new Laya.Vector3(90, 0, 0), false, false); Laya.loader.load(this.AllPng,new Laya.Handler(this,this.onCallBack),null,Laya.Loader.BUFFER); Laya.stage.on(Laya.Event.KEY_DOWN,this,this.onKey); //######################################################################## } private...

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

70. 分享个资源加载的方法,类似白鹭的加载方式 [ 74%]

...ing = "onLoadedResJson"; // 资源配置文件加载出错 public static ONLOADERRORRESJSON: string = "onLoadError"; // 资源组加载完成 public static ONLOADGROUPCOMPLETE: string = "onLoadGroupConplete"; // 资源组加载出错 public static ONLOADGROUPERROR: string = "onLoadGroupError"; priva...

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