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.
16 lines
511 B
16 lines
511 B
namespace UnityEditor.VFX.UI
|
|
{
|
|
class VFXListParameterEnumValuePropertyRM : ListPropertyRM<string, StringPropertyRM>
|
|
{
|
|
public VFXListParameterEnumValuePropertyRM(IPropertyRMProvider controller, float labelWidth) : base(controller, labelWidth)
|
|
{
|
|
}
|
|
|
|
protected override StringPropertyRM CreateField(IPropertyRMProvider provider)
|
|
{
|
|
return new StringPropertyRM(provider, 18);
|
|
}
|
|
|
|
protected override string CreateItem() => "New item";
|
|
}
|
|
}
|