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

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

191. laya.d3.core.material.BlinnPhongMaterial_API3.0 [ 76%]

...faultMaterial Accessors MaterialDefine MaterialProperty _defineDatas albedoColor albedoIntensity albedoTexture alphaTest alphaTestValue backDiffuse backScale blend blendDst blendDstAlpha blendDstRGB blendEquation blendEquationAlpha blendEquationRGB blendSrc blendSrcAlpha blendSrcRGB cpuMemory cull d...

来源: Laya3.0_api 发布时间: 20231115

192. 屏幕适配-自动横屏 [ 76%]

...= "showall"; Laya.stage.screenMode = Stage.SCREEN_HORIZONTAL; Laya.stage.bgColor = "#232628"; showText(); })(); function showText() { var text = new Text(); text.text = "Orientation-Landscape"; text.color = "gray"; text.font = "Impact"; text.fontSize = 50; text.x = Laya.stage.width - text.width >> 1...

来源: Laya_示例 发布时间: 20241118

193. 屏幕适配-自动竖屏 [ 76%]

...e = "showall"; Laya.stage.screenMode = Stage.SCREEN_VERTICAL; Laya.stage.bgColor = "#232628"; showText(); })(); function showText() { var text = new Text(); text.text = "Orientation-Portrait"; text.color = "gray"; text.font = "Impact"; text.fontSize = 50; text.x = Laya.stage.width - text.width >> 1;...

来源: Laya_示例 发布时间: 20241118

194. laya.d3.core.material.EffectMaterial_API3.0 [ 75%]

...ion blendEquationAlpha blendEquationRGB blendSrc blendSrcAlpha blendSrcRGB color cpuMemory cull depthTest depthWrite destroyed gpuMemory id materialRenderMode obsolute referenceCount renderMode shaderData stencilOp stencilRef stencilTest stencilWrite texture tilingOffset cpuMemory gpuMemory Methods ...

来源: Laya3.0_api 发布时间: 20231115

195. laya.d3.core.trail.TrailMaterial_API3.0 [ 75%]

...ion blendEquationAlpha blendEquationRGB blendSrc blendSrcAlpha blendSrcRGB color cpuMemory cull depthTest depthWrite destroyed gpuMemory id materialRenderMode obsolute referenceCount renderMode shaderData stencilOp stencilRef stencilTest stencilWrite texture tilingOffset cpuMemory gpuMemory Methods ...

来源: Laya3.0_api 发布时间: 20231115

196. laya.d3.graphics.Vertex.VertexShuriKenParticle [ 75%]

...le()VertexShuriKenParticlePublic Constants ConstantDefined By  PARTICLE_COLOR0 : int = 2[static] VertexShuriKenParticle  PARTICLE_CORNERTEXTURECOORDINATE0 : int = 0[static] VertexShuriKenParticle  PARTICLE_DIRECTIONTIME : int = 5[static] VertexShuriKenParticle  PARTICLE_ENDCOLOR0 : int = 7[...

来源: Laya2.0_api 发布时间: 20190513

197. 文本-字数限制 [ 75%]

...age.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; createInput(); })(); function createInput() { var inputText = new Input(); inputText.size(350, 100); inputText.x = Laya.stage.width - inputText.width >> 1; inputText.y = Laya.stage.height - inputText.height...

来源: Laya_示例 发布时间: 20241118

198. 麻烦帮我看下为什么这个动画为什么不能输出? [ 75%]

...出的,动画里面有控制Particle/Additive shader的属性参数Tint color,我在想是不是不支援。如果是的话,那我该怎么实现这个功能呢? 2017-12-13 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 将animation文件中 的Mesh Renderer.Material._opacity 删除...

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

199. 【Native BUG】Native下对根结点设置filter,无法更新到每个子节点,web是ok的 [ 75%]

...生效。但text在添加filter的时候仍然无效。只有手动设置color才能生效。   public static setGray(node: Laya.Node, set: boolean) {             for (var i = 0; i < node.numChildren; i++) {                 let sprite = node.getChildAt(i) as Laya.Sprite;       ...

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

200. 同一类型光源互斥的问题报告 [ 75%]

....lookAt(new Laya.Vector3(0, 0, 0), new Laya.Vector3(0, 1, 0)); camera.clearColor = new Laya.Vector3(0.3, 0.3, 0.5); camera.addComponent(CameraMoveScript); //创建点光[左下角]------------ 这个不生效,除非注释掉light2 var light1 = scene.addChild(new Laya.PointLight()); light1.transfor...

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