예제 #1
0
    public static void DownloadArtifact(ArtifactParam artifalct)
    {
        if (artifalct == null)
        {
            return;
        }
        string resourcePath = AssetPath.Artifacts(artifalct);

        if (string.IsNullOrEmpty(resourcePath))
        {
            return;
        }
        AssetManager.PrepareAssets(resourcePath);
    }