UNPKG

@eva/react-eva

Version:

React EVA是一个让开发同学能够在React技术体系下,利用EVA JS的游戏研发能力,开发动画、游戏类场景的框架。它可以让开发同学用熟悉的JSX和Hooks语法编写动画、游戏场景的代码。

12 lines (11 loc) 304 B
import instance from './instance'; export default function addSystem(system) { instance.systems.push(system); if (instance.gameInstance) { if (typeof system === 'function') { instance.gameInstance.addSystem(system()); } else { instance.gameInstance.addSystem(system); } } }