void OnEnable()
    {
        terrainDetials = target as Terrain2DDetails;

        if (terrainDetials != null)
        {
            terrainDetials.Setup();
        }
    }
 void OnDisable()
 {
     terrainDetials = null;
 }