Firstborn/Library/PackageCache/com.unity.addressables@1.19.19/Tests/Editor/DocExampleCode/MyRule.cs
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

34 lines
739 B
C#

namespace AddressableAssets.DocExampleCode
{
//Prevent Unity from actually registering the rule in this example
using InitializeOnLoadAttribute = Dummy;
#if UNITY_EDITOR
#region doc_CustomRule
using UnityEditor;
using UnityEditor.AddressableAssets.Build;
using UnityEditor.AddressableAssets.Build.AnalyzeRules;
class MyRule : AnalyzeRule
{
// Rule code...
}
// Register rule
[InitializeOnLoad]
class RegisterMyRule
{
static RegisterMyRule() {
AnalyzeSystem.RegisterNewRule<MyRule>();
}
}
#endregion
#endif
internal class Dummy : System.Attribute {
public Dummy() { }
public Dummy(string parameter) { }
}
}