The Value
property of the EditorAttribute
class specifies the editor to be used for a particular property or type. This property is a string that typically contains the name or identifier of the editor.
The Value
property of the EditorAttribute
class specifies the editor to be used for a particular property or type. This property is a string that typically contains the name or identifier of the editor.
Use the Value
property to retrieve or set the editor associated with a property or type. This is particularly useful in scenarios where you need to customize the editing experience in tools or game UI property editors.
// Example of using EditorAttribute with the Value property [Editor("CustomEditorName")] public class MyCustomClass { // Class implementation }