Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Plane.GetSide

Руководство
public bool GetSide(Vector3 inPt);

Параметры

Описание

Is a point on the positive side of the plane?

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Plane goalLine1; public Plane goalLine2; public Plane leftSideLine; public Plane rightSideLine; int GoalScored(Vector3 ballPos) { if (!leftSideLine.GetSide(ballPos) && !rightSideLine.GetSide(ballPos)) if (goalLine1.GetSide(ballPos)) return 1; else if (goalLine2.GetSide(ballPos)) return 2; return 0; } }