using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Collider_Class : MonoBehaviour {
// 用于Collider类的测试
public GameObject OneBullet;
Transform Father;
void Start ()
{
Father = GameObject.FindGameObjectWithTag("Player").transform;
}
void Update ()
{
if (Input.GetKeyDown(KeyCode.F))
{
GameObject NewBullet = GameObject.Instantiate<GameObject>(OneBullet, Father);
NewBullet.transform.GetComponent<Rigidbody>().AddForce(NewBullet.transform.forward * 2000,ForceMode.Force);//增加力
NewBullet.name = "Monster";
Destroy(NewBullet,5f);//摧毁
}
}
#region// 触发器的三个事件
// 进入触发范围会调用一次
void OnTriggerEnter(Collider other)
{
Debug.Log("有人进入触发区,名字是:"+ other.transform.gameObject.name);
}
// 当持续在触发范围内发生时调用
void OnTriggerStay(Collider other)
{
Debug.Log("怪兽持续在触发区,名字是" + other.transform.gameObject.name);
}
// 离开触发范围会调用一次
void OnTriggerExit(Collider other)
{
Debug.Log("怪兽离开触发区,名字是" + other.transform.gameObject.name);
}
#endregion
#region //碰撞相关的三个方法
// 碰撞开始会调用一次
void OnCollisionEnter(Collision other)
{
Debug.Log("进入碰撞区,碰撞到的物体叫:"+ other.transform.gameObject);
other.transform.GetComponent<Rigidbody>().AddTorque(new Vector3(0,10,0),ForceMode.Impulse);//让他旋转起来
}
// 当碰撞持续发生时调用
void OnCollisionStay(Collision other)
{
//检测和谁发生碰撞
if (string.Equals("Monster", other.gameObject.name))//如果名字匹配
{
print("怪兽撞击我们的隔离墙");
}
Debug.Log("持续碰撞,碰撞到的物体叫:" + other.transform.gameObject);
}
// 碰撞结束会调用一次
void OnCollisionExit(Collision other)
{
Debug.Log("离开碰撞,离开碰撞的物体叫:" + other.transform.gameObject);
}
#endregion
}
Unity 触发检测与碰撞检测的示例
Leoysq2023-10-15 16:24
相关推荐
玖玥拾3 小时前
Unity3D RPG 入门项目(四)背包拖拽、物品悬浮提示、项目开发思维xcLeigh7 小时前
Unity基础:Start与Update方法——Unity脚本生命周期初探郝学胜-神的一滴9 小时前
[简化版 GAMES 104] 现代游戏引擎 05:游戏引擎世界构建核心机制深度解析松树戈1 天前
godot项目【宝石捕手】04~添加音效、记分LONGZETECH1 天前
无人机实训高成本痛点解法:虚拟仿真实现 70% 耗材损耗下降五仁烧饼2 天前
Unity Addressables 静默资源策略ue星空2 天前
【Godot】更换编辑器外观主题fanfan_hongyun2 天前
unity 与cad 坐标系映射神码编程2 天前
【Unity】 HTFramework框架(七十)MultiChoiceDropdown可多选的下拉菜单ue星空2 天前
Godot 2D像素游戏移动抖动、模糊问题解决方案