# EditorToolbar

> Makes a toolbar populated with the specified collection of editor tools.

## Definition

* **Type:** Method
* **Namespace:** [UnityEditor](/engine/6000.6/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

## EditorToolbar(EditorTool\[])

Makes a toolbar populated with the specified collection of editor tools.

```csharp
public static void EditorToolbar(params EditorTool[] tools)
```

### Parameters

**** (\[EditorTool\[]]\(/engine/6000.6/script-reference/unityeditor/editortools/editortool)): The collection of editor tools for the toolbar.

## EditorToolbar\<T>(IList\<T>)

Makes a toolbar populated with the specified collection of editor tools.

```csharp
public static void EditorToolbar<T>(IList<T> tools) where T : EditorTool
```

### Parameters

**** (\[IList\<T>]\(https\://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1)): The collection of editor tools for the toolbar.
