Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.11/Editor/Extensions/FieldExtensions.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

31 lines
884 B
C#

using UnityEditor.ShaderGraph.Internal;
namespace UnityEditor.ShaderGraph
{
static class FieldExtensions
{
public static bool HasPreprocessor(this FieldDescriptor descriptor)
{
return (descriptor.preprocessor?.Length > 0);
}
public static bool HasSemantic(this FieldDescriptor descriptor)
{
return (descriptor.semantic?.Length > 0);
}
public static bool HasFlag(this FieldDescriptor descriptor, StructFieldOptions options)
{
return (descriptor.subscriptOptions & options) == options;
}
public static string ToFieldString(this FieldDescriptor descriptor)
{
if (!string.IsNullOrEmpty(descriptor.tag))
return $"{descriptor.tag}.{descriptor.name}";
else
return descriptor.name;
}
}
}