大约有 61 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0028 秒)
...nTriggerEnter, export default class BulletControlTrigger extends Laya.Script3D { constructor(){ super(); } /** * 开始触发时执行 * 此方法为虚方法,使用时重写覆盖即可 */ onTriggerEnter(other){ console.log("onTriggerEnter"); }; onTriggerStay(other){ console.log("onTrigg...
来源: Laya_社区 发布时间: 20191215
...E 微信 苏栢 赞同来自: 给摄像机一个单独的脚本跟随吧 Script3d 的update 和平常的update好像不是一个 2019-03-25 0 1 分享 微博 QZONE 微信 CodeFarmer 赞同来自: 这里看吧 2021-03-31 0 0 分享 微博 QZONE 微信 CodeFarmer 赞同来自: 看图找d3.js 20...
来源: Laya_社区 发布时间: 20190318
...光脚本 ```typescript export default class LightMoveScript extends Laya.Script3D { //需要操作的光源数组 public lights = []; //光源对应的位置偏移数组 public offsets = []; //光源对应的移动半径数组 public moveRanges = []; public onUpdate(){ var seed = Laya.timer.currTim...
来源: Laya2.0_文档 发布时间: 20210715
...光脚本 ```typescript export default class LightMoveScript extends Laya.Script3D { //需要操作的光源数组 public lights = []; //光源对应的位置偏移数组 public offsets = []; //光源对应的移动半径数组 public moveRanges = []; public onUpdate(){ var seed = Laya.timer.currTim...
来源: Laya2.0_文档 发布时间: 20210715
...7.1 射线提示rayCast未定义 export default class click3d extends Laya.Script3D{ constructor() { super(); //创建场景 this.scene = Laya.stage.addChild(new Laya.Scene3D()); //添加相机 this.camera = (this.scene.addChild(new Laya.Camera(0, 0.1, 100))); this.camera.transform.translate(new Lay...
来源: Laya_社区 发布时间: 20200801
...alse,false); //}); })); })); })(this); class BoxControlScript extends Laya.Script3D { constructor() { super(); this.obj = null; this.rotation = new Laya.Vector3(0, 1, 0); } /** * 覆写3D对象组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAw...
来源: Laya_社区 发布时间: 20200611
...讲解: > 移动灯光脚本 ```typescript class LightMoveScript extends Script3D { //需要操作的光源数组 public var lights: Array = []; //光源对应的位置偏移数组 public var offsets: Array = []; //光源对应的移动半径数组 public var moveRanges: Array = []; public functio...
来源: Laya2.0_文档 发布时间: 20210714
...再把CANNON.Body包装成组件 export class CannonRigidbody extends Laya.Script3D { static map: { [key: number]: Laya.Sprite3D } = {}; body: CANNON.Body; t: Laya.Transform3D; public onCollisionCB: (s: Laya.Sprite3D) => void; public ignoreRotate: boolean = false; ...OnAwake里面创建CANNON.Bod...
来源: Laya_社区 发布时间: 20200217
...取到觖发信息了 export default class PlayerController extends Laya.Script3D 2020-07-29 0 0 分享 微博 QZONE 微信 不懂就问 赞同来自: isKinematic=true,这个为true是没有碰撞检测的 2020-07-29 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题...
来源: Laya_社区 发布时间: 20200728
...器发出的事件,开发者可以在触发器物体上添加的脚本(Script3D)监听。监听的方法如图1所示: ![](img/1.png)(图1) 碰撞器也是会派发事件的。监听方法如下图2: ![](img/2.png)(图2) 下面我们来看下具体如何使用这些接口,本次代码节...
来源: Laya2.0_文档 发布时间: 20210715