大约有 845 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0054 秒)
Laya_社区(561) Laya2.0_文档(110) Laya3.0_api(79) Laya3.0_文档(61) Laya_示例(31) Laya2.0_api(2) laya_api(1)
...ender (file:///C:/LayaPro/LayaAnimator/bin/libs/laya.d3.js:16444:20) at Scene3D.__proto._renderScene (file:///C:/LayaPro/LayaAnimator/bin/libs/laya.d3.js:34333:124) at Camera.__proto.render (file:///C:/LayaPro/LayaAnimator/bin/libs/laya.d3.js:44132:9) at Scene3D.__proto.renderSubmit (file:/...
来源: Laya_社区 发布时间: 20190809
...次 AutoPlay 运行时,是否自动播放 1.3 脚本控制SoundNode 在Scene2D的属性设置面板中,增加一个自定义组件脚本。然后,将SoundNode拖入到其暴露的属性入口中。下面给出一个示例代码,实现脚本控制SoundNode: const { regClass, property } = La...
来源: Laya3.0_文档 发布时间: 20241014
...缘也有衰减现象。 ```typescript //聚光灯 this.spotLight = this.scene.addChild(new Laya.SpotLight()); //设置聚光灯颜色 this.spotLight.color = new Laya.Vector3(1, 1, 0); //设置聚光灯位置 this.spotLight.transform.position = new Laya.Vector3(0.0, 1.2, 0.0); //设置聚光灯方...
来源: Laya2.0_文档 发布时间: 20210715
...家名称 */ private txtName:Laya.Text; //场景的相机 public otherGameScene:Laya.Camera; private _outPos:Laya.Vector3 = new Laya.Vector3(); this.txtName = new Laya.Text(); this.txtName.color = "#FFFFFF"; this.txtName.text = this.playerName; this.txtName.fontSize = 18; this.txtName.font = "Arial"...
来源: Laya_社区 发布时间: 20171010
...就会出现,而sp1离摄像机比sp更远缺不影响。 var camera = (scene.addChild(new Laya.Camera(0, 0.1, 550))); camera.transform.translate(new Laya.Vector3(250, 1, 0)); var rotation = new Laya.Quaternion; Laya.Quaternion.lookAt(camera.position, new Laya.Vector3(0, 0, 0), camera.up, rotation...
来源: Laya_社区 发布时间: 20170504
...era.viewportPointToRay(this.point,ray); //拿到射线碰撞的物体 this.scene.physicsSimulation.rayCast(this.ray,this.outHitResult); //如果碰撞到物体 if (this.outHitResult.succeeded) { //删除碰撞到的物体 this.text.text = "碰撞到了" + this.outHitResult.collider.owner.name ; cons...
来源: Laya2.0_文档 发布时间: 20210715
...era.viewportPointToRay(this.point,ray); //拿到射线碰撞的物体 this.scene.physicsSimulation.rayCast(this.ray,this.outHitResult); //如果碰撞到物体 if (this.outHitResult.succeeded) { //删除碰撞到的物体 this.text.text = "碰撞到了" + this.outHitResult.collider.owner.name ; cons...
来源: Laya2.0_文档 发布时间: 20210715
...不是外部的this指向出了问题。 推荐用匿名函数外部 Laya.Scene3D.load("...", Laya.Handler.create(this,myscene=>{ //ToDo })) 2019-10-21 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 念 相关问题 两个对象n...
来源: Laya_社区 发布时间: 20191021
...Adpter] already exist: Object {init: } 升级Laya2.2.0报Class constructor Scene cannot be invoked without 'new'解决办法 Uncaught TypeError: Class constructor Component cannot be invoked without 'new' ClassUtils.getClass获取不到Class Uncaught 无法实例class PhysicsCollider extends Physics...
来源: Laya_社区 发布时间: 20180925
...,您这边有什么建议吗? 初学者 • 2023-05-17 10:02 如果用Scene做,那么打开场景的时候,是不是就不能用open的方法,可是不用open方法的话能用addchild吗? 初学者 • 2023-05-17 10:26 如果想要监听屏幕旋转,需要怎么写呢 layabox小高 ...
来源: Laya_社区 发布时间: 20230516