Description
The SupportsMultiEdit
property of the GameObjectControlWidget
class indicates whether the widget supports editing multiple game objects simultaneously. This property is useful in scenarios where batch editing of properties is required, allowing for more efficient workflows in the editor environment.
Usage
To determine if a GameObjectControlWidget
instance supports multi-editing, you can access the SupportsMultiEdit
property. This property is virtual, allowing derived classes to override its behavior if necessary.
Example usage:
var widget = new GameObjectControlWidget();
if (widget.SupportsMultiEdit)
{
// Perform operations that require multi-edit support
}
else
{
// Handle the case where multi-edit is not supported
}
Example
var widget = new GameObjectControlWidget();
if (widget.SupportsMultiEdit)
{
// Perform operations that require multi-edit support
}
else
{
// Handle the case where multi-edit is not supported
}