|
1234567891011121314151617181920212223242526272829 |
- using UnityEngine;
- using System.Collections.Generic;
- using System.Collections;
-
- namespace coa4u
- {
- public class PredicateDistanceLess : Predicate
- {
- protected CalcerVector first;
- protected CalcerVector second;
- protected float distance;
-
- public PredicateDistanceLess(CalcerVector one, CalcerVector other, float dist)
- : base()
- {
- first = one;
- second = other;
- distance = dist;
- }
-
- public override bool check()
- {
- if (Vector3.Distance(first.value, second.value) <= distance)
- return true;
- else
- return false;
- }
- }
- }
|