I have It going to X 176 Y 16 Z 127 But its going to X 5.681625 Y-328.1724 Z374.8713
There is absoluetley nothing there and its so confusing here is the code :`using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NPCDestination : MonoBehaviour
{
void OnTriggerEnter(Collider other)
{
if (other.tag == "NPC")
{
this.gameObject.transform.position = new Vector3(176, 16, 127);
}
}
}
`
do have a parent object to that npcdestination object? because the inspector will always show you the local coordinates if there is a parent object.
ā Captain_PineappleShould I place the NPCDest into the NPC, Sorry I am a beginner.
ā GECKOBOY123