Bugfix: camera with direction wouldn't show up

This commit is contained in:
Pieter Vander Vennet 2020-11-18 13:41:31 +01:00
parent de305ecab9
commit 5e6f54f660
5 changed files with 13 additions and 21 deletions

View file

@ -121,6 +121,12 @@ export interface LayerConfigJson {
/**
* All the tag renderings.
* A tag rendering is a block that either shows the known value or asks a question.
*
* Refer to the class `TagRenderingConfigJson` to see the possibilities.
*
* Note that we can also use a string here - where the string refers to a tagrenering defined in `assets/questions/questions.json`,
* where a few very general questions are defined e.g. website, phone number, ...
*
*/
tagRenderings?: (string | TagRenderingConfigJson) []
}