大约有 108 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0035 秒)
...法为虚方法,使用时重写覆盖即可 Script3D onTriggerEnter(other:PhysicsComponent):void 开始触发时执行 此方法为虚方法,使用时重写覆盖即可 Script3D onTriggerExit(other:PhysicsComponent):void 结束触发时执行 此方法为虚方法,使用时重写覆盖...
来源: Laya2.0_api 发布时间: 20190513
...方法为虚方法,使用时重写覆盖即可 Script onTriggerEnter(other:*, self:*, contact:*):void 开始碰撞时执行 此方法为虚方法,使用时重写覆盖即可 Script onTriggerExit(other:*, self:*, contact:*):void 结束碰撞时执行 此方法为虚方法,使用时重写...
来源: Laya2.0_api 发布时间: 20190513
...* 注:如相对移动速度过快,可能直接越过 */ onTriggerEnter(other) { this.owner.meshRenderer.sharedMaterial.albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞器后逐帧触发(子弹在物品内时) * 注:如相对移动速度...
来源: Laya2.0_文档 发布时间: 20210715
...后,和其它刚体碰撞后不能修改角度和位置 onTriggerEnter(other,self,contact) { var n=this.owner.rotation; if(other.label === "heng"){ console.log("角度"+this.owner.rotation); this.owner.rot...
来源: Laya_社区 发布时间: 20200817
...onent(Laya.RigidBody); rig.setVelocity({ x: 0, y: -10 }); } onTriggerEnter(other: any, self: any, contact: any): void { //如果被碰到,则移除子弹 this.owner.removeSelf(); } onUpdate(): void { //如果子弹超出屏幕,则移除子弹 if ((this.owner as Laya.Sprite).y < -10) { this.ow...
来源: Laya3.0_文档 发布时间: 20241014
...如何删除3D场景,3D场景玩家 上面的代码: onCollisionEnter(other){ if(other.other.owner.name==="end"){ // this.owner.parent.removeSelf(); //删除自身场景 console.log(this.owner.parent) console.log(this.owner.parent.parent); //创建胜利的UI界面 let victoryScene=new VictorySc...
来源: Laya_社区 发布时间: 20190903
...如相对移动速度过快,可能直接越过 */ public onTriggerEnter(other:Laya.PhysicsComponent):void { ((this.owner as Laya.MeshSprite3D).meshRenderer.sharedMaterial as BlinnPhongMaterial).albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞...
来源: Laya2.0_文档 发布时间: 20210715
2.0TS3D物体碰撞,如何获取双方包围盒 onTriggerStay(other: Laya.PhysicsComponent): void { console.log("box2_onTriggerStay " + this.owner.name + " "+ other.owner.name); let b1:Laya.BoundBox = this.box.meshRenderer.boundingBox; let box2:Laya.MeshSprite3D = other.owner as Laya.MeshSprite3D...
来源: Laya_社区 发布时间: 20181116
...度过快,可能直接越过 */ override public function onTriggerEnter(other:PhysicsComponent):void { ((owner as MeshSprite3D).meshRenderer.sharedMaterial as BlinnPhongMaterial).albedoColor = new Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞器后逐帧触发(...
来源: Laya2.0_文档 发布时间: 20210714
...多个不同rigBody做距离关系绑定 代码片段: onTriggerEnter(other: any, self: any, contact: any) { let pointes = contact.getHitInfo().points; let potSelf = new Laya.Point(pointes[0].x, pointes[0].y); let potOther = new Laya.Point(pointes[0].x, pointes[0].y); self.owner.globalToLoca...
来源: Laya_社区 发布时间: 20190609