Делаю платформер. Сделал платформу с таким скриптомКод
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MonsterBehaviour : MonoBehaviour {
public float speed = 3f;
public Transform[] waypoints;
private int ArrayIndex;
void Start () {
ArrayIndex = 0;
}
void Update () {
transform.position = Vector2.MoveTowards (transform.position, waypoints[ArrayIndex].transform.position, speed * Time.deltaTime);
CheckWayPoint ();
}
void CheckWayPoint(){
int test = ArrayIndex + 1;
if (Vector2.Distance(transform.position,waypoints[ArrayIndex].transform.position)<0.1f) {
if (test > 1) {
ArrayIndex = 0;
} else {
ArrayIndex++;
}
}
}
}
Когда персонаж стоит на платформе и она двигается вниз, то перс как-бы отрывается от нее.
Как сделать,чтобы он не отрывался от платформы?