Delegate FileWriterCallback

FileWriterCallback delegate

Callback used for saving associated files of the current model.

public delegate void FileWriterCallback(string assetName, ArraySegment<byte> assetData);
ParameterTypeDescription
assetNameStringThe asset relative path.
assetDataArraySegment`1The file contents as a Byte array.

See Also