Solve #202 set check stencil node enabled by default

This commit is contained in:
Insality
2022-09-06 21:35:43 +03:00
parent 2c92a792f7
commit e683eed90f
2 changed files with 4 additions and 5 deletions

View File

@@ -78,11 +78,11 @@ no_auto_template = 1
### Stencil check [optional]
When creating input components inside stencil nodes, you probably will use `component:set_click_zone()` to restrict clicks outside this stencil zone.
Druid can do it automatically on _late_init_ component step. To enable this feature add next field in your _game.project_ file
When creating input components inside stencil nodes, **Druid** automatically setup `component:set_click_zone()` on _late_init_ component step to restrict input clicks outside this stencil zone.
To disable this feature add next field in your _game.project_ file
```
[druid]
stencil_check = 1
no_stencil_check = 1
```