behavior.ts 671 B

1234567891011121314151617181920212223
  1. /**
  2. * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. export * from './behavior/behavior'
  7. import * as StaticState from './behavior/static/state'
  8. import * as StaticRepresentation from './behavior/static/representation'
  9. import * as StaticCamera from './behavior/static/representation'
  10. import * as DynamicRepresentation from './behavior/dynamic/representation'
  11. export const BuiltInPluginBehaviors = {
  12. State: StaticState,
  13. Representation: StaticRepresentation,
  14. Camera: StaticCamera
  15. }
  16. export const PluginBehaviors = {
  17. Representation: DynamicRepresentation
  18. }