You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
799 B

using UnityEngine;
using UnityEngine.Rendering;
namespace UnityEditor.VFX
{
[VFXInfo(type = typeof(Texture2D))]
class VFXSlotTexture2D : VFXSlotObject
{
internal override void GenerateErrors(VFXErrorReporter report)
{
if (value is Texture texture && texture != null && texture.dimension != TextureDimension.Tex2D)
report.RegisterError("Slot_Value_Incorrect_Texture2D", VFXErrorType.Warning, $"The selected texture {(string.IsNullOrEmpty(this.property.name) ? "" : $"'{this.property.name}' ")}is not a 2D texture", this.owner as VFXModel);
base.GenerateErrors(report);
}
public override VFXValue DefaultExpression(VFXValue.Mode mode)
{
return new VFXTexture2DValue(0, mode);
}
}
}