UNPKG

@turbox3d/renderer-core

Version:

Large-scale declarative graphic ui core renderer

13 lines 567 B
import { init, registerExternalBatchUpdate } from '@turbox3d/reactivity'; import { Component, PureComponent } from './component'; import { VirtualNode, render, batchUpdate, g } from './render'; import { IdCustomType } from './common'; import { Reactive } from './reactive'; import { BaseMesh } from './mesh'; import { BaseScene, SceneType } from './scene'; init(); registerExternalBatchUpdate({ handler: batchUpdate, idCustomType: IdCustomType }); export { Component, PureComponent, VirtualNode, render, g, batchUpdate, Reactive, BaseMesh, BaseScene, SceneType };