大约有 1,691 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0068 秒)
Laya_社区(1357) Laya3.0_api(107) laya_api(68) Laya2.0_api(68) Laya2.0_文档(65) Laya3.0_文档(13) Laya_示例(8) Laya2.0_示例(5)
... SHADERDEFINE_ADDTIVEFOG : int[static] TrailMaterial SHADERDEFINE_MAINTEXTURE : int[static] TrailMaterial SHADERDEFINE_TILINGOFFSET : int[static] TrailMaterial texture : BaseTexture 获取贴图。 TrailMaterial tilingOffset : Vector4 获取纹理平铺和偏移。 TrailMaterial tili...
来源: Laya2.0_api 发布时间: 20190513
... SHADERDEFINE_ADDTIVEFOG : int[static] EffectMaterial SHADERDEFINE_MAINTEXTURE : int[static] EffectMaterial SHADERDEFINE_TILINGOFFSET : int[static] EffectMaterial texture : BaseTexture 获取贴图。 EffectMaterial tilingOffset : Vector4 获取纹理平铺和偏移。 EffectMaterial ...
来源: Laya2.0_api 发布时间: 20190513
...var planeMat:Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, function(tex:Laya.Texture2D) { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Laya.Vector4(10, 10, 0, ...
来源: Laya2.0_文档 发布时间: 20210715
...//新建材质 var planeMat:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/threeDimen/Physics/grass.png", Handler.create(null, function(tex:Texture2D):void { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Vector4(10, 10, 0, 0); //设...
来源: Laya2.0_文档 发布时间: 20210714
...,谢谢了var spr:laya.display.Sprite = new laya.display.Sprite(); spr.texture = tx; Laya.stage.addChild(spr); spr.x = 300; spr.y = 100; var color:Array = ; color.push( 0, 0, 0, 0, 255, 0, 0, 0, 0, 255, 0, 0, 0, 0, 255, 0, 0, 0, 1, 0); var filter:ColorFilter = new ColorFilter(color); spr.filters =...
来源: Laya_社区 发布时间: 20170825
...手动刷新。 注意: 1.Sprite tag : * 对象的标签。 Component texture : Texture设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite tick : Number 滑动的刻度值,滑动数值为...
来源: laya_api 发布时间: 20170929
...T ROTATION SHADERDEFINE_ADDTIVEFOG SHADERDEFINE_ALPHATEST SHADERDEFINE_MAINTEXTURE TEXTURE TEXTURE_HDR_PARAMS TINTCOLOR Accessors MaterialDefine MaterialProperty _defineDatas alphaTest alphaTestValue blend blendDst blendDstAlpha blendDstRGB blendEquation blendEquationAlpha blendEquationRGB blendSrc ...
来源: Laya3.0_api 发布时间: 20231115
...自动更新缓存,只能通过调用reCache方法手动刷新。Sprite texture : Texture设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。等同于graphics.clear();graphics.drawTexture()Sprite timer : Timer时间控制器,默认为Laya.time...
来源: laya_api 发布时间: 20170422
...laya.d3.math.Vector3; import laya.d3.math.Vector4; import laya.d3.resource.Texture2D; import laya.d3.resource.TextureCube; import laya.d3.resource.models.BaseMesh; import laya.d3.resource.models.Mesh; import laya.display.Stage; import laya.events.Event; import laya.resource.Texture; import laya.util...
来源: Laya_示例 发布时间: 20241118
...tandardMaterial(); material.diffuseTexture = Texture2D.load("res/test4.png"); sphere.meshRender.material = material; test4.png是一张1024*512的图,我想提高贴图的清晰度 有人说可以通canvas缩放来实现 具体怎么做? 不用Textu...
来源: Laya_社区 发布时间: 20180601