
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.
23 lines
736 B
C#
23 lines
736 B
C#
using System;
|
|
using NUnit.Framework;
|
|
using UnityEditor.AddressableAssets.Build;
|
|
using UnityEditor.AddressableAssets.Build.DataBuilders;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.AddressableAssets.Tests
|
|
{
|
|
public class BuildScriptVirtualTests : AddressableAssetTestBase
|
|
{
|
|
[Test]
|
|
public void VirtualModeScript_CannotBuildPlayerContent()
|
|
{
|
|
var buildScript = ScriptableObject.CreateInstance<BuildScriptVirtualMode>();
|
|
|
|
Assert.IsFalse(buildScript.CanBuildData<AddressablesPlayerBuildResult>());
|
|
|
|
Assert.IsTrue(buildScript.CanBuildData<AddressableAssetBuildResult>());
|
|
Assert.IsTrue(buildScript.CanBuildData<AddressablesPlayModeBuildResult>());
|
|
}
|
|
}
|
|
}
|