AssetManager.ExportAssets C# (CSharp) 메소드

ExportAssets() 공개 메소드

public ExportAssets ( ) : void
리턴 void
    public void ExportAssets()
    {
    }

Usage Example

예제 #1
0
        public override void Perform(Resource obj)
        {
            // If we still have the original source files around, prefer them.
            string[] importedPaths = AssetManager.GetAssetSourceFiles(obj);
            if (importedPaths.Length > 0 && importedPaths.All(p => File.Exists(p)))
            {
                this.OpenPaths(importedPaths);
                return;
            }

            // Otherwise, export the Resource and open the result.
            string[] exportedPaths = AssetManager.ExportAssets(obj);
            this.OpenPaths(exportedPaths);
        }
All Usage Examples Of AssetManager::ExportAssets