/// <summary>
 /// Creates a new converter for a new table
 /// </summary>
 /// <param name="sourceContainer">Source table container</param>
 /// <param name="fileName">File name of the file being imported</param>
 /// <param name="options">Optional convert options</param>
 public VpxSceneConverter(FileTableContainer sourceContainer, string fileName = "", ConvertOptions options = null)
 {
     _sourceContainer = sourceContainer;
     _sourceTable     = sourceContainer.Table;
     _patcher         = PatcherManager.GetPatcher();
     _patcher?.Set(sourceContainer, fileName, this, this);
     _options = options ?? new ConvertOptions();
 }