Files
heros/doc/using.md

20 lines
570 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 框架使用说明
Oops Framework从3.5.2版本开始以Cocos Creator插件方式提供使用这样设计的目的是为了方便作者升级框架功能与修复问题时方便的去更新框架。
### 自动更新最新分支框架版本
打开Cocos Creator项目目录执行下列命令
###### windows
```
md extensions
cd extensions
git clone -b master https://gitee.com/dgflash/oops-plugin-framework.git
git pull
```
###### mac
```
mkdir -p extensions
cd extensions
git clone -b master https://gitee.com/dgflash/oops-plugin-framework.git
git pull
```