-
Notifications
You must be signed in to change notification settings - Fork 10
Home
Hiram edited this page Apr 4, 2018
·
11 revisions
Welcome to the HiFramework_unity wiki!
在项目初始化时启动框架:
void Start()
{
Framework.Init();
Read();
}
void Update()
{
Framework.Tick();
}
void Read()
{
IIO io = Center.Get<IOComponent>();
io.ReadFile("path");
}
整个框架分为:
-
Components: 组件系统(用户可添加自己的组件)
-
Extensions: 扩展逻辑(用户可添加自己的逻辑)
-
Core: 核心功能