大约有 187 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0054 秒)
...; //创建EffectMaterial材质 var material = new Laya.EffectMaterial(); //加载地球贴图 Laya.Texture2D.load("res/threeDimen/texture/earth.png", Laya.Handler.create(this, function(texture) { //设置纹理 material.texture = texture; })); earth.meshRenderer.material = material; ``` ![](img/1.gi...
来源: Laya2.0_文档 发布时间: 20210714
...展名是`.ls`。在LayaAir引擎中,需要用Scene类或它的继承类加载。 ##### 预设`Sprite3D ` Sprite3D选项,是指的Unity中的预设导出,中文语言版本这里显示的就是预设,由于该项导出后需要以LayaAir引擎的Sprite3D类来加载,所以英文语言版...
来源: Laya2.0_文档 发布时间: 20210714
...layaAirIDE2 ,跟着官网敲hello world 例子,为什么不显示? 加载到舞台的3D模型不显示贴图 有什么容器能够实现当子元素达到显示上限后自动滚屏,使得新添加的元素始终保持在最底部显示? 从unity导出的场景透贴和模型烘焙的灯...
来源: Laya_社区 发布时间: 20180305
...id 克隆。 BaseMaterial load(url:String, complete:Handler):void[static] 加载材质。 BaseMaterial setShaderName(name:String):void 设置使用Shader名字。 BaseMaterialProtected Methods Show Inherited Protected Methods Show Inherited Protected Methods MethodDefined By _disposeResource():v...
来源: Laya2.0_api 发布时间: 20190513
...id 克隆。 BaseMaterial load(url:String, complete:Handler):void[static] 加载材质。 BaseMaterial setShaderName(name:String):void 设置使用Shader名字。 BaseMaterialProtected Methods Show Inherited Protected Methods Show Inherited Protected Methods MethodDefined By _disposeResource():v...
来源: Laya2.0_api 发布时间: 20190513
...-版本更新-问题解答(最新版本:1.7.16) IDE1.7.8 json图集加载问题 关于适配采用showAll后留白部分的颜色问题 关于shader中opengl函数问题 IDE创建的UI 层级问题 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组...
来源: Laya_社区 发布时间: 20180410
... 微博 QZONE 微信 fool_tiger 赞同来自: 我用base64数据的方法加载的贴图在华为平板上色彩失真是为什么呢? 2018-06-06 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 fool_tiger 相关问题 微信关系链:...
来源: Laya_社区 发布时间: 20180605
...id 克隆。 BaseMaterial load(url:String, complete:Handler):void[static] 加载材质。 BaseMaterial setShaderName(name:String):void 设置使用Shader名字。 BaseMaterialProtected Methods Show Inherited Protected Methods Show Inherited Protected Methods MethodDefined By _disposeResource():v...
来源: Laya2.0_api 发布时间: 20190513
...EffectMaterial材质 var material:EffectMaterial = new EffectMaterial(); //加载地球贴图 Texture2D.load("res/threeDimen/texture/earth.png", Handler.create(this, function(texture:Texture2D):void { //设置纹理 material.texture = texture; })); earth.meshRenderer.material = material; ``` ![](img...
来源: Laya2.0_文档 发布时间: 20210715
...//设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载多张图片,在图片资源加载成功后,通过回调方法绘制图片并添加到舞台 Laya.loader.load([this.monkey1,this.monkey2],Laya.Handler.create(this,this.graphicsImg)); } private graphicsImg():v...
来源: Laya_社区 发布时间: 20180226