public void End()
 {
     _stop = true;
     _timeline.Stop();
     _listData.End();
     if (_dirty)
     {
         AssetListData.WriteTo(_listDataPath, _listData);
     }
 }
 public void Stop()
 {
     _stop = true;
     _timeline.Stop();
     _listData?.End();
 }