Firstborn/Library/PackageCache/com.unity.scriptablebuildpi.../Editor/Utilities/VersionedCallbackAttribute.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

26 lines
1.1 KiB
C#

#if UNITY_2019_4_OR_NEWER
using System;
namespace UnityEditor.Build.Pipeline.Utilities
{
/// <summary>
/// Attribute provides the version details for IProcessScene, IProcessSceneWithReport, IPreprocessShaders, and IPreprocessComputeShaders callbacks.
/// Increment the version number when the callback changes and the build result needs to change.
/// </summary>
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
public class VersionedCallbackAttribute : Attribute
{
public readonly float version;
/// <summary>
/// Attribute provides the version details for IProcessScene, IProcessSceneWithReport, IPreprocessShaders, and IPreprocessComputeShaders callbacks.
/// Increment the version number when the callback changes and the build result needs to change.
/// </summary>
/// <param name="version">The version of this callback.</param>
public VersionedCallbackAttribute(float version)
{
this.version = version;
}
}
}
#endif