Setting attrib DefaultValue for non-standard types

Having now discovered the [DefaultValue()] attribute (hooray), how can I set a default value for a Vector3 or Int2? Thanks.

Edit: For anyone else looking to use this: using System.ComponentModel;

Here is an example for a Vector3:
[DefaultValue(typeof(Vector3), "0,0,0")]

1 Like

Thank you again!