您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
657 B
21 行
657 B
using UnityEngine;
|
|
|
|
public class SoccerBallController : MonoBehaviour
|
|
{
|
|
[HideInInspector]
|
|
public SoccerFieldArea area;
|
|
public string purpleGoalTag; //will be used to check if collided with purple goal
|
|
public string blueGoalTag; //will be used to check if collided with blue goal
|
|
|
|
void OnCollisionEnter(Collision col)
|
|
{
|
|
if (col.gameObject.CompareTag(purpleGoalTag)) //ball touched purple goal
|
|
{
|
|
area.GoalTouched(AgentSoccer.Team.Blue);
|
|
}
|
|
if (col.gameObject.CompareTag(blueGoalTag)) //ball touched blue goal
|
|
{
|
|
area.GoalTouched(AgentSoccer.Team.Purple);
|
|
}
|
|
}
|
|
}
|