예제 #1
0
 public void StartRandomPathCreationCoroutine()
 {
     currentRandomPath = RandomPath.CreateInstance(typeof(RandomPath)) as RandomPath;
     StartCoroutine(currentRandomPath.CreatePathCoroutine(this, transform, target, steps, startColor, environmentCheck, debugRayDuration));
 }
예제 #2
0
 public void CreateRandomPath()
 {
     currentRandomPath = RandomPath.CreateInstance(typeof(RandomPath)) as RandomPath;
     currentRandomPath.CreatePath(transform, target, steps, startColor, environmentCheck, debugRayDuration);
 }