bc-minecraft-bedrock-project 1.21.2-4 → 1.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/src/internal/behavior-pack/animation-controller.d.ts +49 -0
- package/lib/src/internal/behavior-pack/animation-controller.js +49 -0
- package/lib/src/internal/behavior-pack/animation-controller.js.map +1 -0
- package/lib/src/internal/behavior-pack/animation.d.ts +39 -0
- package/lib/src/internal/behavior-pack/animation.js +32 -0
- package/lib/src/internal/behavior-pack/animation.js.map +1 -0
- package/lib/src/internal/behavior-pack/animation.test.d.ts +1 -0
- package/lib/src/internal/behavior-pack/animation.test.js +30 -0
- package/lib/src/internal/behavior-pack/animation.test.js.map +1 -0
- package/lib/src/internal/behavior-pack/block.d.ts +30 -0
- package/lib/src/internal/behavior-pack/block.js +25 -0
- package/lib/src/internal/behavior-pack/block.js.map +1 -0
- package/lib/src/internal/behavior-pack/entity.d.ts +105 -0
- package/lib/src/internal/behavior-pack/entity.js +26 -0
- package/lib/src/internal/behavior-pack/entity.js.map +1 -0
- package/lib/src/internal/behavior-pack/feature.d.ts +116 -0
- package/lib/src/internal/behavior-pack/feature.js +45 -0
- package/lib/src/internal/behavior-pack/feature.js.map +1 -0
- package/lib/src/internal/behavior-pack/index.d.ts +5 -0
- package/lib/src/internal/behavior-pack/index.js +23 -0
- package/lib/src/internal/behavior-pack/index.js.map +1 -0
- package/lib/src/internal/behavior-pack/item.d.ts +32 -0
- package/lib/src/internal/behavior-pack/item.js +23 -0
- package/lib/src/internal/behavior-pack/item.js.map +1 -0
- package/lib/src/internal/comments/comment.d.ts +2 -0
- package/lib/src/internal/comments/comment.js +12 -0
- package/lib/src/internal/comments/comment.js.map +1 -0
- package/lib/src/internal/comments/index.d.ts +1 -0
- package/lib/src/internal/comments/index.js +19 -0
- package/lib/src/internal/comments/index.js.map +1 -0
- package/lib/src/internal/general/commands.js +3 -0
- package/lib/src/internal/general/commands.js.map +1 -0
- package/lib/src/internal/general/controllers/index.d.ts +1 -0
- package/lib/src/internal/general/controllers/index.js +19 -0
- package/lib/src/internal/general/controllers/index.js.map +1 -0
- package/lib/src/internal/general/controllers/state.js +19 -0
- package/lib/src/internal/general/controllers/state.js.map +1 -0
- package/lib/src/internal/general/index.d.ts +2 -0
- package/lib/src/internal/general/index.js +33 -0
- package/lib/src/internal/general/index.js.map +1 -0
- package/lib/src/internal/index.d.ts +6 -0
- package/lib/src/internal/index.js +37 -0
- package/lib/src/internal/index.js.map +1 -0
- package/lib/src/internal/json.d.ts +8 -0
- package/lib/src/internal/json.js +43 -0
- package/lib/src/internal/json.js.map +1 -0
- package/lib/src/internal/json.test.d.ts +1 -0
- package/lib/src/internal/json.test.js +32 -0
- package/lib/src/internal/json.test.js.map +1 -0
- package/lib/src/internal/resource-pack/AnimationController.d.ts +66 -0
- package/lib/src/internal/resource-pack/AnimationController.js.map +1 -0
- package/lib/src/internal/resource-pack/animation-controller.d.ts +66 -0
- package/lib/src/internal/resource-pack/animation-controller.js +49 -0
- package/lib/src/internal/resource-pack/animation-controller.js.map +1 -0
- package/lib/src/internal/resource-pack/animation.d.ts +64 -0
- package/lib/src/internal/resource-pack/animation.js +32 -0
- package/lib/src/internal/resource-pack/animation.js.map +1 -0
- package/lib/src/internal/resource-pack/animation.test.d.ts +1 -0
- package/lib/src/internal/resource-pack/animation.test.js +31 -0
- package/lib/src/internal/resource-pack/animation.test.js.map +1 -0
- package/lib/src/internal/resource-pack/attachable.d.ts +48 -0
- package/lib/src/internal/resource-pack/attachable.js +25 -0
- package/lib/src/internal/resource-pack/attachable.js.map +1 -0
- package/lib/src/internal/resource-pack/block-culling.d.ts +76 -0
- package/lib/src/internal/resource-pack/block-culling.js +25 -0
- package/lib/src/internal/resource-pack/block-culling.js.map +1 -0
- package/lib/src/internal/resource-pack/entity.d.ts +45 -0
- package/lib/src/internal/resource-pack/entity.js +23 -0
- package/lib/src/internal/resource-pack/entity.js.map +1 -0
- package/lib/src/internal/resource-pack/entity.test.d.ts +1 -0
- package/lib/src/internal/resource-pack/entity.test.js +51 -0
- package/lib/src/internal/resource-pack/entity.test.js.map +1 -0
- package/lib/src/internal/resource-pack/fog.d.ts +51 -0
- package/lib/src/internal/resource-pack/fog.js +25 -0
- package/lib/src/internal/resource-pack/fog.js.map +1 -0
- package/lib/src/internal/resource-pack/index.d.ts +12 -0
- package/lib/src/internal/resource-pack/index.js +30 -0
- package/lib/src/internal/resource-pack/index.js.map +1 -0
- package/lib/src/internal/resource-pack/material.d.ts +12 -0
- package/lib/src/internal/resource-pack/material.js +15 -0
- package/lib/src/internal/resource-pack/material.js.map +1 -0
- package/lib/src/internal/resource-pack/model.d.ts +71 -0
- package/lib/src/internal/resource-pack/model.js +78 -0
- package/lib/src/internal/resource-pack/model.js.map +1 -0
- package/lib/src/internal/resource-pack/particle.d.ts +34 -0
- package/lib/src/internal/resource-pack/particle.js +25 -0
- package/lib/src/internal/resource-pack/particle.js.map +1 -0
- package/lib/src/internal/resource-pack/render-controller.d.ts +54 -0
- package/lib/src/internal/resource-pack/render-controller.js +16 -0
- package/lib/src/internal/resource-pack/render-controller.js.map +1 -0
- package/lib/src/internal/resource-pack/sound-definitions.d.ts +32 -0
- package/lib/src/internal/resource-pack/sound-definitions.js +20 -0
- package/lib/src/internal/resource-pack/sound-definitions.js.map +1 -0
- package/lib/src/internal/resource-pack/texture-atlas.d.ts +28 -0
- package/lib/src/internal/resource-pack/texture-atlas.js +22 -0
- package/lib/src/internal/resource-pack/texture-atlas.js.map +1 -0
- package/lib/src/internal/types/format-version.js +69 -0
- package/lib/src/internal/types/format-version.js.map +1 -0
- package/lib/src/internal/types/index.d.ts +3 -0
- package/lib/src/internal/types/index.js +21 -0
- package/lib/src/internal/types/index.js.map +1 -0
- package/lib/src/internal/types/manifest.d.ts +113 -0
- package/lib/src/internal/types/manifest.js +153 -0
- package/lib/src/internal/types/manifest.js.map +1 -0
- package/lib/src/internal/types/script.js +37 -0
- package/lib/src/internal/types/script.js.map +1 -0
- package/lib/src/main.d.ts +3 -3
- package/lib/src/main.js +3 -3
- package/lib/src/main.js.map +1 -1
- package/lib/src/project/behavior-pack/animation/animation.d.ts +8 -0
- package/lib/src/project/behavior-pack/animation/animation.js +3 -0
- package/lib/src/project/behavior-pack/animation/animation.js.map +1 -0
- package/lib/src/project/behavior-pack/animation/index.d.ts +2 -0
- package/lib/src/project/behavior-pack/animation/index.js +20 -0
- package/lib/src/project/behavior-pack/animation/index.js.map +1 -0
- package/lib/src/project/behavior-pack/animation/process.d.ts +4 -0
- package/lib/src/project/behavior-pack/animation/process.js +56 -0
- package/lib/src/project/behavior-pack/animation/process.js.map +1 -0
- package/lib/src/project/behavior-pack/animation-controller/animation-controller.d.ts +10 -0
- package/lib/src/project/behavior-pack/animation-controller/animation-controller.js +3 -0
- package/lib/src/project/behavior-pack/animation-controller/animation-controller.js.map +1 -0
- package/lib/src/project/behavior-pack/animation-controller/animation-controllers.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/animation-controller/animation-controllers.test.js +19 -0
- package/lib/src/project/behavior-pack/animation-controller/animation-controllers.test.js.map +1 -0
- package/lib/src/project/behavior-pack/animation-controller/index.d.ts +2 -0
- package/lib/src/project/behavior-pack/animation-controller/index.js +20 -0
- package/lib/src/project/behavior-pack/animation-controller/index.js.map +1 -0
- package/lib/src/project/behavior-pack/animation-controller/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/animation-controller/process.js +72 -0
- package/lib/src/project/behavior-pack/animation-controller/process.js.map +1 -0
- package/lib/src/project/behavior-pack/behavior-pack-collection.d.ts +43 -0
- package/lib/src/project/behavior-pack/behavior-pack-collection.js +35 -0
- package/lib/src/project/behavior-pack/behavior-pack-collection.js.map +1 -0
- package/lib/src/project/behavior-pack/behavior-pack-collection.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/behavior-pack-collection.test.js +92 -0
- package/lib/src/project/behavior-pack/behavior-pack-collection.test.js.map +1 -0
- package/lib/src/project/behavior-pack/behavior-pack.d.ts +99 -0
- package/lib/src/project/behavior-pack/behavior-pack.js +245 -0
- package/lib/src/project/behavior-pack/behavior-pack.js.map +1 -0
- package/lib/src/project/behavior-pack/behavior-pack.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/behavior-pack.test.js +55 -0
- package/lib/src/project/behavior-pack/behavior-pack.test.js.map +1 -0
- package/lib/src/project/behavior-pack/block/block-state.js +54 -0
- package/lib/src/project/behavior-pack/block/block-state.js.map +1 -0
- package/lib/src/project/behavior-pack/block/block.d.ts +11 -0
- package/lib/src/project/behavior-pack/block/block.js +3 -0
- package/lib/src/project/behavior-pack/block/block.js.map +1 -0
- package/lib/src/project/behavior-pack/block/index.d.ts +3 -0
- package/lib/src/project/behavior-pack/block/index.js +21 -0
- package/lib/src/project/behavior-pack/block/index.js.map +1 -0
- package/lib/src/project/behavior-pack/block/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/block/process.js +62 -0
- package/lib/src/project/behavior-pack/block/process.js.map +1 -0
- package/lib/src/project/behavior-pack/entity/entity.d.ts +19 -0
- package/lib/src/project/behavior-pack/entity/entity.js +3 -0
- package/lib/src/project/behavior-pack/entity/entity.js.map +1 -0
- package/lib/src/project/behavior-pack/entity/entity.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/entity/entity.test.js +81 -0
- package/lib/src/project/behavior-pack/entity/entity.test.js.map +1 -0
- package/lib/src/project/behavior-pack/entity/index.d.ts +3 -0
- package/lib/src/project/behavior-pack/entity/index.js +21 -0
- package/lib/src/project/behavior-pack/entity/index.js.map +1 -0
- package/lib/src/project/behavior-pack/entity/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/entity/process.js +97 -0
- package/lib/src/project/behavior-pack/entity/process.js.map +1 -0
- package/lib/src/project/behavior-pack/entity/properties.js +48 -0
- package/lib/src/project/behavior-pack/entity/properties.js.map +1 -0
- package/lib/src/project/behavior-pack/feature/feature.js +3 -0
- package/lib/src/project/behavior-pack/feature/feature.js.map +1 -0
- package/lib/src/project/behavior-pack/feature/index.d.ts +2 -0
- package/lib/src/project/behavior-pack/feature/index.js +20 -0
- package/lib/src/project/behavior-pack/feature/index.js.map +1 -0
- package/lib/src/project/behavior-pack/feature/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/feature/process.js +56 -0
- package/lib/src/project/behavior-pack/feature/process.js.map +1 -0
- package/lib/src/project/behavior-pack/file-type.js +85 -0
- package/lib/src/project/behavior-pack/file-type.js.map +1 -0
- package/lib/src/project/behavior-pack/file-type.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/file-type.test.js +47 -0
- package/lib/src/project/behavior-pack/file-type.test.js.map +1 -0
- package/lib/src/project/behavior-pack/index.d.ts +12 -0
- package/lib/src/project/behavior-pack/index.js +43 -0
- package/lib/src/project/behavior-pack/index.js.map +1 -0
- package/lib/src/project/behavior-pack/item/index.d.ts +2 -0
- package/lib/src/project/behavior-pack/item/index.js +20 -0
- package/lib/src/project/behavior-pack/item/index.js.map +1 -0
- package/lib/src/project/behavior-pack/item/item.d.ts +8 -0
- package/lib/src/project/behavior-pack/item/item.js +3 -0
- package/lib/src/project/behavior-pack/item/item.js.map +1 -0
- package/lib/src/project/behavior-pack/item/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/item/process.js +53 -0
- package/lib/src/project/behavior-pack/item/process.js.map +1 -0
- package/lib/src/project/behavior-pack/loot-table/index.d.ts +2 -0
- package/lib/src/project/behavior-pack/loot-table/index.js +20 -0
- package/lib/src/project/behavior-pack/loot-table/index.js.map +1 -0
- package/lib/src/project/behavior-pack/loot-table/loot-table.js +3 -0
- package/lib/src/project/behavior-pack/loot-table/loot-table.js.map +1 -0
- package/lib/src/project/behavior-pack/loot-table/loot-table.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/loot-table/loot-table.test.js +15 -0
- package/lib/src/project/behavior-pack/loot-table/loot-table.test.js.map +1 -0
- package/lib/src/project/behavior-pack/loot-table/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/loot-table/process.js +24 -0
- package/lib/src/project/behavior-pack/loot-table/process.js.map +1 -0
- package/lib/src/project/behavior-pack/mcfunction/comment.js +10 -0
- package/lib/src/project/behavior-pack/mcfunction/comment.js.map +1 -0
- package/lib/src/project/behavior-pack/mcfunction/function.js +3 -0
- package/lib/src/project/behavior-pack/mcfunction/function.js.map +1 -0
- package/lib/src/project/behavior-pack/mcfunction/function.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/mcfunction/function.test.js +28 -0
- package/lib/src/project/behavior-pack/mcfunction/function.test.js.map +1 -0
- package/lib/src/project/behavior-pack/mcfunction/index.d.ts +3 -0
- package/lib/src/project/behavior-pack/mcfunction/index.js +21 -0
- package/lib/src/project/behavior-pack/mcfunction/index.js.map +1 -0
- package/lib/src/project/behavior-pack/mcfunction/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/mcfunction/process.js +31 -0
- package/lib/src/project/behavior-pack/mcfunction/process.js.map +1 -0
- package/lib/src/project/behavior-pack/structure/index.d.ts +2 -0
- package/lib/src/project/behavior-pack/structure/index.js +20 -0
- package/lib/src/project/behavior-pack/structure/index.js.map +1 -0
- package/lib/src/project/behavior-pack/structure/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/structure/process.js +28 -0
- package/lib/src/project/behavior-pack/structure/process.js.map +1 -0
- package/lib/src/project/behavior-pack/structure/structure.js +3 -0
- package/lib/src/project/behavior-pack/structure/structure.js.map +1 -0
- package/lib/src/project/behavior-pack/structure/structure.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/structure/structure.test.js +24 -0
- package/lib/src/project/behavior-pack/structure/structure.test.js.map +1 -0
- package/lib/src/project/behavior-pack/trading/index.d.ts +2 -0
- package/lib/src/project/behavior-pack/trading/index.js +20 -0
- package/lib/src/project/behavior-pack/trading/index.js.map +1 -0
- package/lib/src/project/behavior-pack/trading/process.d.ts +8 -0
- package/lib/src/project/behavior-pack/trading/process.js +24 -0
- package/lib/src/project/behavior-pack/trading/process.js.map +1 -0
- package/lib/src/project/behavior-pack/trading/trading.js +3 -0
- package/lib/src/project/behavior-pack/trading/trading.js.map +1 -0
- package/lib/src/project/behavior-pack/trading/trading.test.d.ts +1 -0
- package/lib/src/project/behavior-pack/trading/trading.test.js +15 -0
- package/lib/src/project/behavior-pack/trading/trading.test.js.map +1 -0
- package/lib/src/project/general/general-info.test.d.ts +1 -0
- package/lib/src/project/general/general-info.test.js +16 -0
- package/lib/src/project/general/general-info.test.js.map +1 -0
- package/lib/src/project/general/general.d.ts +47 -0
- package/lib/src/project/general/general.js +89 -0
- package/lib/src/project/general/general.js.map +1 -0
- package/lib/src/project/general/index.d.ts +2 -0
- package/lib/src/project/general/index.js +33 -0
- package/lib/src/project/general/index.js.map +1 -0
- package/lib/src/project/general/types/commands/commands.test.d.ts +1 -0
- package/lib/src/project/general/types/commands/commands.test.js +100 -0
- package/lib/src/project/general/types/commands/commands.test.js.map +1 -0
- package/lib/src/project/general/types/commands/index.d.ts +1 -0
- package/lib/src/project/general/types/commands/index.js +19 -0
- package/lib/src/project/general/types/commands/index.js.map +1 -0
- package/lib/src/project/general/types/commands/process.d.ts +43 -0
- package/lib/src/project/general/types/commands/process.js +167 -0
- package/lib/src/project/general/types/commands/process.js.map +1 -0
- package/lib/src/project/general/types/general-info.js +27 -0
- package/lib/src/project/general/types/general-info.js.map +1 -0
- package/lib/src/project/general/types/index.d.ts +6 -0
- package/lib/src/project/general/types/index.js +37 -0
- package/lib/src/project/general/types/index.js.map +1 -0
- package/lib/src/project/general/types/objective/index.d.ts +1 -0
- package/lib/src/project/general/types/objective/index.js +19 -0
- package/lib/src/project/general/types/objective/index.js.map +1 -0
- package/lib/src/project/general/types/objective/process.d.ts +4 -0
- package/lib/src/project/general/types/objective/process.js +56 -0
- package/lib/src/project/general/types/objective/process.js.map +1 -0
- package/lib/src/project/general/types/structures/index.d.ts +1 -0
- package/lib/src/project/general/types/structures/index.js +19 -0
- package/lib/src/project/general/types/structures/index.js.map +1 -0
- package/lib/src/project/general/types/structures/process.d.ts +4 -0
- package/lib/src/project/general/types/structures/process.js +15 -0
- package/lib/src/project/general/types/structures/process.js.map +1 -0
- package/lib/src/project/general/types/tag/index.d.ts +1 -0
- package/lib/src/project/general/types/tag/index.js +19 -0
- package/lib/src/project/general/types/tag/index.js.map +1 -0
- package/lib/src/project/general/types/tag/process.d.ts +4 -0
- package/lib/src/project/general/types/tag/process.js +15 -0
- package/lib/src/project/general/types/tag/process.js.map +1 -0
- package/lib/src/project/general/types/tickingarea/index.d.ts +1 -0
- package/lib/src/project/general/types/tickingarea/index.js +19 -0
- package/lib/src/project/general/types/tickingarea/index.js.map +1 -0
- package/lib/src/project/general/types/tickingarea/process.d.ts +4 -0
- package/lib/src/project/general/types/tickingarea/process.js +66 -0
- package/lib/src/project/general/types/tickingarea/process.js.map +1 -0
- package/lib/src/project/index.d.ts +8 -0
- package/lib/src/project/index.js +39 -0
- package/lib/src/project/index.js.map +1 -0
- package/lib/src/project/pack-type.js +88 -0
- package/lib/src/project/pack-type.js.map +1 -0
- package/lib/src/project/pack-type.test.d.ts +1 -0
- package/lib/src/project/pack-type.test.js +34 -0
- package/lib/src/project/pack-type.test.js.map +1 -0
- package/lib/src/project/project-data.d.ts +61 -0
- package/lib/src/project/project-data.js +151 -0
- package/lib/src/project/project-data.js.map +1 -0
- package/lib/src/project/project-data.test.d.ts +1 -0
- package/lib/src/project/project-data.test.js +328 -0
- package/lib/src/project/project-data.test.js.map +1 -0
- package/lib/src/project/resource-pack/animation/animation.d.ts +12 -0
- package/lib/src/project/resource-pack/animation/animation.js +3 -0
- package/lib/src/project/resource-pack/animation/animation.js.map +1 -0
- package/lib/src/project/resource-pack/animation/index.d.ts +2 -0
- package/lib/src/project/resource-pack/animation/index.js +20 -0
- package/lib/src/project/resource-pack/animation/index.js.map +1 -0
- package/lib/src/project/resource-pack/animation/process.d.ts +4 -0
- package/lib/src/project/resource-pack/animation/process.js +74 -0
- package/lib/src/project/resource-pack/animation/process.js.map +1 -0
- package/lib/src/project/resource-pack/animation-controller/animation-controller.d.ts +15 -0
- package/lib/src/project/resource-pack/animation-controller/animation-controller.js +3 -0
- package/lib/src/project/resource-pack/animation-controller/animation-controller.js.map +1 -0
- package/lib/src/project/resource-pack/animation-controller/animation-controllers.test.d.ts +1 -0
- package/lib/src/project/resource-pack/animation-controller/animation-controllers.test.js +16 -0
- package/lib/src/project/resource-pack/animation-controller/animation-controllers.test.js.map +1 -0
- package/lib/src/project/resource-pack/animation-controller/index.d.ts +2 -0
- package/lib/src/project/resource-pack/animation-controller/index.js +20 -0
- package/lib/src/project/resource-pack/animation-controller/index.js.map +1 -0
- package/lib/src/project/resource-pack/animation-controller/process.d.ts +4 -0
- package/lib/src/project/resource-pack/animation-controller/process.js +76 -0
- package/lib/src/project/resource-pack/animation-controller/process.js.map +1 -0
- package/lib/src/project/resource-pack/attachable/attachable.d.ts +10 -0
- package/lib/src/project/resource-pack/attachable/attachable.js +3 -0
- package/lib/src/project/resource-pack/attachable/attachable.js.map +1 -0
- package/lib/src/project/resource-pack/attachable/index.d.ts +2 -0
- package/lib/src/project/resource-pack/attachable/index.js +20 -0
- package/lib/src/project/resource-pack/attachable/index.js.map +1 -0
- package/lib/src/project/resource-pack/attachable/process.d.ts +8 -0
- package/lib/src/project/resource-pack/attachable/process.js +98 -0
- package/lib/src/project/resource-pack/attachable/process.js.map +1 -0
- package/lib/src/project/resource-pack/block/block.js +3 -0
- package/lib/src/project/resource-pack/block/block.js.map +1 -0
- package/lib/src/project/resource-pack/block/index.d.ts +1 -0
- package/lib/src/project/resource-pack/block/index.js +19 -0
- package/lib/src/project/resource-pack/block/index.js.map +1 -0
- package/lib/src/project/resource-pack/block-culling/culling.js +3 -0
- package/lib/src/project/resource-pack/block-culling/culling.js.map +1 -0
- package/lib/src/project/resource-pack/block-culling/index.d.ts +2 -0
- package/lib/src/project/resource-pack/block-culling/index.js +20 -0
- package/lib/src/project/resource-pack/block-culling/index.js.map +1 -0
- package/lib/src/project/resource-pack/block-culling/process.d.ts +3 -0
- package/lib/src/project/resource-pack/block-culling/process.js +60 -0
- package/lib/src/project/resource-pack/block-culling/process.js.map +1 -0
- package/lib/src/project/resource-pack/entity/entity.d.ts +10 -0
- package/lib/src/project/resource-pack/entity/entity.js +3 -0
- package/lib/src/project/resource-pack/entity/entity.js.map +1 -0
- package/lib/src/project/resource-pack/entity/index.d.ts +2 -0
- package/lib/src/project/resource-pack/entity/index.js +20 -0
- package/lib/src/project/resource-pack/entity/index.js.map +1 -0
- package/lib/src/project/resource-pack/entity/process.d.ts +8 -0
- package/lib/src/project/resource-pack/entity/process.js +97 -0
- package/lib/src/project/resource-pack/entity/process.js.map +1 -0
- package/lib/src/project/resource-pack/file-type.js +107 -0
- package/lib/src/project/resource-pack/file-type.js.map +1 -0
- package/lib/src/project/resource-pack/file-type.test.d.ts +1 -0
- package/lib/src/project/resource-pack/file-type.test.js +58 -0
- package/lib/src/project/resource-pack/file-type.test.js.map +1 -0
- package/lib/src/project/resource-pack/fog/fog.js +3 -0
- package/lib/src/project/resource-pack/fog/fog.js.map +1 -0
- package/lib/src/project/resource-pack/fog/index.d.ts +2 -0
- package/lib/src/project/resource-pack/fog/index.js +20 -0
- package/lib/src/project/resource-pack/fog/index.js.map +1 -0
- package/lib/src/project/resource-pack/fog/process.d.ts +8 -0
- package/lib/src/project/resource-pack/fog/process.js +51 -0
- package/lib/src/project/resource-pack/fog/process.js.map +1 -0
- package/lib/src/project/resource-pack/index.d.ts +15 -0
- package/lib/src/project/resource-pack/index.js +46 -0
- package/lib/src/project/resource-pack/index.js.map +1 -0
- package/lib/src/project/resource-pack/material/index.d.ts +2 -0
- package/lib/src/project/resource-pack/material/index.js +20 -0
- package/lib/src/project/resource-pack/material/index.js.map +1 -0
- package/lib/src/project/resource-pack/material/material.js +3 -0
- package/lib/src/project/resource-pack/material/material.js.map +1 -0
- package/lib/src/project/resource-pack/material/process.d.ts +8 -0
- package/lib/src/project/resource-pack/material/process.js +55 -0
- package/lib/src/project/resource-pack/material/process.js.map +1 -0
- package/lib/src/project/resource-pack/model/index.d.ts +2 -0
- package/lib/src/project/resource-pack/model/index.js +20 -0
- package/lib/src/project/resource-pack/model/index.js.map +1 -0
- package/lib/src/project/resource-pack/model/model.js +3 -0
- package/lib/src/project/resource-pack/model/model.js.map +1 -0
- package/lib/src/project/resource-pack/model/process.d.ts +8 -0
- package/lib/src/project/resource-pack/model/process.js +90 -0
- package/lib/src/project/resource-pack/model/process.js.map +1 -0
- package/lib/src/project/resource-pack/particle/index.d.ts +2 -0
- package/lib/src/project/resource-pack/particle/index.js +20 -0
- package/lib/src/project/resource-pack/particle/index.js.map +1 -0
- package/lib/src/project/resource-pack/particle/particle.js +3 -0
- package/lib/src/project/resource-pack/particle/particle.js.map +1 -0
- package/lib/src/project/resource-pack/particle/process.d.ts +8 -0
- package/lib/src/project/resource-pack/particle/process.js +51 -0
- package/lib/src/project/resource-pack/particle/process.js.map +1 -0
- package/lib/src/project/resource-pack/render-controller/index.d.ts +2 -0
- package/lib/src/project/resource-pack/render-controller/index.js +20 -0
- package/lib/src/project/resource-pack/render-controller/index.js.map +1 -0
- package/lib/src/project/resource-pack/render-controller/process.d.ts +4 -0
- package/lib/src/project/resource-pack/render-controller/process.js +55 -0
- package/lib/src/project/resource-pack/render-controller/process.js.map +1 -0
- package/lib/src/project/resource-pack/render-controller/render-controller.d.ts +8 -0
- package/lib/src/project/resource-pack/render-controller/render-controller.js +3 -0
- package/lib/src/project/resource-pack/render-controller/render-controller.js.map +1 -0
- package/lib/src/project/resource-pack/resource-pack-collection.d.ts +46 -0
- package/lib/src/project/resource-pack/resource-pack-collection.js +32 -0
- package/lib/src/project/resource-pack/resource-pack-collection.js.map +1 -0
- package/lib/src/project/resource-pack/resource-pack-collection.test.d.ts +1 -0
- package/lib/src/project/resource-pack/resource-pack-collection.test.js +18 -0
- package/lib/src/project/resource-pack/resource-pack-collection.test.js.map +1 -0
- package/lib/src/project/resource-pack/resource-pack.d.ts +106 -0
- package/lib/src/project/resource-pack/resource-pack.js +281 -0
- package/lib/src/project/resource-pack/resource-pack.js.map +1 -0
- package/lib/src/project/resource-pack/resource-pack.test.d.ts +1 -0
- package/lib/src/project/resource-pack/resource-pack.test.js +52 -0
- package/lib/src/project/resource-pack/resource-pack.test.js.map +1 -0
- package/lib/src/project/resource-pack/sound/index.d.ts +2 -0
- package/lib/src/project/resource-pack/sound/index.js +20 -0
- package/lib/src/project/resource-pack/sound/index.js.map +1 -0
- package/lib/src/project/resource-pack/sound/process.d.ts +8 -0
- package/lib/src/project/resource-pack/sound/process.js +54 -0
- package/lib/src/project/resource-pack/sound/process.js.map +1 -0
- package/lib/src/project/resource-pack/sound/sound.js +3 -0
- package/lib/src/project/resource-pack/sound/sound.js.map +1 -0
- package/lib/src/project/resource-pack/texture/index.d.ts +2 -0
- package/lib/src/project/resource-pack/texture/index.js +20 -0
- package/lib/src/project/resource-pack/texture/index.js.map +1 -0
- package/lib/src/project/resource-pack/texture/process.d.ts +8 -0
- package/lib/src/project/resource-pack/texture/process.js +32 -0
- package/lib/src/project/resource-pack/texture/process.js.map +1 -0
- package/lib/src/project/resource-pack/texture/texture.js +3 -0
- package/lib/src/project/resource-pack/texture/texture.js.map +1 -0
- package/lib/src/project/skin-pack/FileType.js +39 -0
- package/lib/src/project/skin-pack/FileType.js.map +1 -0
- package/lib/src/project/skin-pack/index.js.map +1 -0
- package/lib/src/project/util.d.ts +34 -0
- package/lib/src/project/util.js +47 -0
- package/lib/src/project/util.js.map +1 -0
- package/lib/src/project/world/index.d.ts +2 -0
- package/lib/src/project/world/index.js +20 -0
- package/lib/src/project/world/index.js.map +1 -0
- package/lib/src/project/world/world-pack-collection.d.ts +9 -0
- package/lib/src/project/world/world-pack-collection.js +18 -0
- package/lib/src/project/world/world-pack-collection.js.map +1 -0
- package/lib/src/project/world/world-pack.d.ts +62 -0
- package/lib/src/project/world/world-pack.js +89 -0
- package/lib/src/project/world/world-pack.js.map +1 -0
- package/lib/src/types/carrier.js +3 -0
- package/lib/src/types/carrier.js.map +1 -0
- package/lib/src/types/container.js +20 -0
- package/lib/src/types/container.js.map +1 -0
- package/lib/src/types/data-set-connector.d.ts +23 -0
- package/lib/src/types/data-set-connector.js +59 -0
- package/lib/src/types/data-set-connector.js.map +1 -0
- package/lib/src/types/data-set.d.ts +66 -0
- package/lib/src/types/data-set.js +94 -0
- package/lib/src/types/data-set.js.map +1 -0
- package/lib/src/types/data-set.test.d.ts +1 -0
- package/lib/src/types/data-set.test.js +120 -0
- package/lib/src/types/data-set.test.js.map +1 -0
- package/lib/src/types/documentation.d.ts +14 -0
- package/lib/src/types/documentation.js +86 -0
- package/lib/src/types/documentation.js.map +1 -0
- package/lib/src/types/documentation.test.d.ts +1 -0
- package/lib/src/types/documentation.test.js +60 -0
- package/lib/src/types/documentation.test.js.map +1 -0
- package/lib/src/types/i-data-set.js +3 -0
- package/lib/src/types/i-data-set.js.map +1 -0
- package/lib/src/types/index.d.ts +13 -0
- package/lib/src/types/index.js +31 -0
- package/lib/src/types/index.js.map +1 -0
- package/lib/src/types/json-path.d.ts +25 -0
- package/lib/src/types/json-path.js +48 -0
- package/lib/src/types/json-path.js.map +1 -0
- package/lib/src/types/json-path.test.d.ts +1 -0
- package/lib/src/types/json-path.test.js +43 -0
- package/lib/src/types/json-path.test.js.map +1 -0
- package/lib/src/types/pack-collection.d.ts +48 -0
- package/lib/src/types/pack-collection.js +91 -0
- package/lib/src/types/pack-collection.js.map +1 -0
- package/lib/src/types/pack-collection.test.d.ts +1 -0
- package/lib/src/types/pack-collection.test.js +219 -0
- package/lib/src/types/pack-collection.test.js.map +1 -0
- package/lib/src/types/pack.d.ts +53 -0
- package/lib/src/types/pack.js +20 -0
- package/lib/src/types/pack.js.map +1 -0
- package/lib/src/types/project-context.d.ts +13 -0
- package/lib/src/types/project-context.js +3 -0
- package/lib/src/types/project-context.js.map +1 -0
- package/lib/src/types/smap.js +23 -0
- package/lib/src/types/smap.js.map +1 -0
- package/lib/src/types/smap.test.d.ts +1 -0
- package/lib/src/types/smap.test.js +36 -0
- package/lib/src/types/smap.test.js.map +1 -0
- package/lib/src/types/text-document.js +28 -0
- package/lib/src/types/text-document.js.map +1 -0
- package/lib/src/types/text.js +15 -0
- package/lib/src/types/text.js.map +1 -0
- package/lib/src/types/text.test.d.ts +1 -0
- package/lib/src/types/text.test.js +19 -0
- package/lib/src/types/text.test.js.map +1 -0
- package/package.json +17 -13
- package/lib/src/Lib/Internal/BehaviorPack/Animation.d.ts +0 -39
- package/lib/src/Lib/Internal/BehaviorPack/Animation.js +0 -32
- package/lib/src/Lib/Internal/BehaviorPack/Animation.js.map +0 -1
- package/lib/src/Lib/Internal/BehaviorPack/AnimationController.d.ts +0 -49
- package/lib/src/Lib/Internal/BehaviorPack/AnimationController.js.map +0 -1
- package/lib/src/Lib/Internal/BehaviorPack/Block.d.ts +0 -30
- package/lib/src/Lib/Internal/BehaviorPack/Block.js +0 -23
- package/lib/src/Lib/Internal/BehaviorPack/Block.js.map +0 -1
- package/lib/src/Lib/Internal/BehaviorPack/Entity.d.ts +0 -105
- package/lib/src/Lib/Internal/BehaviorPack/Entity.js +0 -26
- package/lib/src/Lib/Internal/BehaviorPack/Entity.js.map +0 -1
- package/lib/src/Lib/Internal/BehaviorPack/Feature.d.ts +0 -116
- package/lib/src/Lib/Internal/BehaviorPack/Feature.js +0 -45
- package/lib/src/Lib/Internal/BehaviorPack/Feature.js.map +0 -1
- package/lib/src/Lib/Internal/BehaviorPack/Item.d.ts +0 -32
- package/lib/src/Lib/Internal/BehaviorPack/Item.js +0 -23
- package/lib/src/Lib/Internal/BehaviorPack/Item.js.map +0 -1
- package/lib/src/Lib/Internal/BehaviorPack/index.d.ts +0 -5
- package/lib/src/Lib/Internal/BehaviorPack/index.js +0 -23
- package/lib/src/Lib/Internal/BehaviorPack/index.js.map +0 -1
- package/lib/src/Lib/Internal/Comment/Comment.d.ts +0 -2
- package/lib/src/Lib/Internal/Comment/Comment.js +0 -12
- package/lib/src/Lib/Internal/Comment/Comment.js.map +0 -1
- package/lib/src/Lib/Internal/Comment/index.d.ts +0 -1
- package/lib/src/Lib/Internal/Comment/index.js +0 -19
- package/lib/src/Lib/Internal/Comment/index.js.map +0 -1
- package/lib/src/Lib/Internal/General/Commands.js +0 -3
- package/lib/src/Lib/Internal/General/Commands.js.map +0 -1
- package/lib/src/Lib/Internal/General/Controllers/State.js +0 -19
- package/lib/src/Lib/Internal/General/Controllers/State.js.map +0 -1
- package/lib/src/Lib/Internal/General/Controllers/index.d.ts +0 -1
- package/lib/src/Lib/Internal/General/Controllers/index.js +0 -19
- package/lib/src/Lib/Internal/General/Controllers/index.js.map +0 -1
- package/lib/src/Lib/Internal/General/index.d.ts +0 -2
- package/lib/src/Lib/Internal/General/index.js +0 -33
- package/lib/src/Lib/Internal/General/index.js.map +0 -1
- package/lib/src/Lib/Internal/Json.d.ts +0 -8
- package/lib/src/Lib/Internal/Json.js +0 -43
- package/lib/src/Lib/Internal/Json.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/Animation.d.ts +0 -64
- package/lib/src/Lib/Internal/ResourcePack/Animation.js +0 -32
- package/lib/src/Lib/Internal/ResourcePack/Animation.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/AnimationController.d.ts +0 -66
- package/lib/src/Lib/Internal/ResourcePack/AnimationController.js +0 -49
- package/lib/src/Lib/Internal/ResourcePack/AnimationController.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/Attachable.d.ts +0 -48
- package/lib/src/Lib/Internal/ResourcePack/Attachable.js +0 -25
- package/lib/src/Lib/Internal/ResourcePack/Attachable.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/BlockCulling.d.ts +0 -76
- package/lib/src/Lib/Internal/ResourcePack/BlockCulling.js +0 -25
- package/lib/src/Lib/Internal/ResourcePack/BlockCulling.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/Entity.d.ts +0 -45
- package/lib/src/Lib/Internal/ResourcePack/Entity.js +0 -23
- package/lib/src/Lib/Internal/ResourcePack/Entity.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/Fog.d.ts +0 -51
- package/lib/src/Lib/Internal/ResourcePack/Fog.js +0 -25
- package/lib/src/Lib/Internal/ResourcePack/Fog.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/Material.d.ts +0 -12
- package/lib/src/Lib/Internal/ResourcePack/Material.js +0 -15
- package/lib/src/Lib/Internal/ResourcePack/Material.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/Model.d.ts +0 -71
- package/lib/src/Lib/Internal/ResourcePack/Model.js +0 -78
- package/lib/src/Lib/Internal/ResourcePack/Model.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/Particle.d.ts +0 -34
- package/lib/src/Lib/Internal/ResourcePack/Particle.js +0 -25
- package/lib/src/Lib/Internal/ResourcePack/Particle.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/RenderController.d.ts +0 -54
- package/lib/src/Lib/Internal/ResourcePack/RenderController.js +0 -16
- package/lib/src/Lib/Internal/ResourcePack/RenderController.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/SoundDefinitions.d.ts +0 -32
- package/lib/src/Lib/Internal/ResourcePack/SoundDefinitions.js +0 -20
- package/lib/src/Lib/Internal/ResourcePack/SoundDefinitions.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/TextureAtlas.d.ts +0 -28
- package/lib/src/Lib/Internal/ResourcePack/TextureAtlas.js +0 -22
- package/lib/src/Lib/Internal/ResourcePack/TextureAtlas.js.map +0 -1
- package/lib/src/Lib/Internal/ResourcePack/index.d.ts +0 -12
- package/lib/src/Lib/Internal/ResourcePack/index.js +0 -30
- package/lib/src/Lib/Internal/ResourcePack/index.js.map +0 -1
- package/lib/src/Lib/Internal/Types/FormatVersion.js +0 -69
- package/lib/src/Lib/Internal/Types/FormatVersion.js.map +0 -1
- package/lib/src/Lib/Internal/Types/Manifest.d.ts +0 -113
- package/lib/src/Lib/Internal/Types/Manifest.js +0 -153
- package/lib/src/Lib/Internal/Types/Manifest.js.map +0 -1
- package/lib/src/Lib/Internal/Types/Script.js +0 -37
- package/lib/src/Lib/Internal/Types/Script.js.map +0 -1
- package/lib/src/Lib/Internal/Types/index.d.ts +0 -3
- package/lib/src/Lib/Internal/Types/index.js +0 -21
- package/lib/src/Lib/Internal/Types/index.js.map +0 -1
- package/lib/src/Lib/Internal/index.d.ts +0 -6
- package/lib/src/Lib/Internal/index.js +0 -37
- package/lib/src/Lib/Internal/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Animation/Animation.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Animation/Animation.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Animation/Animation.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Animation/Process.d.ts +0 -4
- package/lib/src/Lib/Project/BehaviorPack/Animation/Process.js +0 -56
- package/lib/src/Lib/Project/BehaviorPack/Animation/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Animation/index.d.ts +0 -2
- package/lib/src/Lib/Project/BehaviorPack/Animation/index.js +0 -20
- package/lib/src/Lib/Project/BehaviorPack/Animation/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/AnimationController.d.ts +0 -10
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/AnimationController.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/AnimationController.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/Process.js +0 -73
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/index.d.ts +0 -2
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/index.js +0 -20
- package/lib/src/Lib/Project/BehaviorPack/AnimationController/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/BehaviorPack.d.ts +0 -102
- package/lib/src/Lib/Project/BehaviorPack/BehaviorPack.js +0 -245
- package/lib/src/Lib/Project/BehaviorPack/BehaviorPack.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/BehaviorPackCollection.d.ts +0 -43
- package/lib/src/Lib/Project/BehaviorPack/BehaviorPackCollection.js +0 -35
- package/lib/src/Lib/Project/BehaviorPack/BehaviorPackCollection.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Block/Block.d.ts +0 -11
- package/lib/src/Lib/Project/BehaviorPack/Block/Block.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Block/Block.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Block/BlockState.js +0 -54
- package/lib/src/Lib/Project/BehaviorPack/Block/BlockState.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Block/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Block/Process.js +0 -62
- package/lib/src/Lib/Project/BehaviorPack/Block/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Block/index.d.ts +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Block/index.js +0 -21
- package/lib/src/Lib/Project/BehaviorPack/Block/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Entity/Entity.d.ts +0 -19
- package/lib/src/Lib/Project/BehaviorPack/Entity/Entity.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Entity/Entity.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Entity/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Entity/Process.js +0 -99
- package/lib/src/Lib/Project/BehaviorPack/Entity/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Entity/Properties.js +0 -48
- package/lib/src/Lib/Project/BehaviorPack/Entity/Properties.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Entity/index.d.ts +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Entity/index.js +0 -21
- package/lib/src/Lib/Project/BehaviorPack/Entity/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Enum/index.d.ts +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Enum/index.js +0 -19
- package/lib/src/Lib/Project/BehaviorPack/Enum/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Feature/Feature.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Feature/Feature.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Feature/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Feature/Process.js +0 -52
- package/lib/src/Lib/Project/BehaviorPack/Feature/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Feature/index.d.ts +0 -2
- package/lib/src/Lib/Project/BehaviorPack/Feature/index.js +0 -20
- package/lib/src/Lib/Project/BehaviorPack/Feature/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/FileType.js +0 -85
- package/lib/src/Lib/Project/BehaviorPack/FileType.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Item/Item.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Item/Item.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Item/Item.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Item/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Item/Process.js +0 -53
- package/lib/src/Lib/Project/BehaviorPack/Item/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Item/index.d.ts +0 -2
- package/lib/src/Lib/Project/BehaviorPack/Item/index.js +0 -20
- package/lib/src/Lib/Project/BehaviorPack/Item/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/LootTable/LootTable.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/LootTable/LootTable.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/LootTable/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/LootTable/Process.js +0 -24
- package/lib/src/Lib/Project/BehaviorPack/LootTable/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/LootTable/index.d.ts +0 -2
- package/lib/src/Lib/Project/BehaviorPack/LootTable/index.js +0 -20
- package/lib/src/Lib/Project/BehaviorPack/LootTable/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/McFunction/Comment.js +0 -10
- package/lib/src/Lib/Project/BehaviorPack/McFunction/Comment.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/McFunction/Function.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/McFunction/Function.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/McFunction/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/McFunction/Process.js +0 -31
- package/lib/src/Lib/Project/BehaviorPack/McFunction/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/McFunction/index.d.ts +0 -3
- package/lib/src/Lib/Project/BehaviorPack/McFunction/index.js +0 -21
- package/lib/src/Lib/Project/BehaviorPack/McFunction/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Structure/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Structure/Process.js +0 -28
- package/lib/src/Lib/Project/BehaviorPack/Structure/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Structure/Structure.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Structure/Structure.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Structure/index.d.ts +0 -2
- package/lib/src/Lib/Project/BehaviorPack/Structure/index.js +0 -20
- package/lib/src/Lib/Project/BehaviorPack/Structure/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Trading/Process.d.ts +0 -8
- package/lib/src/Lib/Project/BehaviorPack/Trading/Process.js +0 -24
- package/lib/src/Lib/Project/BehaviorPack/Trading/Process.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Trading/Trading.js +0 -3
- package/lib/src/Lib/Project/BehaviorPack/Trading/Trading.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/Trading/index.d.ts +0 -2
- package/lib/src/Lib/Project/BehaviorPack/Trading/index.js +0 -20
- package/lib/src/Lib/Project/BehaviorPack/Trading/index.js.map +0 -1
- package/lib/src/Lib/Project/BehaviorPack/index.d.ts +0 -12
- package/lib/src/Lib/Project/BehaviorPack/index.js +0 -43
- package/lib/src/Lib/Project/BehaviorPack/index.js.map +0 -1
- package/lib/src/Lib/Project/General/General.d.ts +0 -48
- package/lib/src/Lib/Project/General/General.js +0 -89
- package/lib/src/Lib/Project/General/General.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Commands/Process.d.ts +0 -43
- package/lib/src/Lib/Project/General/Types/Commands/Process.js +0 -167
- package/lib/src/Lib/Project/General/Types/Commands/Process.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Commands/index.d.ts +0 -1
- package/lib/src/Lib/Project/General/Types/Commands/index.js +0 -19
- package/lib/src/Lib/Project/General/Types/Commands/index.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/GeneralInfo.js +0 -27
- package/lib/src/Lib/Project/General/Types/GeneralInfo.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Objective/Process.d.ts +0 -4
- package/lib/src/Lib/Project/General/Types/Objective/Process.js +0 -56
- package/lib/src/Lib/Project/General/Types/Objective/Process.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Objective/index.d.ts +0 -1
- package/lib/src/Lib/Project/General/Types/Objective/index.js +0 -19
- package/lib/src/Lib/Project/General/Types/Objective/index.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Structures/Process.d.ts +0 -4
- package/lib/src/Lib/Project/General/Types/Structures/Process.js +0 -15
- package/lib/src/Lib/Project/General/Types/Structures/Process.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Structures/index.d.ts +0 -1
- package/lib/src/Lib/Project/General/Types/Structures/index.js +0 -19
- package/lib/src/Lib/Project/General/Types/Structures/index.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Tag/Process.d.ts +0 -4
- package/lib/src/Lib/Project/General/Types/Tag/Process.js +0 -15
- package/lib/src/Lib/Project/General/Types/Tag/Process.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/Tag/index.d.ts +0 -1
- package/lib/src/Lib/Project/General/Types/Tag/index.js +0 -19
- package/lib/src/Lib/Project/General/Types/Tag/index.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/TickingArea/Process.d.ts +0 -4
- package/lib/src/Lib/Project/General/Types/TickingArea/Process.js +0 -66
- package/lib/src/Lib/Project/General/Types/TickingArea/Process.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/TickingArea/index.d.ts +0 -1
- package/lib/src/Lib/Project/General/Types/TickingArea/index.js +0 -19
- package/lib/src/Lib/Project/General/Types/TickingArea/index.js.map +0 -1
- package/lib/src/Lib/Project/General/Types/index.d.ts +0 -6
- package/lib/src/Lib/Project/General/Types/index.js +0 -37
- package/lib/src/Lib/Project/General/Types/index.js.map +0 -1
- package/lib/src/Lib/Project/General/index.d.ts +0 -2
- package/lib/src/Lib/Project/General/index.js +0 -33
- package/lib/src/Lib/Project/General/index.js.map +0 -1
- package/lib/src/Lib/Project/PackType.js +0 -88
- package/lib/src/Lib/Project/PackType.js.map +0 -1
- package/lib/src/Lib/Project/ProjectData.d.ts +0 -66
- package/lib/src/Lib/Project/ProjectData.js +0 -152
- package/lib/src/Lib/Project/ProjectData.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Animation/Animation.d.ts +0 -12
- package/lib/src/Lib/Project/ResourcePack/Animation/Animation.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Animation/Animation.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Animation/Process.d.ts +0 -4
- package/lib/src/Lib/Project/ResourcePack/Animation/Process.js +0 -74
- package/lib/src/Lib/Project/ResourcePack/Animation/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Animation/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Animation/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Animation/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/AnimationController/AnimationController.d.ts +0 -15
- package/lib/src/Lib/Project/ResourcePack/AnimationController/AnimationController.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/AnimationController/AnimationController.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/AnimationController/Process.d.ts +0 -4
- package/lib/src/Lib/Project/ResourcePack/AnimationController/Process.js +0 -78
- package/lib/src/Lib/Project/ResourcePack/AnimationController/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/AnimationController/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/AnimationController/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/AnimationController/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Attachable/Attachable.d.ts +0 -10
- package/lib/src/Lib/Project/ResourcePack/Attachable/Attachable.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Attachable/Attachable.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Attachable/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Attachable/Process.js +0 -98
- package/lib/src/Lib/Project/ResourcePack/Attachable/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Attachable/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Attachable/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Attachable/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Block/Block.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Block/Block.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Block/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Block/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Block/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/Culling.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/Culling.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/Process.d.ts +0 -3
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/Process.js +0 -60
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/BlockCulling/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Entity/Entity.d.ts +0 -10
- package/lib/src/Lib/Project/ResourcePack/Entity/Entity.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Entity/Entity.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Entity/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Entity/Process.js +0 -97
- package/lib/src/Lib/Project/ResourcePack/Entity/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Entity/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Entity/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Entity/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Enum/index.d.ts +0 -1
- package/lib/src/Lib/Project/ResourcePack/Enum/index.js +0 -19
- package/lib/src/Lib/Project/ResourcePack/Enum/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/FileType.js +0 -104
- package/lib/src/Lib/Project/ResourcePack/FileType.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Fog/Fog.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Fog/Fog.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Fog/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Fog/Process.js +0 -51
- package/lib/src/Lib/Project/ResourcePack/Fog/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Fog/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Fog/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Fog/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Material/Material.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Material/Material.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Material/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Material/Process.js +0 -55
- package/lib/src/Lib/Project/ResourcePack/Material/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Material/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Material/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Material/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Model/Model.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Model/Model.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Model/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Model/Process.js +0 -90
- package/lib/src/Lib/Project/ResourcePack/Model/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Model/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Model/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Model/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Particle/Particle.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Particle/Particle.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Particle/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Particle/Process.js +0 -51
- package/lib/src/Lib/Project/ResourcePack/Particle/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Particle/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Particle/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Particle/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/RenderController/Process.d.ts +0 -4
- package/lib/src/Lib/Project/ResourcePack/RenderController/Process.js +0 -55
- package/lib/src/Lib/Project/ResourcePack/RenderController/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/RenderController/RenderController.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/RenderController/RenderController.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/RenderController/RenderController.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/RenderController/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/RenderController/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/RenderController/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/ResourcePack.d.ts +0 -109
- package/lib/src/Lib/Project/ResourcePack/ResourcePack.js +0 -281
- package/lib/src/Lib/Project/ResourcePack/ResourcePack.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/ResourcePackCollection.d.ts +0 -46
- package/lib/src/Lib/Project/ResourcePack/ResourcePackCollection.js +0 -32
- package/lib/src/Lib/Project/ResourcePack/ResourcePackCollection.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Sound/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Sound/Process.js +0 -54
- package/lib/src/Lib/Project/ResourcePack/Sound/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Sound/Sound.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Sound/Sound.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Sound/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Sound/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Sound/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Texture/Process.d.ts +0 -8
- package/lib/src/Lib/Project/ResourcePack/Texture/Process.js +0 -55
- package/lib/src/Lib/Project/ResourcePack/Texture/Process.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Texture/Texture.js +0 -3
- package/lib/src/Lib/Project/ResourcePack/Texture/Texture.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/Texture/index.d.ts +0 -2
- package/lib/src/Lib/Project/ResourcePack/Texture/index.js +0 -20
- package/lib/src/Lib/Project/ResourcePack/Texture/index.js.map +0 -1
- package/lib/src/Lib/Project/ResourcePack/index.d.ts +0 -15
- package/lib/src/Lib/Project/ResourcePack/index.js +0 -46
- package/lib/src/Lib/Project/ResourcePack/index.js.map +0 -1
- package/lib/src/Lib/Project/SkinPack/FileType.js +0 -36
- package/lib/src/Lib/Project/SkinPack/FileType.js.map +0 -1
- package/lib/src/Lib/Project/SkinPack/index.js.map +0 -1
- package/lib/src/Lib/Project/Util.d.ts +0 -34
- package/lib/src/Lib/Project/Util.js +0 -47
- package/lib/src/Lib/Project/Util.js.map +0 -1
- package/lib/src/Lib/Project/World/WorldPack.d.ts +0 -65
- package/lib/src/Lib/Project/World/WorldPack.js +0 -89
- package/lib/src/Lib/Project/World/WorldPack.js.map +0 -1
- package/lib/src/Lib/Project/World/WorldPackCollection.d.ts +0 -9
- package/lib/src/Lib/Project/World/WorldPackCollection.js +0 -18
- package/lib/src/Lib/Project/World/WorldPackCollection.js.map +0 -1
- package/lib/src/Lib/Project/World/index.d.ts +0 -2
- package/lib/src/Lib/Project/World/index.js +0 -20
- package/lib/src/Lib/Project/World/index.js.map +0 -1
- package/lib/src/Lib/Project/index.d.ts +0 -8
- package/lib/src/Lib/Project/index.js +0 -39
- package/lib/src/Lib/Project/index.js.map +0 -1
- package/lib/src/Lib/Types/Carrier.js +0 -3
- package/lib/src/Lib/Types/Carrier.js.map +0 -1
- package/lib/src/Lib/Types/Container.js +0 -20
- package/lib/src/Lib/Types/Container.js.map +0 -1
- package/lib/src/Lib/Types/DataSet.d.ts +0 -66
- package/lib/src/Lib/Types/DataSet.js +0 -94
- package/lib/src/Lib/Types/DataSet.js.map +0 -1
- package/lib/src/Lib/Types/DataSetConnector.d.ts +0 -23
- package/lib/src/Lib/Types/DataSetConnector.js +0 -59
- package/lib/src/Lib/Types/DataSetConnector.js.map +0 -1
- package/lib/src/Lib/Types/Documentation.d.ts +0 -14
- package/lib/src/Lib/Types/Documentation.js +0 -83
- package/lib/src/Lib/Types/Documentation.js.map +0 -1
- package/lib/src/Lib/Types/IDataSet.js +0 -3
- package/lib/src/Lib/Types/IDataSet.js.map +0 -1
- package/lib/src/Lib/Types/JsonPath.d.ts +0 -25
- package/lib/src/Lib/Types/JsonPath.js +0 -48
- package/lib/src/Lib/Types/JsonPath.js.map +0 -1
- package/lib/src/Lib/Types/Pack.d.ts +0 -53
- package/lib/src/Lib/Types/Pack.js +0 -20
- package/lib/src/Lib/Types/Pack.js.map +0 -1
- package/lib/src/Lib/Types/PackCollection.d.ts +0 -48
- package/lib/src/Lib/Types/PackCollection.js +0 -91
- package/lib/src/Lib/Types/PackCollection.js.map +0 -1
- package/lib/src/Lib/Types/ProjectContext.d.ts +0 -13
- package/lib/src/Lib/Types/ProjectContext.js +0 -3
- package/lib/src/Lib/Types/ProjectContext.js.map +0 -1
- package/lib/src/Lib/Types/SMap.js +0 -23
- package/lib/src/Lib/Types/SMap.js.map +0 -1
- package/lib/src/Lib/Types/Text.js +0 -15
- package/lib/src/Lib/Types/Text.js.map +0 -1
- package/lib/src/Lib/Types/TextDocument.js +0 -28
- package/lib/src/Lib/Types/TextDocument.js.map +0 -1
- package/lib/src/Lib/Types/index.d.ts +0 -13
- package/lib/src/Lib/Types/index.js +0 -31
- package/lib/src/Lib/Types/index.js.map +0 -1
- package/lib/src/Lib/index.d.ts +0 -3
- package/lib/src/Lib/index.js +0 -31
- package/lib/src/Lib/index.js.map +0 -1
- /package/lib/src/{Lib/Internal/General/Commands.d.ts → internal/general/commands.d.ts} +0 -0
- /package/lib/src/{Lib/Internal/General/Controllers/State.d.ts → internal/general/controllers/state.d.ts} +0 -0
- /package/lib/src/{Lib/Internal/BehaviorPack → internal/resource-pack}/AnimationController.js +0 -0
- /package/lib/src/{Lib/Internal/Types/FormatVersion.d.ts → internal/types/format-version.d.ts} +0 -0
- /package/lib/src/{Lib/Internal/Types/Script.d.ts → internal/types/script.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/Block/BlockState.d.ts → project/behavior-pack/block/block-state.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/Entity/Properties.d.ts → project/behavior-pack/entity/properties.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/Feature/Feature.d.ts → project/behavior-pack/feature/feature.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/FileType.d.ts → project/behavior-pack/file-type.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/LootTable/LootTable.d.ts → project/behavior-pack/loot-table/loot-table.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/McFunction/Comment.d.ts → project/behavior-pack/mcfunction/comment.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/McFunction/Function.d.ts → project/behavior-pack/mcfunction/function.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/Structure/Structure.d.ts → project/behavior-pack/structure/structure.d.ts} +0 -0
- /package/lib/src/{Lib/Project/BehaviorPack/Trading/Trading.d.ts → project/behavior-pack/trading/trading.d.ts} +0 -0
- /package/lib/src/{Lib/Project/General/Types/GeneralInfo.d.ts → project/general/types/general-info.d.ts} +0 -0
- /package/lib/src/{Lib/Project/PackType.d.ts → project/pack-type.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/Block/Block.d.ts → project/resource-pack/block/block.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/BlockCulling/Culling.d.ts → project/resource-pack/block-culling/culling.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/FileType.d.ts → project/resource-pack/file-type.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/Fog/Fog.d.ts → project/resource-pack/fog/fog.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/Material/Material.d.ts → project/resource-pack/material/material.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/Model/Model.d.ts → project/resource-pack/model/model.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/Particle/Particle.d.ts → project/resource-pack/particle/particle.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/Sound/Sound.d.ts → project/resource-pack/sound/sound.d.ts} +0 -0
- /package/lib/src/{Lib/Project/ResourcePack/Texture/Texture.d.ts → project/resource-pack/texture/texture.d.ts} +0 -0
- /package/lib/src/{Lib/Project/SkinPack → project/skin-pack}/FileType.d.ts +0 -0
- /package/lib/src/{Lib/Project/SkinPack → project/skin-pack}/index.d.ts +0 -0
- /package/lib/src/{Lib/Project/SkinPack → project/skin-pack}/index.js +0 -0
- /package/lib/src/{Lib/Types/Carrier.d.ts → types/carrier.d.ts} +0 -0
- /package/lib/src/{Lib/Types/Container.d.ts → types/container.d.ts} +0 -0
- /package/lib/src/{Lib/Types/IDataSet.d.ts → types/i-data-set.d.ts} +0 -0
- /package/lib/src/{Lib/Types/SMap.d.ts → types/smap.d.ts} +0 -0
- /package/lib/src/{Lib/Types/TextDocument.d.ts → types/text-document.d.ts} +0 -0
- /package/lib/src/{Lib/Types/Text.d.ts → types/text.d.ts} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/Lib/Project/General/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,oBAAoB;AACpB,uDAAuC;AACvC,4CAA0B"}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PackType = void 0;
|
|
4
|
-
/** */
|
|
5
|
-
var PackType;
|
|
6
|
-
(function (PackType) {
|
|
7
|
-
/** */
|
|
8
|
-
PackType[PackType["resource_pack"] = 0] = "resource_pack";
|
|
9
|
-
/** */
|
|
10
|
-
PackType[PackType["behavior_pack"] = 1] = "behavior_pack";
|
|
11
|
-
/** */
|
|
12
|
-
PackType[PackType["skin_pack"] = 2] = "skin_pack";
|
|
13
|
-
/** */
|
|
14
|
-
PackType[PackType["world"] = 3] = "world";
|
|
15
|
-
/** */
|
|
16
|
-
PackType[PackType["unknown"] = 4] = "unknown";
|
|
17
|
-
})(PackType || (exports.PackType = PackType = {}));
|
|
18
|
-
/** Detects the type of general data from the given uri
|
|
19
|
-
* @param uri The filepath to examine, expects slashes to be '/'*/
|
|
20
|
-
(function (PackType) {
|
|
21
|
-
/** */
|
|
22
|
-
PackType.BehaviorPackMatch = /[\/\\].*(behav(ior|iour)([ _-]|)pack|behav(ior|iour)|bp).*[\/\\]/i;
|
|
23
|
-
/** */
|
|
24
|
-
PackType.ResourcePackMatch = /[\/\\].*(resource([ _-]|)pack|resource|rp).*[\/\\]/i;
|
|
25
|
-
/** */
|
|
26
|
-
PackType.WorldMatch = /[\/\\].*(world([ _-]|)template|world|wp|db).*[\/\\]/i;
|
|
27
|
-
/** */
|
|
28
|
-
PackType.SkinPack = /[\/\\].*(skin([ _-]|)pack).*[\/\\]/i;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @param uri
|
|
32
|
-
*/
|
|
33
|
-
function detect(uri) {
|
|
34
|
-
if (PackType.BehaviorPackMatch.test(uri))
|
|
35
|
-
return PackType.behavior_pack;
|
|
36
|
-
if (PackType.ResourcePackMatch.test(uri))
|
|
37
|
-
return PackType.resource_pack;
|
|
38
|
-
if (PackType.WorldMatch.test(uri))
|
|
39
|
-
return PackType.world;
|
|
40
|
-
if (PackType.SkinPack.test(uri))
|
|
41
|
-
return PackType.skin_pack;
|
|
42
|
-
return PackType.unknown;
|
|
43
|
-
}
|
|
44
|
-
PackType.detect = detect;
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @param pack
|
|
48
|
-
* @returns
|
|
49
|
-
*/
|
|
50
|
-
function toString(pack) {
|
|
51
|
-
switch (pack) {
|
|
52
|
-
case PackType.behavior_pack:
|
|
53
|
-
return "behavior";
|
|
54
|
-
case PackType.resource_pack:
|
|
55
|
-
return "resource";
|
|
56
|
-
case PackType.skin_pack:
|
|
57
|
-
return "skin";
|
|
58
|
-
case PackType.world:
|
|
59
|
-
return "world";
|
|
60
|
-
case PackType.unknown:
|
|
61
|
-
default:
|
|
62
|
-
return "unknown";
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
PackType.toString = toString;
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @param pack
|
|
69
|
-
* @returns
|
|
70
|
-
*/
|
|
71
|
-
function toStringShort(pack) {
|
|
72
|
-
switch (pack) {
|
|
73
|
-
case PackType.behavior_pack:
|
|
74
|
-
return "bp";
|
|
75
|
-
case PackType.resource_pack:
|
|
76
|
-
return "rp";
|
|
77
|
-
case PackType.skin_pack:
|
|
78
|
-
return "sp";
|
|
79
|
-
case PackType.world:
|
|
80
|
-
return "wp";
|
|
81
|
-
case PackType.unknown:
|
|
82
|
-
default:
|
|
83
|
-
return "unknown";
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
PackType.toStringShort = toStringShort;
|
|
87
|
-
})(PackType || (exports.PackType = PackType = {}));
|
|
88
|
-
//# sourceMappingURL=PackType.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PackType.js","sourceRoot":"","sources":["../../../../src/Lib/Project/PackType.ts"],"names":[],"mappings":";;;AAAA,MAAM;AACN,IAAY,QAWX;AAXD,WAAY,QAAQ;IAClB,MAAM;IACN,yDAAa,CAAA;IACb,MAAM;IACN,yDAAa,CAAA;IACb,MAAM;IACN,iDAAS,CAAA;IACT,MAAM;IACN,yCAAK,CAAA;IACL,MAAM;IACN,6CAAO,CAAA;AACT,CAAC,EAXW,QAAQ,wBAAR,QAAQ,QAWnB;AAED;kEACkE;AAClE,WAAiB,QAAQ;IACvB,MAAM;IACO,0BAAiB,GAAW,mEAAmE,CAAC;IAC7G,MAAM;IACO,0BAAiB,GAAW,qDAAqD,CAAC;IAC/F,MAAM;IACO,mBAAU,GAAW,sDAAsD,CAAC;IACzF,MAAM;IACO,iBAAQ,GAAW,qCAAqC,CAAC;IAEtE;;;OAGG;IACH,SAAgB,MAAM,CAAC,GAAW;QAChC,IAAI,SAAA,iBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC;YAAE,OAAO,QAAQ,CAAC,aAAa,CAAC;QAC/D,IAAI,SAAA,iBAAiB,CAAC,IAAI,CAAC,GAAG,CAAC;YAAE,OAAO,QAAQ,CAAC,aAAa,CAAC;QAC/D,IAAI,SAAA,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC;YAAE,OAAO,QAAQ,CAAC,KAAK,CAAC;QAChD,IAAI,SAAA,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC;YAAE,OAAO,QAAQ,CAAC,SAAS,CAAC;QAElD,OAAO,QAAQ,CAAC,OAAO,CAAC;IAC1B,CAAC;IAPe,eAAM,SAOrB,CAAA;IAED;;;;OAIG;IACH,SAAgB,QAAQ,CAAC,IAAe;QACtC,QAAQ,IAAI,EAAE,CAAC;YACb,KAAK,QAAQ,CAAC,aAAa;gBACzB,OAAO,UAAU,CAAC;YACpB,KAAK,QAAQ,CAAC,aAAa;gBACzB,OAAO,UAAU,CAAC;YACpB,KAAK,QAAQ,CAAC,SAAS;gBACrB,OAAO,MAAM,CAAC;YAChB,KAAK,QAAQ,CAAC,KAAK;gBACjB,OAAO,OAAO,CAAC;YACjB,KAAK,QAAQ,CAAC,OAAO,CAAC;YACtB;gBACE,OAAO,SAAS,CAAC;QACrB,CAAC;IACH,CAAC;IAde,iBAAQ,WAcvB,CAAA;IAED;;;;OAIG;IACH,SAAgB,aAAa,CAAC,IAAe;QAC3C,QAAQ,IAAI,EAAE,CAAC;YACb,KAAK,QAAQ,CAAC,aAAa;gBACzB,OAAO,IAAI,CAAC;YACd,KAAK,QAAQ,CAAC,aAAa;gBACzB,OAAO,IAAI,CAAC;YACd,KAAK,QAAQ,CAAC,SAAS;gBACrB,OAAO,IAAI,CAAC;YACd,KAAK,QAAQ,CAAC,KAAK;gBACjB,OAAO,IAAI,CAAC;YACd,KAAK,QAAQ,CAAC,OAAO,CAAC;YACtB;gBACE,OAAO,SAAS,CAAC;QACrB,CAAC;IACH,CAAC;IAde,sBAAa,gBAc5B,CAAA;AACH,CAAC,EAhEgB,QAAQ,wBAAR,QAAQ,QAgExB"}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { BehaviorPack } from "./BehaviorPack/BehaviorPack";
|
|
2
|
-
import { BehaviorPackCollection } from "./BehaviorPack/BehaviorPackCollection";
|
|
3
|
-
import { DataSetBase } from "../Types/DataSet";
|
|
4
|
-
import { Documents } from "../Types/ProjectContext";
|
|
5
|
-
import { GeneralCollection } from "./General/General";
|
|
6
|
-
import { MCProject } from "bc-minecraft-project";
|
|
7
|
-
import { Pack } from "../Types/Pack";
|
|
8
|
-
import { ResourcePack } from "./ResourcePack/ResourcePack";
|
|
9
|
-
import { ResourcePackCollection } from "./ResourcePack/ResourcePackCollection";
|
|
10
|
-
import { TextDocument } from "../Types/TextDocument";
|
|
11
|
-
import { Types } from "bc-minecraft-bedrock-types";
|
|
12
|
-
import { WorldPack } from "./World/WorldPack";
|
|
13
|
-
import { WorldPackCollection } from "./World";
|
|
14
|
-
/**The project cache for minecraft*/
|
|
15
|
-
export declare class ProjectData {
|
|
16
|
-
/**The collection of behavior packs*/
|
|
17
|
-
behaviorPacks: BehaviorPackCollection;
|
|
18
|
-
/**The collection of resource packs*/
|
|
19
|
-
resourcePacks: ResourcePackCollection;
|
|
20
|
-
/**The collection of worlds*/
|
|
21
|
-
worlds: WorldPackCollection;
|
|
22
|
-
/**The collection of general items*/
|
|
23
|
-
general: GeneralCollection;
|
|
24
|
-
/**The context needed to run this project data collection*/
|
|
25
|
-
documents: Documents<TextDocument>;
|
|
26
|
-
constructor(context: Documents<TextDocument>);
|
|
27
|
-
/**Processes the given textdocument into the bacp
|
|
28
|
-
* @param doc The document to process
|
|
29
|
-
* @returns Returns the possible data the document was added to*/
|
|
30
|
-
process(doc: TextDocument): DataSetBase | undefined;
|
|
31
|
-
/**Returns the specific pack that belongs the document, returns undefined if nothing is found
|
|
32
|
-
* @param doc The document to process*/
|
|
33
|
-
get(doc: TextDocument | string): BehaviorPack | ResourcePack | WorldPack | undefined;
|
|
34
|
-
/** */
|
|
35
|
-
find(predicate: (value: Types.BaseObject) => boolean): Types.BaseObject | undefined;
|
|
36
|
-
/**Checks if the given collection has a given entity
|
|
37
|
-
* @param id The idenfitication of the entity
|
|
38
|
-
* @returns true when it exists, false when it does not*/
|
|
39
|
-
hasEntity(id: string): boolean;
|
|
40
|
-
/**Checks if the given collection has a given block
|
|
41
|
-
* @param id The idenfitication of the block
|
|
42
|
-
* @returns true when it exists, false when it does not*/
|
|
43
|
-
hasBlock(id: string): boolean;
|
|
44
|
-
/**Checks if the given collection has a given item
|
|
45
|
-
* @param id The idenfitication of the item
|
|
46
|
-
* @returns true when it exists, false when it does not*/
|
|
47
|
-
hasItem(id: string): boolean;
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* @param uri
|
|
51
|
-
*/
|
|
52
|
-
deleteFile(uri: string): boolean;
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @param uri
|
|
56
|
-
* @returns
|
|
57
|
-
*/
|
|
58
|
-
deleteFolder(uri: string): boolean;
|
|
59
|
-
/**
|
|
60
|
-
* Add the given manifest uri to the pack
|
|
61
|
-
* @param manifestUri The uri/filepath to the manifest
|
|
62
|
-
* @param context The path to the context files, or the data itself
|
|
63
|
-
* @returns The pack if its was determine what it was.
|
|
64
|
-
*/
|
|
65
|
-
addPack(manifestUri: string, context: string | MCProject): Pack | undefined;
|
|
66
|
-
}
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ProjectData = void 0;
|
|
4
|
-
const BehaviorPackCollection_1 = require("./BehaviorPack/BehaviorPackCollection");
|
|
5
|
-
const Enum_1 = require("./BehaviorPack/Enum");
|
|
6
|
-
const General_1 = require("./General/General");
|
|
7
|
-
const Manifest_1 = require("../Internal/Types/Manifest");
|
|
8
|
-
const PackType_1 = require("./PackType");
|
|
9
|
-
const ResourcePackCollection_1 = require("./ResourcePack/ResourcePackCollection");
|
|
10
|
-
const World_1 = require("./World");
|
|
11
|
-
const Process_1 = require("./General/Types/Commands/Process");
|
|
12
|
-
/**The project cache for minecraft*/
|
|
13
|
-
class ProjectData {
|
|
14
|
-
constructor(context) {
|
|
15
|
-
this.behaviorPacks = new BehaviorPackCollection_1.BehaviorPackCollection();
|
|
16
|
-
this.resourcePacks = new ResourcePackCollection_1.ResourcePackCollection();
|
|
17
|
-
this.general = new General_1.GeneralCollection();
|
|
18
|
-
this.worlds = new World_1.WorldPackCollection();
|
|
19
|
-
this.documents = context;
|
|
20
|
-
}
|
|
21
|
-
/**Processes the given textdocument into the bacp
|
|
22
|
-
* @param doc The document to process
|
|
23
|
-
* @returns Returns the possible data the document was added to*/
|
|
24
|
-
process(doc) {
|
|
25
|
-
const type = PackType_1.PackType.detect(doc.uri);
|
|
26
|
-
switch (type) {
|
|
27
|
-
case PackType_1.PackType.behavior_pack:
|
|
28
|
-
const out = this.behaviorPacks.process(doc);
|
|
29
|
-
//Pre process Commands
|
|
30
|
-
switch (Enum_1.FileType.detect(doc.uri)) {
|
|
31
|
-
case Enum_1.FileType.function:
|
|
32
|
-
(0, Process_1.ProcessMcFunction)(doc, this.general);
|
|
33
|
-
break;
|
|
34
|
-
case Enum_1.FileType.animation:
|
|
35
|
-
(0, Process_1.ProcessAnimationCommands)(doc, this.general);
|
|
36
|
-
break;
|
|
37
|
-
case Enum_1.FileType.animation_controller:
|
|
38
|
-
(0, Process_1.ProcessAnimationControllerCommands)(doc, this.general);
|
|
39
|
-
break;
|
|
40
|
-
case Enum_1.FileType.entity:
|
|
41
|
-
(0, Process_1.processEntityCommands)(doc, this.general);
|
|
42
|
-
break;
|
|
43
|
-
}
|
|
44
|
-
return out;
|
|
45
|
-
case PackType_1.PackType.resource_pack:
|
|
46
|
-
return this.resourcePacks.process(doc);
|
|
47
|
-
case PackType_1.PackType.world:
|
|
48
|
-
return this.worlds.process(doc);
|
|
49
|
-
}
|
|
50
|
-
return undefined;
|
|
51
|
-
}
|
|
52
|
-
/**Returns the specific pack that belongs the document, returns undefined if nothing is found
|
|
53
|
-
* @param doc The document to process*/
|
|
54
|
-
get(doc) {
|
|
55
|
-
let out;
|
|
56
|
-
if ((out = this.behaviorPacks.get(doc)))
|
|
57
|
-
return out;
|
|
58
|
-
if ((out = this.resourcePacks.get(doc)))
|
|
59
|
-
return out;
|
|
60
|
-
if ((out = this.worlds.get(doc)))
|
|
61
|
-
return out;
|
|
62
|
-
return undefined;
|
|
63
|
-
}
|
|
64
|
-
/** */
|
|
65
|
-
find(predicate) {
|
|
66
|
-
let value = undefined;
|
|
67
|
-
if ((value = this.behaviorPacks.find(predicate)))
|
|
68
|
-
return value;
|
|
69
|
-
if ((value = this.resourcePacks.find(predicate)))
|
|
70
|
-
return value;
|
|
71
|
-
if ((value = this.general.find(predicate)))
|
|
72
|
-
return value;
|
|
73
|
-
if ((value = this.worlds.find(predicate)))
|
|
74
|
-
return value;
|
|
75
|
-
return undefined;
|
|
76
|
-
}
|
|
77
|
-
/**Checks if the given collection has a given entity
|
|
78
|
-
* @param id The idenfitication of the entity
|
|
79
|
-
* @returns true when it exists, false when it does not*/
|
|
80
|
-
hasEntity(id) {
|
|
81
|
-
if (this.behaviorPacks.entities.has(id) || this.resourcePacks.entities.has(id))
|
|
82
|
-
return true;
|
|
83
|
-
return false;
|
|
84
|
-
}
|
|
85
|
-
/**Checks if the given collection has a given block
|
|
86
|
-
* @param id The idenfitication of the block
|
|
87
|
-
* @returns true when it exists, false when it does not*/
|
|
88
|
-
hasBlock(id) {
|
|
89
|
-
if (this.behaviorPacks.blocks.has(id))
|
|
90
|
-
return true;
|
|
91
|
-
return false;
|
|
92
|
-
}
|
|
93
|
-
/**Checks if the given collection has a given item
|
|
94
|
-
* @param id The idenfitication of the item
|
|
95
|
-
* @returns true when it exists, false when it does not*/
|
|
96
|
-
hasItem(id) {
|
|
97
|
-
if (this.behaviorPacks.items.has(id))
|
|
98
|
-
return true;
|
|
99
|
-
return false;
|
|
100
|
-
}
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @param uri
|
|
104
|
-
*/
|
|
105
|
-
deleteFile(uri) {
|
|
106
|
-
let out = false;
|
|
107
|
-
out = this.behaviorPacks.deleteFile(uri) || out;
|
|
108
|
-
out = this.general.deleteFile(uri) || out;
|
|
109
|
-
out = this.resourcePacks.deleteFile(uri) || out;
|
|
110
|
-
return out;
|
|
111
|
-
}
|
|
112
|
-
/**
|
|
113
|
-
*
|
|
114
|
-
* @param uri
|
|
115
|
-
* @returns
|
|
116
|
-
*/
|
|
117
|
-
deleteFolder(uri) {
|
|
118
|
-
let out = false;
|
|
119
|
-
out = this.behaviorPacks.deleteFolder(uri) || out;
|
|
120
|
-
out = this.general.deleteFolder(uri) || out;
|
|
121
|
-
out = this.resourcePacks.deleteFolder(uri) || out;
|
|
122
|
-
return out;
|
|
123
|
-
}
|
|
124
|
-
/**
|
|
125
|
-
* Add the given manifest uri to the pack
|
|
126
|
-
* @param manifestUri The uri/filepath to the manifest
|
|
127
|
-
* @param context The path to the context files, or the data itself
|
|
128
|
-
* @returns The pack if its was determine what it was.
|
|
129
|
-
*/
|
|
130
|
-
addPack(manifestUri, context) {
|
|
131
|
-
const manifest = Manifest_1.Manifest.getManifest(manifestUri, this.documents.getDocument.bind(this.documents));
|
|
132
|
-
if (!manifest)
|
|
133
|
-
return;
|
|
134
|
-
const types = Manifest_1.Manifest.detectTypeUri(manifestUri, manifest);
|
|
135
|
-
const parent = manifestUri.replace(/[\\\/]manifest.json/gi, "");
|
|
136
|
-
switch (types) {
|
|
137
|
-
case PackType_1.PackType.behavior_pack:
|
|
138
|
-
return this.behaviorPacks.add(parent, context, manifest);
|
|
139
|
-
case PackType_1.PackType.resource_pack:
|
|
140
|
-
return this.resourcePacks.add(parent, context, manifest);
|
|
141
|
-
case PackType_1.PackType.world:
|
|
142
|
-
return this.worlds.add(parent, context, manifest);
|
|
143
|
-
case PackType_1.PackType.skin_pack:
|
|
144
|
-
case PackType_1.PackType.unknown:
|
|
145
|
-
default:
|
|
146
|
-
return undefined;
|
|
147
|
-
}
|
|
148
|
-
return undefined;
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
exports.ProjectData = ProjectData;
|
|
152
|
-
//# sourceMappingURL=ProjectData.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProjectData.js","sourceRoot":"","sources":["../../../../src/Lib/Project/ProjectData.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Types } from "bc-minecraft-bedrock-types";
|
|
2
|
-
import { Molang, Using } from "bc-minecraft-molang";
|
|
3
|
-
import { MolangCarrier } from '../../../Types/Carrier';
|
|
4
|
-
/** */
|
|
5
|
-
export interface Animation extends Types.BaseObject, MolangCarrier<Molang.MolangSet> {
|
|
6
|
-
/** */
|
|
7
|
-
molang: Molang.MolangSet;
|
|
8
|
-
/** */
|
|
9
|
-
particles: Using<string>;
|
|
10
|
-
/** */
|
|
11
|
-
sounds: Using<string>;
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Animation.js","sourceRoot":"","sources":["../../../../../../src/Lib/Project/ResourcePack/Animation/Animation.ts"],"names":[],"mappings":""}
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.Process = Process;
|
|
27
|
-
const Internal = __importStar(require("../../../Internal/ResourcePack/Animation"));
|
|
28
|
-
const bc_minecraft_molang_1 = require("bc-minecraft-molang");
|
|
29
|
-
const TextDocument_1 = require("../../../Types/TextDocument");
|
|
30
|
-
const SMap_1 = require("../../../Types/SMap");
|
|
31
|
-
const bc_minecraft_bedrock_types_1 = require("bc-minecraft-bedrock-types");
|
|
32
|
-
const Documentation_1 = require("../../../Types/Documentation");
|
|
33
|
-
/** */
|
|
34
|
-
function Process(doc) {
|
|
35
|
-
const imp = TextDocument_1.TextDocument.toObject(doc, Internal.Animations.is);
|
|
36
|
-
if (!imp)
|
|
37
|
-
return undefined;
|
|
38
|
-
const uri = doc.uri;
|
|
39
|
-
const content = doc.getText();
|
|
40
|
-
const out = [];
|
|
41
|
-
const container = imp.animations;
|
|
42
|
-
const keys = Object.getOwnPropertyNames(container);
|
|
43
|
-
for (var I = 0; I < keys.length; I++) {
|
|
44
|
-
const id = keys[I];
|
|
45
|
-
const anim = container[id];
|
|
46
|
-
if (Internal.Animation.is(anim)) {
|
|
47
|
-
const item = {
|
|
48
|
-
id: id,
|
|
49
|
-
location: bc_minecraft_bedrock_types_1.Types.Location.create(uri, content.indexOf(id)),
|
|
50
|
-
molang: bc_minecraft_molang_1.Molang.MolangSet.harvest(anim),
|
|
51
|
-
documentation: Documentation_1.Documentation.getDoc(doc, () => { var _a, _b; return `RP Animation: '${id}', loop: ${(_a = anim.loop) !== null && _a !== void 0 ? _a : false}, length: ${(_b = anim.animation_length) !== null && _b !== void 0 ? _b : "unknown"}`; }),
|
|
52
|
-
particles: bc_minecraft_molang_1.Using.empty(),
|
|
53
|
-
sounds: bc_minecraft_molang_1.Using.empty(),
|
|
54
|
-
};
|
|
55
|
-
if (anim.particle_effects)
|
|
56
|
-
SMap_1.SMap.forEach(anim.particle_effects, (value, key) => processEffect(value, item.particles.using));
|
|
57
|
-
if (anim.sound_effects)
|
|
58
|
-
SMap_1.SMap.forEach(anim.sound_effects, (value, key) => processEffect(value, item.sounds.using));
|
|
59
|
-
out.push(item);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
return out;
|
|
63
|
-
}
|
|
64
|
-
function processEffect(item, receiver) {
|
|
65
|
-
const process = (item) => { if (item.effect)
|
|
66
|
-
receiver.push(item.effect); };
|
|
67
|
-
if (Array.isArray(item)) {
|
|
68
|
-
item.forEach(process);
|
|
69
|
-
}
|
|
70
|
-
else {
|
|
71
|
-
process(item);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
//# sourceMappingURL=Process.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Process.js","sourceRoot":"","sources":["../../../../../../src/Lib/Project/ResourcePack/Animation/Process.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAUA,0BAgCC;AA1CD,mFAAqE;AAErE,6DAAoD;AACpD,8DAA2D;AAE3D,8CAA2C;AAC3C,2EAAmD;AACnD,gEAA6D;AAE7D,MAAM;AACN,SAAgB,OAAO,CAAC,GAAiB;IACvC,MAAM,GAAG,GAAG,2BAAY,CAAC,QAAQ,CAAC,GAAG,EAAE,QAAQ,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;IAC/D,IAAI,CAAC,GAAG;QAAE,OAAO,SAAS,CAAC;IAE3B,MAAM,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;IACpB,MAAM,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;IAC9B,MAAM,GAAG,GAAgB,EAAE,CAAC;IAC5B,MAAM,SAAS,GAAG,GAAG,CAAC,UAAU,CAAC;IACjC,MAAM,IAAI,GAAG,MAAM,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;IAEnD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACrC,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACnB,MAAM,IAAI,GAAG,SAAS,CAAC,EAAE,CAAC,CAAC;QAE3B,IAAI,QAAQ,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;YAChC,MAAM,IAAI,GAAc;gBACtB,EAAE,EAAE,EAAE;gBACN,QAAQ,EAAE,kCAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;gBACzD,MAAM,EAAE,4BAAM,CAAC,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC;gBACtC,aAAa,EAAE,6BAAa,CAAC,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,eAAC,OAAA,kBAAkB,EAAE,YAAY,MAAA,IAAI,CAAC,IAAI,mCAAI,KAAK,aAAa,MAAA,IAAI,CAAC,gBAAgB,mCAAI,SAAS,EAAE,CAAA,EAAA,CAAC;gBACnJ,SAAS,EAAE,2BAAK,CAAC,KAAK,EAAE;gBACxB,MAAM,EAAE,2BAAK,CAAC,KAAK,EAAE;aACtB,CAAC;YAEF,IAAI,IAAI,CAAC,gBAAgB;gBAAE,WAAI,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,CAAC,aAAa,CAAC,KAAK,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC;YAC3H,IAAI,IAAI,CAAC,aAAa;gBAAE,WAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,CAAC,aAAa,CAAC,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;YAElH,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjB,CAAC;IACH,CAAC;IAED,OAAO,GAAG,CAAC;AACb,CAAC;AAID,SAAS,aAAa,CAAC,IAAuC,EAAE,QAAkB;IAChF,MAAM,OAAO,GAAG,CAAC,IAAoB,EAAE,EAAE,GAAG,IAAI,IAAI,CAAC,MAAM;QAAE,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;IAE3F,IAAI,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;QACxB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IACxB,CAAC;SACI,CAAC;QACJ,OAAO,CAAC,IAAI,CAAC,CAAC;IAChB,CAAC;AACH,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* Auto generated */
|
|
3
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
-
if (k2 === undefined) k2 = k;
|
|
5
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
-
}
|
|
9
|
-
Object.defineProperty(o, k2, desc);
|
|
10
|
-
}) : (function(o, m, k, k2) {
|
|
11
|
-
if (k2 === undefined) k2 = k;
|
|
12
|
-
o[k2] = m[k];
|
|
13
|
-
}));
|
|
14
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
-
};
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
__exportStar(require("./Animation"), exports);
|
|
19
|
-
__exportStar(require("./Process"), exports);
|
|
20
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/Lib/Project/ResourcePack/Animation/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,8CAA4B;AAC5B,4CAA0B"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Molang } from "bc-minecraft-molang";
|
|
2
|
-
import { Using } from "bc-minecraft-molang";
|
|
3
|
-
import { Types } from "bc-minecraft-bedrock-types";
|
|
4
|
-
import { AnimationCarrier, MolangCarrier } from "../../../Types";
|
|
5
|
-
/** */
|
|
6
|
-
export interface AnimationController extends Types.BaseObject, MolangCarrier<Molang.MolangSet>, AnimationCarrier<Using<string>> {
|
|
7
|
-
/** */
|
|
8
|
-
molang: Molang.MolangSet;
|
|
9
|
-
/** */
|
|
10
|
-
animations: Using<string>;
|
|
11
|
-
/** */
|
|
12
|
-
particles: Using<string>;
|
|
13
|
-
/** */
|
|
14
|
-
sounds: Using<string>;
|
|
15
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AnimationController.js","sourceRoot":"","sources":["../../../../../../src/Lib/Project/ResourcePack/AnimationController/AnimationController.ts"],"names":[],"mappings":""}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.Process = Process;
|
|
27
|
-
const Internal = __importStar(require("../../../Internal/ResourcePack/AnimationController"));
|
|
28
|
-
const bc_minecraft_molang_1 = require("bc-minecraft-molang");
|
|
29
|
-
const TextDocument_1 = require("../../../Types/TextDocument");
|
|
30
|
-
const SMap_1 = require("../../../Types/SMap");
|
|
31
|
-
const bc_minecraft_molang_2 = require("bc-minecraft-molang");
|
|
32
|
-
const bc_minecraft_bedrock_types_1 = require("bc-minecraft-bedrock-types");
|
|
33
|
-
const Documentation_1 = require("../../../Types/Documentation");
|
|
34
|
-
/** */
|
|
35
|
-
function Process(doc) {
|
|
36
|
-
const imp = TextDocument_1.TextDocument.toObject(doc, Internal.AnimationControllers.is);
|
|
37
|
-
if (!imp)
|
|
38
|
-
return undefined;
|
|
39
|
-
const uri = doc.uri;
|
|
40
|
-
const content = doc.getText();
|
|
41
|
-
const out = [];
|
|
42
|
-
const container = imp.animation_controllers;
|
|
43
|
-
const keys = Object.getOwnPropertyNames(container);
|
|
44
|
-
for (var I = 0; I < keys.length; I++) {
|
|
45
|
-
const id = keys[I];
|
|
46
|
-
const controller = container[id];
|
|
47
|
-
if (Internal.AnimationController.is(controller)) {
|
|
48
|
-
const item = {
|
|
49
|
-
id: id,
|
|
50
|
-
location: bc_minecraft_bedrock_types_1.Types.Location.create(uri, content.indexOf(id)),
|
|
51
|
-
molang: bc_minecraft_molang_1.Molang.MolangSet.harvest(controller),
|
|
52
|
-
documentation: Documentation_1.Documentation.getDoc(doc, () => `RP Animation Controller: '${id}'`),
|
|
53
|
-
animations: bc_minecraft_molang_2.Using.empty(),
|
|
54
|
-
particles: bc_minecraft_molang_2.Using.empty(),
|
|
55
|
-
sounds: bc_minecraft_molang_2.Using.empty(),
|
|
56
|
-
};
|
|
57
|
-
SMap_1.SMap.forEach(controller.states, (State) => {
|
|
58
|
-
if (State.animations)
|
|
59
|
-
bc_minecraft_bedrock_types_1.Types.Conditional.forEach(State.animations, (reference, value) => {
|
|
60
|
-
item.animations.using.push(reference);
|
|
61
|
-
});
|
|
62
|
-
if (State.particle_effects)
|
|
63
|
-
harvest(State.particle_effects, item.particles);
|
|
64
|
-
if (State.sound_effects)
|
|
65
|
-
harvest(State.sound_effects, item.sounds);
|
|
66
|
-
});
|
|
67
|
-
out.push(item);
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
return out;
|
|
71
|
-
}
|
|
72
|
-
function harvest(data, receiver) {
|
|
73
|
-
data.forEach((e) => {
|
|
74
|
-
if (e.effect)
|
|
75
|
-
receiver.using.push(e.effect);
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
//# sourceMappingURL=Process.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Process.js","sourceRoot":"","sources":["../../../../../../src/Lib/Project/ResourcePack/AnimationController/Process.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAUA,0BAwCC;AAlDD,6FAA+E;AAC/E,6DAA6C;AAC7C,8DAA2D;AAE3D,8CAA2C;AAC3C,6DAA4C;AAC5C,2EAAmD;AACnD,gEAA6D;AAE7D,MAAM;AACN,SAAgB,OAAO,CAAC,GAAiB;IACvC,MAAM,GAAG,GAAG,2BAAY,CAAC,QAAQ,CAAC,GAAG,EAAE,QAAQ,CAAC,oBAAoB,CAAC,EAAE,CAAC,CAAC;IACzE,IAAI,CAAC,GAAG;QAAE,OAAO,SAAS,CAAC;IAE3B,MAAM,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;IACpB,MAAM,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;IAC9B,MAAM,GAAG,GAA0B,EAAE,CAAC;IACtC,MAAM,SAAS,GAAG,GAAG,CAAC,qBAAqB,CAAC;IAC5C,MAAM,IAAI,GAAG,MAAM,CAAC,mBAAmB,CAAC,SAAS,CAAC,CAAC;IAEnD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACrC,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QACnB,MAAM,UAAU,GAAG,SAAS,CAAC,EAAE,CAAC,CAAC;QAEjC,IAAI,QAAQ,CAAC,mBAAmB,CAAC,EAAE,CAAC,UAAU,CAAC,EAAE,CAAC;YAChD,MAAM,IAAI,GAAwB;gBAChC,EAAE,EAAE,EAAE;gBACN,QAAQ,EAAE,kCAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;gBACzD,MAAM,EAAE,4BAAM,CAAC,SAAS,CAAC,OAAO,CAAC,UAAU,CAAC;gBAC5C,aAAa,EAAE,6BAAa,CAAC,MAAM,CAAC,GAAG,EAAE,GAAG,EAAE,CAAC,6BAA6B,EAAE,GAAG,CAAC;gBAClF,UAAU,EAAE,2BAAK,CAAC,KAAK,EAAE;gBACzB,SAAS,EAAE,2BAAK,CAAC,KAAK,EAAE;gBACxB,MAAM,EAAE,2BAAK,CAAC,KAAK,EAAE;aACtB,CAAC;YAEF,WAAI,CAAC,OAAO,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE;gBACxC,IAAI,KAAK,CAAC,UAAU;oBAClB,kCAAK,CAAC,WAAW,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC,SAAS,EAAE,KAAK,EAAE,EAAE;wBAC/D,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;oBACxC,CAAC,CAAC,CAAC;gBAEL,IAAI,KAAK,CAAC,gBAAgB;oBAAE,OAAO,CAAC,KAAK,CAAC,gBAAgB,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;gBAC5E,IAAI,KAAK,CAAC,aAAa;oBAAE,OAAO,CAAC,KAAK,CAAC,aAAa,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;YACrE,CAAC,CAAC,CAAC;YAEH,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACjB,CAAC;IACH,CAAC;IAED,OAAO,GAAG,CAAC;AACb,CAAC;AAED,SAAS,OAAO,CAAC,IAA2B,EAAE,QAAuB;IACnE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;QACjB,IAAI,CAAC,CAAC,MAAM;YAAE,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* Auto generated */
|
|
3
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
-
if (k2 === undefined) k2 = k;
|
|
5
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
-
}
|
|
9
|
-
Object.defineProperty(o, k2, desc);
|
|
10
|
-
}) : (function(o, m, k, k2) {
|
|
11
|
-
if (k2 === undefined) k2 = k;
|
|
12
|
-
o[k2] = m[k];
|
|
13
|
-
}));
|
|
14
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
-
};
|
|
17
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
__exportStar(require("./AnimationController"), exports);
|
|
19
|
-
__exportStar(require("./Process"), exports);
|
|
20
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/Lib/Project/ResourcePack/AnimationController/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,wDAAsC;AACtC,4CAA0B"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Types } from "bc-minecraft-bedrock-types";
|
|
2
|
-
import { DefinedUsing, Molang } from "bc-minecraft-molang";
|
|
3
|
-
import { MolangCarrier, AnimationCarrier } from '../../../Types';
|
|
4
|
-
/** */
|
|
5
|
-
export interface Attachable extends Types.BaseObject, MolangCarrier<Molang.MolangFullSet>, AnimationCarrier<DefinedUsing<string>> {
|
|
6
|
-
/** */
|
|
7
|
-
animations: DefinedUsing<string>;
|
|
8
|
-
/** */
|
|
9
|
-
molang: Molang.MolangFullSet;
|
|
10
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Attachable.js","sourceRoot":"","sources":["../../../../../../src/Lib/Project/ResourcePack/Attachable/Attachable.ts"],"names":[],"mappings":""}
|