Firstborn/Library/PackageCache/com.unity.addressables@1.19.19/Tests/Editor/Build/AddressableBuildTaskTestBas...
Schaken-Mods 7502018d20 Adding Mod Support
There is an asset in the store I grabbed. the coding is WAY above my head, I got about half of it and integrated and adapted what I can to it. im going as far as I can with it and ill come back in a few month when I understand t better.
2023-05-13 22:01:48 -05:00

51 lines
1.7 KiB
C#

using System.Collections;
using System.Collections.Generic;
using System.IO;
using NUnit.Framework;
using UnityEditor;
using UnityEditor.AddressableAssets.Build.BuildPipelineTasks;
using UnityEditor.AddressableAssets.Settings;
using UnityEngine;
public class AddressableBuildTaskTestBase
{
protected AddressableAssetSettings m_Settings;
protected const string TempPath = "Assets/TempGen";
[SetUp]
public void Setup()
{
using (new IgnoreFailingLogMessage())
{
if (AssetDatabase.IsValidFolder(TempPath))
AssetDatabase.DeleteAsset(TempPath);
Directory.CreateDirectory(TempPath);
m_Settings = AddressableAssetSettings.Create(Path.Combine(TempPath, "Settings"),
"AddressableAssetSettings.Tests", false, true);
}
}
[TearDown]
public void Teardown()
{
// Many of the tests keep recreating assets in the same path, so we need to unload them completely so they don't get reused by the next test
AssetDatabase.DeleteAsset(AssetDatabase.GetAssetPath(m_Settings));
Resources.UnloadAsset(m_Settings);
if (Directory.Exists(TempPath))
Directory.Delete(TempPath, true);
AssetDatabase.Refresh();
}
protected static string CreateAsset(string assetPath, string objectName)
{
GameObject go = GameObject.CreatePrimitive(PrimitiveType.Cube);
go.name = objectName;
//this is to ensure that bundles are different for every run.
go.transform.localPosition = UnityEngine.Random.onUnitSphere;
PrefabUtility.SaveAsPrefabAsset(go, assetPath);
UnityEngine.Object.DestroyImmediate(go, false);
return AssetDatabase.AssetPathToGUID(assetPath);
}
}