mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-03-14 07:51:02 +00:00
- Updated versions.json to include 3.1.0 - Added new images and documentation for version 3.1.0 - Created category files for user guide and installation sections
15 lines
397 B
Plaintext
15 lines
397 B
Plaintext
import DocCardList from '@theme/DocCardList';
|
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
|
|
|
# Profiler
|
|
|
|
社区版对引擎自带的 Profiler 进行了一些改进,默认情况下是禁用的,可通过宏来开启:
|
|
|
|
```
|
|
cc.macro.ENABLE_CUSTOM_PROFILER = true;
|
|
```
|
|
|
|
你可以阅读下面的文档了解详情:
|
|
|
|
<DocCardList items={useCurrentSidebarCategory().items}/>
|