大约有 22 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0023 秒)
...* 注:如相对移动速度过快,可能直接越过 */ onTriggerEnter(other) { this.owner.meshRenderer.sharedMaterial.albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞器后逐帧触发(子弹在物品内时) * 注:如相对移动速度...
来源: Laya2.0_文档 发布时间: 20210715
...如相对移动速度过快,可能直接越过 */ 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
...度过快,可能直接越过 */ 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
...执行一次 */ onStart() {} /** * 开始触发时执行 */ onTriggerEnter(other) {} /** * 持续触发时执行 */ onTriggerStay(other) {} /** * 结束触发时执行 */ onTriggerExit(other) {} /** * 开始碰撞时执行 */ onCollisionEnter(collision) {} /** * 持续碰撞时执行 */ onCollisionS...
来源: Laya2.0_文档 发布时间: 20210714
...lic onStart():void {} /** * 开始触发时执行 */ public onTriggerEnter(other:Laya.PhysicsComponent):void {} /** * 持续触发时执行 */ public onTriggerStay(other:Laya.PhysicsComponent):void {} /** * 结束触发时执行 */ public onTriggerExit(other:Laya.PhysicsComponent):void {} /** * 开...
来源: Laya2.0_文档 发布时间: 20210715
... {} /** * 开始触发时执行 */ public override function onTriggerEnter(other:PhysicsComponent):void {} /** * 持续触发时执行 */ public override function onTriggerStay(other:PhysicsComponent):void {} /** * 结束触发时执行 */ public override function onTriggerExit(other:PhysicsComponen...
来源: Laya2.0_文档 发布时间: 20210715
... * 此方法为虚方法,使用时重写覆盖即可 */ onTriggerEnter(other) { console.log("triggerEnter"); } /** * 持续触发时执行 * 此方法为虚方法,使用时重写覆盖即可 */ onTriggerStay(other) { console.log("triggerStay"); } /** * 结束触发时执行 * 此方法为虚方...
来源: Laya2.0_文档 发布时间: 20210715
... * 此方法为虚方法,使用时重写覆盖即可 */ onTriggerEnter(other: PhysicsComponent): void { console.log("triggerEnter"); } /** * 持续触发时执行 * 此方法为虚方法,使用时重写覆盖即可 */ onTriggerStay(other: PhysicsComponent): void { console.log("triggerStay"); } /...
来源: Laya2.0_文档 发布时间: 20210714
...ctions 1. Source - Skybox - Custom 2. Resolution 3. Intensity Multiplier - Other Settings 1. Fog - Color - Mode 1. Linear - Density
来源: Laya2.0_文档 发布时间: 20200822
... 使用Unity设置场景雾化 在Lighting灯光渲染设置中找到 `Other Setting` ![](img/1.png)(图1) 首先勾选雾化属性,然后调整雾化的颜色。 ![](img/2.gif)(图2) 设置完之后就可以拉近或者拉远摄像头查看效果了。如效果图3所示: ![](img/3.gif)...
来源: Laya2.0_文档 发布时间: 20210714