Description
The Orange
field is a member of the CommentColor
enumeration within the Editor.NodeEditor
namespace. This enumeration is used to specify the color of comments in the node editor, allowing for visual differentiation and organization of comments based on their color.
Usage
To use the Orange
color in your node editor comments, you can assign it to a comment's color property. This is particularly useful for categorizing or highlighting specific comments within the editor.
Example
// Example of using CommentColor.Orange in a node editor
// Assuming you have a comment object in your node editor
var comment = new NodeEditorComment();
// Set the comment color to Orange
comment.Color = CommentColor.Orange;
// Add the comment to the node editor
nodeEditor.AddComment(comment);