class MAGES::SceneGraph::Editor::ErrorList

Overview

An error list for the scenegraph. More…

class ErrorList: public UnityEngine.Object
{
public:
    // properties

    bool IsClear;
    List<Error> Children;

    // methods

    void Add(Error error);
    void Clear();
};

Detailed Documentation

An error list for the scenegraph.

Properties

bool IsClear

Gets a value indicating whether the list is clear.

List<Error> Children

Gets a value indicating the errors.

Methods

void Add(Error error)

Add an error.

Parameters:

error

The error instance.

void Clear()

Clear the list.