using System; using UnityEngine; namespace UnityEditor.VFX { [VFXInfo(type = typeof(Gradient))] class VFXSlotGradient : VFXSlot { public override VFXValue DefaultExpression(VFXValue.Mode mode) { return new VFXValue(new Gradient(), mode); } } }