
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.
34 lines
739 B
C#
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) { }
|
|
}
|
|
}
|