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

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

121. API使用问题 [ 67%]

...答(最新版本:1.7.16) TS项目使用matter.js库无智能提示 sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale LayaAirIDE下如何使用mask? 微信小游戏如何使用ttf字体? 微信小游戏:HTMLDivElement的使用 使用3D时候,Property 'getCompo...

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

122. 抖音小游戏 · LayaAir3.0文档 · LAYABOX [ 67%]

...egClass() export class Script extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Scene3D }) scene3d: Laya.Scene3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点组件均已创建完毕,此方法只执行一次 */ onAwake(): void { //...

来源: Laya3.0_文档 发布时间: 20241014

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

...着窗口的缩放,渐变成黑色 export class Texture2dTest { private sprite3D:Laya.Sprite3D; private readonly AllPng:string[] = ["pic-001.png","output-06.png"]; private texture:Laya.Texture2D; private box; constructor(){ Laya3D.init(0, 0); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stag...

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

124. laya.d3.terrain.TerrainChunk [ 67%]

....d3.terrainClasspublic class TerrainChunkInheritanceTerrainChunk RenderableSprite3D Sprite3D Node EventDispatcher Object TerrainChunk 类用于创建地块。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By active : Boolean 获取自身是否...

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

125. 物理刚体(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 67%]

...`typescript //新建一个球体模型并添加到舞台上 var sphere:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createSphere(1))) as MeshSprite3D; //新建一个球形的碰撞盒 var sphereShape:SphereColliderShape = new SphereColliderShape(1); //给球添加刚体 var sphereRig...

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

126. 播放3Dmax导出的lrani动画问题 [ 67%]

...lmlrani文件等。 以下是代码部分(as3):   var mesh:MeshSprite3D = scene.addChild(Sprite3D.load("aim/aim-aim.lm")); rootAnimations = mesh.addComponent(RigidAnimations) as RigidAnimations; //rootAnimations.url = "aim/aim.lrani"; rootAnimations.templet = AnimationTemplet.load("aim/aim...

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

127. laya.d3.core.MeshTerrainSprite3D_API3.0 [ 67%]

...ll Inherited Externals Only exported Menu Globals "laya/d3/core/MeshTerrainSprite3D" MeshTerrainSprite3D Class MeshTerrainSprite3D TerrainMeshSprite3D 类用于地形节点转换普通mesh渲染。 Hierarchy MeshSprite3D MeshTerrainSprite3D Index Constructors constructor Properties _extra _scene _ur...

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

128. laya.d3.core.light.LightSprite [ 67%]

...ckagelaya.d3.core.lightClasspublic class LightSpriteInheritanceLightSprite Sprite3D Node EventDispatcher ObjectSubclasses DirectionLight, PointLight, SpotLight LightSprite 类用于创建灯光的父类。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyD...

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

129. as中BoxCollider引入了,但是运行的时候还是提示null [ 67%]

...信 bing8310124 赞同来自: 已解决! //仓库原型 var warehouse1:Sprite3D = scene.addChild(Sprite3D.load("model/warehouse/warehouse.lh")) as Sprite3D; warehouse1.transform.rotate(new Laya.Vector3(0, 0, 0), false, false); warehouse1.transform.translate(new Laya.Vector3(-25,0,0),false); var wa...

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

130. 碰撞检测 outHitInfo.distance 一直等于 -1 ?(TS代码) [ 67%]

...eControlScript extends Laya.Script{ /*角色模型*/ public roleModel:Laya.Sprite3D; /*角色动画组件*/ public roleAni:Laya.Animator; /*角色当前动作*/ public currentAction:string = "stand"; /*角色动画是否完成*/ public aniComplete:Boolean = true; /*角色移动速度*/ public speed:...

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