-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fixes, updates and additions to the documentation (#52)
Signed-off-by: Axel Boberg <[email protected]> * Fix an issue where the play button couldn't set its item Signed-off-by: Axel Boberg <[email protected]> * Update dependencies Signed-off-by: Axel Boberg <[email protected]> * Add documentation regarding bundled types Signed-off-by: Axel Boberg <[email protected]> --------- Signed-off-by: Axel Boberg <[email protected]> Signed-off-by: Axel Boberg <[email protected]> Co-authored-by: Axel Boberg <[email protected]>
- Loading branch information
1 parent
7906327
commit 834dee4
Showing
4 changed files
with
79 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Types | ||
All items have a type. It's a blueprint for the data it contains and in some cases how it should be rendered in the UI. Bridge comes with a set of server agnostic bundled types. | ||
|
||
## Bundled types | ||
|
||
### Groups | ||
The group type is a container for multiple items that belong together. Groups can be nested and provides alternatives for playing their children. | ||
|
||
### Divider | ||
Items of this type cannot be played. They are simply dividers with a name, color and note. | ||
|
||
### Variable | ||
Variables set a value to the state when played. Their values can be used throughout the application. | ||
|
||
### Reference | ||
A reference is a pointer to another item. It's useful when an item needs to be present as more than one instance but without duplicating its data. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters