我是使用Unity的新手,我尝试使用精灵作为碰撞触发器。 但我的OnTriggerEnter2d不会触发。 以下是信息:
附加到主角
的newPlatformRow脚本的代码using UnityEngine;
using System.Collections;
public class NewPlatformRow : MonoBehaviour {
private float leftPlatformX = -12f; //de unde incepe platforma din stanga
private float rightPlatformX = 3.123f; // de unde incepe platforma din dreapta
private float rowDistance = -5f; //distanta dintre randurile de platforme
private float leftPlatformWidth; //acestea vor fi calculate random pt fiecare rand nou
private float rightPlatformWidth;
// Use this for initialization
void Start ()
{
//Debug.Log("why wont you work ;_;");
}
// Update is called once per frame
void Update () {
//Debug.Log("why wont you work ;_;");
}
void OnTriggerEnter2d(Collider2D other)
{
Debug.Log("why wont you work ;_;");
if (other.gameObject.CompareTag("newPlatformRow"))
{
Vector3 newLeftPlaformPosition;
Vector3 newRightPlaformPosition;
var leftPlatform = GameObject.Find("LeftWallPlatform");
var rightPlatform = GameObject.Find("RightWallPlatform");
newLeftPlaformPosition = new Vector3(leftPlatform.transform.position.x, leftPlatform.transform.position.y + rowDistance, leftPlatform.transform.position.z);
newRightPlaformPosition = new Vector3(rightPlatform.transform.position.x, rightPlatform.transform.position.y + rowDistance, rightPlatform.transform.position.z);
Transform leftPlatformTransform = leftPlatform.transform;
Transform rightPlatformTransform = rightPlatform.transform;
Transform newLeftPlatform = Instantiate(leftPlatformTransform, newLeftPlaformPosition, leftPlatformTransform.rotation) as Transform;
Transform newRightPlatform = Instantiate(rightPlatformTransform, newLeftPlaformPosition, rightPlatformTransform.rotation) as Transform;
newLeftPlatform.parent = leftPlatformTransform.parent;
newRightPlatform.parent = rightPlatformTransform.parent;
}
}
}
不是:Debug.Log("why wont you work ;_;");
它从未被称为
我真的无法弄清楚我做错了什么。 感谢
答案 0 :(得分:4)
您似乎拼错了void OnTriggerEnter2d(Collider2D other)
。
它应该是OnTriggerEnter2D
。请注意,此处有资本 D 。像OnMouseDown()
这样的触发器和碰撞器的所有名称都以相同的方式工作 - 它们必须具有完全相同的名称,区分大小写。
答案 1 :(得分:0)
您没有在物料组件中检查isTrigger复选框。