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

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

201. LayaFlash如何使用chrome调试问题? [ 53%]

...答(最新版本:1.7.16) TS项目使用matter.js库无智能提示 sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale LayaAirIDE下如何使用mask? 游戏运行在chrome里面 听不见声音 编译调试启动chrome出现错误: Error processing launch: Error Coul...

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

202. AS项目怎么使用类成员变量 [ 53%]

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

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

203. 视频节点 · LayaAir3.0文档 · LAYABOX [ 53%]

...lass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { let video = new Laya.VideoNode; //添加到舞台 Laya.stage....

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

204. 如何隐藏tiledMap中指定的GridSprite? [ 53%]

...图片溢出的部分隐藏掉;就是类似overFlow:hidden tiledmap Bug Sprite3d如何正确隐藏? list容器隐藏scrollBar的问题 请问 在LayaAir中怎么显示和隐藏文字? 问题状态 最新活动: 2016-12-28 20:45 浏览: 1552 关注: 2 人 xiaobear250 • 2016-12-29 11:38 谢谢...

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

205. 怎么使用一个方块绘制一个6x6的六边形呢 [ 53%]

...tyPlugin 使用须知-版本更新-问题解答(最新版本:1.7.16) sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale LayaAirIDE下如何使用mask? 使用3D时候,Property 'getComponentByType' does not exist on type 'Node'. 微信小游戏:HTMLDivElement的...

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

206. 关于自定义组件使用方式 [ 52%]

...运行时 找不到类的定义!这是为什么? 已上传 Demo 附件 sprite3d怎样使用Laya.Tween.to来做缓动呢?比如position或者scale TS项目使用matter.js库无智能提示 微信小游戏如何使用ttf字体? 微信小游戏:HTMLDivElement的使用 LayaAirIDE下如何使...

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

207. timer.loop帧率高于物理帧率移动父级导致子物体本地坐标异常 [ 51%]

...(!this.cubeP){             this.cubeP = this.scene.addChild(new Laya.Sprite3D());             this.cube = this.cubeP.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1)));             let rigidbody = this.cube.addComponent(Laya.Rigidbody3D);             rigid...

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

208. 基础文本 · LayaAir3.0文档 · LAYABOX [ 51%]

...lass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Text }) txt: Laya.Text; constructor() { super(); } onAwake(): void { this.txt.text = "第{n=1}页"; //显示文本的初始化内容 } onStart(): void { let page: number = 1; Laya.timer.frameL...

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

209. 3D中摄像机绕物体旋转该如何实现? [ 50%]

...sform: Transform3D; onStart(): void { this.transform = (this.owner as Laya.Sprite3D).transform; this.CurrentAngles = new Vector3(-this.transform.rotationEuler.x, this.transform.rotationEuler.y, 0); this.targetAngles = new Vector3(-this.transform.rotationEuler.x, this.transform.rotationEuler.y, 0); t...

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

210. 多摄像机窗口的使用(JavaScript-3D基础(JS)-LayaAir3D之Camera) [ 50%]

...tionLight = scene.addChild(new Laya.DirectionLight()); //加载模型 Laya.Sprite3D.load("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(null, function(sp){ //将模型加到场景上 var layaMonkey = scene.addChild(sp); })) ``` 编译运行上述代码,运行效果如图6...

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