There was an error while loading. Please reload this page.
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: 核心功能