1. Is it possible to get a Vector3 location when a player places a structure using OnEntityBuilt or another hook someone could suggest?
    Thank you!
     
  2. void OnEntityBuilt(Planner plan, GameObject go)
    {
    Vector3 pos = go.transform.position;
    }
     
  3. Thanks! I'll try this now.