大约有 165 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0037 秒)
...3( -15, 0, 0), true, false); var layaMonkey = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh"));class Sprite3DLoad { constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; var ...
来源: Laya_示例 发布时间: 20241118
...= new Laya.Vector3(0, -1.0, -1.0); var grid = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/staticModel/grid/plane.lh")); var layaMonkey = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh")); layaMonkey.once(Laya.Event.HIERARCHY_LOADED, this, funct...
来源: Laya_示例 发布时间: 20241118
...3d更换模型和贴图的方法 meshSprite3D.meshFilter.sharedMesh = Mesh.load 2018-04-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 w1114367261 赞同来自: https://ldc.layabox.com/doc/?nav=zh-as-4-0-6 2018...
来源: Laya_社区 发布时间: 20180412
...回复问题请先登录 发起人 shiyang 相关问题 分享:LayaAir下Loading进度条的制作(ActionScript 3.0) 两个对象new了一个相同的对象,调用第一个的一个方法,走进了第二方法里 分享:自定义事件派发与侦听(A页面派发 B页面侦听) 分...
来源: Laya_社区 发布时间: 20190923
关于材质问题 mesh.once(Laya.Event.LOADED, null, function () { var material = meshSprite.meshRender.sharedMaterials[0]; material.albedo = new Laya.Vector4(0.0,0.0,0.0,0.0); material.renderMode = Laya.BaseMaterial.RENDERMODE_OPAQUEDOUBLEFACE; material.reflectTexture = textureCube; }); 为什么...
来源: Laya_社区 发布时间: 20161215
...sprite 跟graphics.drawTexture 有什么区别 var downScoreTexture = Laya.loader.getRes("img/game/kc/score.png"); var _downScore = new Sprite(); _downScore.pos(150,130); _downScore.graphics.drawTexture(downScoreTexture); touPane.addChild(_downScore); 这个东西,跟 直接new sprite 然后loadim...
来源: Laya_社区 发布时间: 20170811
Sprite的loadImage和Image的skin的区别 手上做的项目涉及的资源会很多, 所以打算一些资源只有用到的时候在加载并且不缓存,但发现如果用Sprite的loadImage加载过的资源通过 通过Laya.loader.getRes可以获取到 说明被缓存了,但用Image的sk...
来源: Laya_社区 发布时间: 20191120
...noramicMaterial = new SkyPanoramicMaterial(); Texture2D.load("res/jfb.jpg", Handler.create(null, function (tex: Texture2D) { material.panoramicTexture = tex; skymat.material = material; })); 2020-03-19 0 0 ...
来源: Laya_社区 发布时间: 20200319
...SKY; var skyBox = new Laya.SkyBox(); skyBox.textureCube = Laya.TextureCube.load("../../res/threeDimen/skyBox/skyBox2/skyCube.ltc"); camera2.sky = skyBox; var directionLight = scene.addChild(new Laya.DirectionLight()); var layaMonkey = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/skinModel...
来源: Laya_示例 发布时间: 20241118
...预加载纹理资源 let resource: string = "resources/layabox.png"; Laya.loader.load(resource).then(() => { //为材质加载纹理 let tex = Laya.Loader.getTexture2D(resource); //设置贴图 boxMaterial.albedoTexture = tex; }); boxRender.sharedMaterial = boxMaterial; 运行时效果如下: ...
来源: Laya3.0_文档 发布时间: 20241014