diff --git a/packages/docs/docs/guide/features/scene.mdx b/packages/docs/docs/guide/features/scene.mdx index 44b1d20..c7dfe35 100644 --- a/packages/docs/docs/guide/features/scene.mdx +++ b/packages/docs/docs/guide/features/scene.mdx @@ -135,8 +135,8 @@ You have the option to ignore a node and its children, or just its children. ```js // Example of ignoring a node const manyChildren = new Container(); -manyChildren.__devtoolsIgnore = true; -manyChildren.__devtoolsIgnoreChildren = true; +manyChildren.__devtoolIgnore = true; +manyChildren.__devtoolIgnoreChildren = "true"; ``` :::info