新增Time/String/Array/Keyboard/Random/Object/Texture辅助类

This commit is contained in:
yhh
2020-07-17 14:34:42 +08:00
parent e686ba64d7
commit c96e8b3a04
18 changed files with 7173 additions and 92 deletions

View File

@@ -30,7 +30,7 @@
- [x] 简易2d 向量类
- [x] 掩码实用类
- [x] 贝塞尔曲线
- [ ] 快速随机数类
- [x] 快速随机数类
- [x] BreadthFirst 寻路算法
- [x] Dijkstra 寻路算法
- [x] 事件处理器
@@ -51,10 +51,10 @@ Scene是ecs包含系统和实体最外面的容器。
## 组件(Component)
组件应该只包含数据而没有逻辑代码。对数据进行逻辑是系统的工作。
## 系统System
ecs中的系统会不断的更新实体。系统使用过滤器选择某些实体然后仅更新那些选择的实体。
## 作者其他库egret
- [行为树/实用AI 系统](https://github.com/esengine/egret-BehaviourTree-ai)