UNPKG

scratch-vm

Version:
18 lines (15 loc) 328 B
/** * Default types of Target supported by the VM * @enum {string} */ const TargetType = { /** * Rendered target which can move, change costumes, etc. */ SPRITE: 'sprite', /** * Rendered target which cannot move but can change backdrops */ STAGE: 'stage' }; module.exports = TargetType;