Skip to content

Commit

Permalink
Merge pull request #151 from Tryibion/scene-filter
Browse files Browse the repository at this point in the history
Add docs about new scene actor filters
  • Loading branch information
mafiesto4 authored Aug 12, 2024
2 parents 410aa53 + d05e69a commit 61ff7b4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions manual/editor/windows/scene-window.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,26 @@ You can select and drag an actor or selection of actors to reorder and reparent
Using **right-click** will display the context menu for the selected actor node.
This will allow you to copy, paste, cut, duplicate, delete and add new actors.

## Searching

By typing in the search bar of the **Scene Window**, Actors can be filtered by name.

### Additional Search Filters

Filters are not case sensitive and can be used together seperated by a `,`.

| Filter | Action |
|-------|-------|
| **a:** | Search for Actor by type |
| **s:** | Search for Actor by attached Script type |

### Examples

- Typing `a:CharacterController` will find all Actors in the scene that are of Actor type **CharacterController**.
- Typing `s:NetworkTransform` will find all of the Actors in the scene that have the Script **NetworkTransform** attached.
- Typing `a:CharacterController, s:NetworkTransform` will find all of the Actors in the scene that are of type **CharacterController** and have the **NetworkTransform** script attached.
- Typing `Tom, a:CharacterController, s:NetworkTransform` will find all of the Actors in the scene that are of type **CharacterController**, have the **NetworkTransform** script attached, and have the name of `Tom`.

## Shortcuts

| Control | Action |
Expand Down

0 comments on commit 61ff7b4

Please sign in to comment.