behavior.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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/camera'
  10. import * as StaticMisc from './behavior/static/misc'
  11. import * as DynamicRepresentation from './behavior/dynamic/representation'
  12. import * as DynamicCamera from './behavior/dynamic/camera'
  13. import * as DynamicCustomProps from './behavior/dynamic/custom-props'
  14. import * as DynamicAnimation from './behavior/dynamic/animation'
  15. import * as DynamicLabels from './behavior/dynamic/labels'
  16. export const BuiltInPluginBehaviors = {
  17. State: StaticState,
  18. Representation: StaticRepresentation,
  19. Camera: StaticCamera,
  20. Misc: StaticMisc
  21. }
  22. export const PluginBehaviors = {
  23. Representation: DynamicRepresentation,
  24. Camera: DynamicCamera,
  25. CustomProps: DynamicCustomProps,
  26. Animation: DynamicAnimation,
  27. Labels: DynamicLabels
  28. }