We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef2cf74 commit 4344d47Copy full SHA for 4344d47
tutorials/migrate-v4.md
@@ -59,7 +59,7 @@ static Result<std::shared_ptr<SettingV3>> parse(std::string const&, std::string
59
60
## Changes to `getChildOfType`
61
* Deprecated in 3.9.0, and now removed, use `CCNode::getChildByType<T>(int index)` instead:
62
-* `getChildOfType<CCLayer>(node, 1)` -> `node->getChildByType<CCLayer*>(1)`
+* `getChildOfType<CCLayer>(node, 1)` -> `node->getChildByType<CCLayer>(1)`
63
* You can use this regex pattern to quickly find and replace:
64
* `getChildOfType<(.+?)>\((.+?),\s*(.+?)\)` and replace with `$2->getChildByType<$1>($3)`
65
0 commit comments