├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 0-in-game-bug.yml │ ├── 1-pack-creation-error.yml │ ├── 2-broken-block.yml │ ├── 3-feature-request.yml │ └── config.yml └── workflows │ ├── automatedTesting.yml │ ├── buildAndDeploy.yml │ ├── deployRedirectPage.yml │ └── updateFromUpstream.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── README.zh-CN.md ├── TERMS_OF_USE.md ├── globalPatches.d.ts ├── images ├── armourStandControls.gif ├── banner.png ├── changingLayer.gif ├── changingLayerMode.gif ├── changingStructure.gif ├── changingTransparency.gif ├── disablingPlayerControls.gif ├── giveStructureBlockCommand.png ├── materialList.gif ├── movingHologram.gif ├── packGenerationScreen.png ├── placingArmourStand.gif ├── resourcePackActive.png ├── rotatingHologram.gif ├── savingBackup.gif ├── structureBlockExporting.png ├── structureHashesTable.png ├── togglingRendering.gif ├── togglingTint.gif └── validatingStructure.gif ├── package.json ├── pipeline ├── build.js ├── package.json └── tsconfig.json ├── quick-lint-js.config ├── src ├── BlockGeoMaker.js ├── BlockUpdater.js ├── EntityGeoMaker.js ├── HoloPrint.js ├── LocalResourcePack.js ├── MaterialList.js ├── PolyMeshMaker.js ├── PreviewRenderer.js ├── ResourcePackStack.js ├── SpawnAnimationMaker.js ├── SupabaseLogger.js ├── TextureAtlas.js ├── apple-touch-icon.png ├── assets │ ├── MaterialSymbols.LICENSE.txt │ ├── MaterialSymbols.woff2 │ ├── banner.png │ ├── banner_1200x630.png │ ├── logo_192.png │ ├── logo_288.png │ ├── logo_512.png │ ├── logo_background.png │ ├── previewPanorama │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ └── translate_icon.svg ├── components │ ├── FileInputTable.js │ ├── ItemCriteriaInput.js │ ├── LilGui.js │ ├── ResizingInput.js │ ├── SimpleLogger.js │ └── Vec3Input.js ├── data │ ├── blockEigenvariants.json │ ├── blockShapeGeos.json │ ├── blockShapes.json │ ├── blockStateDefinitions.json │ ├── itemIcons.json │ ├── materialListMappings.json │ ├── schemas │ │ ├── blockEigenvariants.schema.json │ │ ├── blockShapeGeos.schema.json │ │ ├── blockShapes.schema.json │ │ ├── blockStateDefinitions.schema.json │ │ ├── index.ts │ │ ├── itemIcons.schema.json │ │ ├── materialListMappings.schema.json │ │ └── textureAtlasMappings.schema.json │ └── textureAtlasMappings.json ├── entityScripts.molang.js ├── favicon.ico ├── fetchers.js ├── index.html ├── index.js ├── manifest.webmanifest ├── packTemplate │ ├── animation_controllers │ │ └── holoprint.hologram.animation_controllers.json │ ├── animations │ │ └── holoprint.hologram.animation.json │ ├── font │ │ └── glyph_E2.png │ ├── manifest.json │ ├── materials │ │ └── entity.material │ ├── models │ │ └── entity │ │ │ └── holoprint.hologram.geo.json │ ├── particles │ │ ├── block_validation.json │ │ ├── bounding_box_outline.json │ │ └── saving_backup.json │ ├── render_controllers │ │ └── holoprint.hologram.render_controllers.json │ ├── texts │ │ ├── en_US.lang │ │ ├── languages.json │ │ └── zh_CN.lang │ ├── textures │ │ ├── holoprint │ │ │ ├── icons │ │ │ │ ├── backup_hologram.png │ │ │ │ ├── change_layer.png │ │ │ │ ├── change_layer_mode.png │ │ │ │ ├── change_opacity.png │ │ │ │ ├── change_structure.png │ │ │ │ ├── decrease_layer.png │ │ │ │ ├── disable_player_controls.png │ │ │ │ ├── increase_layer.png │ │ │ │ ├── increase_opacity.png │ │ │ │ ├── move_hologram.png │ │ │ │ ├── move_hologram_x.png │ │ │ │ ├── move_hologram_y.png │ │ │ │ ├── move_hologram_z.png │ │ │ │ ├── rotate_hologram.png │ │ │ │ ├── toggle_rendering.png │ │ │ │ ├── toggle_tint.png │ │ │ │ └── toggle_validating.png │ │ │ ├── particle │ │ │ │ ├── exclamation_mark.png │ │ │ │ ├── save_icon.png │ │ │ │ └── single_white_pixel.png │ │ │ └── ui │ │ │ │ ├── material_list_button_pressed.png │ │ │ │ ├── material_list_button_unpressed.png │ │ │ │ ├── menu_button_pressed.png │ │ │ │ ├── menu_button_unpressed.png │ │ │ │ ├── menu_sliders_icon.png │ │ │ │ ├── quick_input_keyboard_hints.png │ │ │ │ ├── white_circle.json │ │ │ │ └── white_circle.png │ │ ├── item_texture.json │ │ └── terrain_texture.json │ └── ui │ │ ├── _global_variables.json │ │ ├── _ui_defs.json │ │ ├── holoprint_common.json │ │ ├── holoprint_keybinds.json │ │ ├── holoprint_material_list.json │ │ ├── holoprint_touch_buttons.json │ │ └── hud_screen.json ├── styles │ ├── MaterialSymbols.css │ ├── base.css │ ├── bigButtons.css │ ├── coordinateLock.css │ ├── expandableFieldsets.css │ ├── index.css │ ├── inputs.css │ ├── layout.css │ ├── miscElements.css │ ├── multiTabConts.css │ ├── preview.css │ └── structureFileInput.css ├── translations │ ├── en_US.json │ ├── languages.json │ └── zh_CN.json ├── utils.js └── utils │ ├── arrays.js │ ├── containers.js │ ├── conversions.js │ ├── dom.js │ ├── fileInputs.js │ ├── files.js │ ├── images.js │ ├── math.js │ ├── meta.js │ ├── misc.js │ ├── molang.js │ ├── objects.js │ ├── strings.js │ ├── translations.js │ ├── vec2.js │ └── vec3.js ├── supabase ├── create_daily_logs_table.sql ├── create_pack_counts_table.sql ├── create_structure_hashes_table.sql ├── log_counts_cron.sql └── record_structure_usage.sql ├── tests ├── checkBlockTranslationCoverage │ ├── index.js │ └── package.json ├── headlessBrowserTestRunner.js ├── sampleStructures │ ├── amethyst_crystals.mcstructure │ ├── anvils.mcstructure │ ├── bamboo_and_azaleas.mcstructure │ ├── barrels.mcstructure │ ├── beacons.mcstructure │ ├── beds.mcstructure │ ├── bee_hives_and_nests.mcstructure │ ├── brewing_stands.mcstructure │ ├── bubble_columns.mcstructure │ ├── cactus_daylight_detectors.mcstructure │ ├── cakes.mcstructure │ ├── campfires.mcstructure │ ├── candles.mcstructure │ ├── cauldrons.mcstructure │ ├── chests.mcstructure │ ├── chiseled_bookshelves.mcstructure │ ├── chorus_plant.mcstructure │ ├── cocoa_beans.mcstructure │ ├── command_blocks.mcstructure │ ├── composters.mcstructure │ ├── copper_age_update.mcstructure │ ├── copper_bulbs.mcstructure │ ├── coral.mcstructure │ ├── crafters.mcstructure │ ├── crops.mcstructure │ ├── decorated_pots.mcstructure │ ├── dispensers_droppers.mcstructure │ ├── doors.mcstructure │ ├── double_flowers_and_foliage.mcstructure │ ├── dried_ghasts.mcstructure │ ├── dripleaves_spore_blossom.mcstructure │ ├── eggs.mcstructure │ ├── end_gateway.mcstructure │ ├── end_stuff.mcstructure │ ├── farmland.mcstructure │ ├── fence_gates.mcstructure │ ├── fences.mcstructure │ ├── flower_pots.mcstructure │ ├── furnaces.mcstructure │ ├── glazed_terracotta.mcstructure │ ├── hanging_signs.mcstructure │ ├── heads_and_skulls.mcstructure │ ├── hoppers.mcstructure │ ├── huge_mushrooms.mcstructure │ ├── item_frames.mcstructure │ ├── jigsaw_blocks.mcstructure │ ├── ladders.mcstructure │ ├── lanterns.mcstructure │ ├── levers.mcstructure │ ├── lightning_rods.mcstructure │ ├── looms_lecterns_enchanting_table.mcstructure │ ├── lots_of_air.mcstructure │ ├── lush_cave.mcstructure │ ├── mangrove_propagules.mcstructure │ ├── mini_rollercoaster.mcstructure │ ├── nether_portals.mcstructure │ ├── number_1.mcstructure │ ├── number_2.mcstructure │ ├── number_3.mcstructure │ ├── number_4.mcstructure │ ├── number_5.mcstructure │ ├── oak_stairs.mcstructure │ ├── observers.mcstructure │ ├── pale_garden_update.mcstructure │ ├── pillar_blocks.mcstructure │ ├── pink_petals.mcstructure │ ├── pistons.mcstructure │ ├── pistons_buttons.mcstructure │ ├── pitcher_plants_torchflowers.mcstructure │ ├── plain_banners.mcstructure │ ├── playerless_azalea_tree_farm.mcstructure │ ├── pointed_dripstone.mcstructure │ ├── pressure_plates.mcstructure │ ├── pumpkins_melon.mcstructure │ ├── rails.mcstructure │ ├── redstone_dust_strengths.mcstructure │ ├── repeaters_comparators.mcstructure │ ├── respawn_anchors.mcstructure │ ├── sculk_stuff.mcstructure │ ├── second_layer.mcstructure │ ├── shelves.mcstructure │ ├── shulker_boxes.mcstructure │ ├── signs.mcstructure │ ├── spring_to_life_update.mcstructure │ ├── stonecutters_grindstones_bells.mcstructure │ ├── structure_blocks.mcstructure │ ├── sweet_berries_nether_wart.mcstructure │ ├── torches.mcstructure │ ├── trapdoors.mcstructure │ ├── tripwire_hooks_and_string.mcstructure │ ├── vaults_and_trial_spawners.mcstructure │ ├── vines_lichen_veins.mcstructure │ ├── walls.mcstructure │ ├── water.mcstructure │ ├── water_plants.mcstructure │ ├── wheat_pumpkin_melon_stems.mcstructure │ ├── wild_update_exotic_blocks.mcstructure │ └── wrong_in_blocks_dot_json.mcstructure ├── testSampleStructures │ ├── index.js │ └── package.json ├── tsconfig.json └── validateJsonData │ ├── index.js │ └── package.json └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | **/package-lock.json binary -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0-in-game-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/ISSUE_TEMPLATE/0-in-game-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-pack-creation-error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/ISSUE_TEMPLATE/1-pack-creation-error.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-broken-block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/ISSUE_TEMPLATE/2-broken-block.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/ISSUE_TEMPLATE/3-feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/automatedTesting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/workflows/automatedTesting.yml -------------------------------------------------------------------------------- /.github/workflows/buildAndDeploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/workflows/buildAndDeploy.yml -------------------------------------------------------------------------------- /.github/workflows/deployRedirectPage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/workflows/deployRedirectPage.yml -------------------------------------------------------------------------------- /.github/workflows/updateFromUpstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.github/workflows/updateFromUpstream.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "mc-color.prefixes": ["§"], 3 | "quick-lint-js.snarky": true 4 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /TERMS_OF_USE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/TERMS_OF_USE.md -------------------------------------------------------------------------------- /globalPatches.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/globalPatches.d.ts -------------------------------------------------------------------------------- /images/armourStandControls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/armourStandControls.gif -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/changingLayer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/changingLayer.gif -------------------------------------------------------------------------------- /images/changingLayerMode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/changingLayerMode.gif -------------------------------------------------------------------------------- /images/changingStructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/changingStructure.gif -------------------------------------------------------------------------------- /images/changingTransparency.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/changingTransparency.gif -------------------------------------------------------------------------------- /images/disablingPlayerControls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/disablingPlayerControls.gif -------------------------------------------------------------------------------- /images/giveStructureBlockCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/giveStructureBlockCommand.png -------------------------------------------------------------------------------- /images/materialList.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/materialList.gif -------------------------------------------------------------------------------- /images/movingHologram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/movingHologram.gif -------------------------------------------------------------------------------- /images/packGenerationScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/packGenerationScreen.png -------------------------------------------------------------------------------- /images/placingArmourStand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/placingArmourStand.gif -------------------------------------------------------------------------------- /images/resourcePackActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/resourcePackActive.png -------------------------------------------------------------------------------- /images/rotatingHologram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/rotatingHologram.gif -------------------------------------------------------------------------------- /images/savingBackup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/savingBackup.gif -------------------------------------------------------------------------------- /images/structureBlockExporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/structureBlockExporting.png -------------------------------------------------------------------------------- /images/structureHashesTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/structureHashesTable.png -------------------------------------------------------------------------------- /images/togglingRendering.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/togglingRendering.gif -------------------------------------------------------------------------------- /images/togglingTint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/togglingTint.gif -------------------------------------------------------------------------------- /images/validatingStructure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/images/validatingStructure.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/package.json -------------------------------------------------------------------------------- /pipeline/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/pipeline/build.js -------------------------------------------------------------------------------- /pipeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/pipeline/package.json -------------------------------------------------------------------------------- /pipeline/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/pipeline/tsconfig.json -------------------------------------------------------------------------------- /quick-lint-js.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/quick-lint-js.config -------------------------------------------------------------------------------- /src/BlockGeoMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/BlockGeoMaker.js -------------------------------------------------------------------------------- /src/BlockUpdater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/BlockUpdater.js -------------------------------------------------------------------------------- /src/EntityGeoMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/EntityGeoMaker.js -------------------------------------------------------------------------------- /src/HoloPrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/HoloPrint.js -------------------------------------------------------------------------------- /src/LocalResourcePack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/LocalResourcePack.js -------------------------------------------------------------------------------- /src/MaterialList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/MaterialList.js -------------------------------------------------------------------------------- /src/PolyMeshMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/PolyMeshMaker.js -------------------------------------------------------------------------------- /src/PreviewRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/PreviewRenderer.js -------------------------------------------------------------------------------- /src/ResourcePackStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/ResourcePackStack.js -------------------------------------------------------------------------------- /src/SpawnAnimationMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/SpawnAnimationMaker.js -------------------------------------------------------------------------------- /src/SupabaseLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/SupabaseLogger.js -------------------------------------------------------------------------------- /src/TextureAtlas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/TextureAtlas.js -------------------------------------------------------------------------------- /src/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/apple-touch-icon.png -------------------------------------------------------------------------------- /src/assets/MaterialSymbols.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/MaterialSymbols.LICENSE.txt -------------------------------------------------------------------------------- /src/assets/MaterialSymbols.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/MaterialSymbols.woff2 -------------------------------------------------------------------------------- /src/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/banner.png -------------------------------------------------------------------------------- /src/assets/banner_1200x630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/banner_1200x630.png -------------------------------------------------------------------------------- /src/assets/logo_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/logo_192.png -------------------------------------------------------------------------------- /src/assets/logo_288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/logo_288.png -------------------------------------------------------------------------------- /src/assets/logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/logo_512.png -------------------------------------------------------------------------------- /src/assets/logo_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/logo_background.png -------------------------------------------------------------------------------- /src/assets/previewPanorama/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/previewPanorama/0.png -------------------------------------------------------------------------------- /src/assets/previewPanorama/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/previewPanorama/1.png -------------------------------------------------------------------------------- /src/assets/previewPanorama/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/previewPanorama/2.png -------------------------------------------------------------------------------- /src/assets/previewPanorama/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/previewPanorama/3.png -------------------------------------------------------------------------------- /src/assets/previewPanorama/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/previewPanorama/4.png -------------------------------------------------------------------------------- /src/assets/previewPanorama/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/previewPanorama/5.png -------------------------------------------------------------------------------- /src/assets/translate_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/assets/translate_icon.svg -------------------------------------------------------------------------------- /src/components/FileInputTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/components/FileInputTable.js -------------------------------------------------------------------------------- /src/components/ItemCriteriaInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/components/ItemCriteriaInput.js -------------------------------------------------------------------------------- /src/components/LilGui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/components/LilGui.js -------------------------------------------------------------------------------- /src/components/ResizingInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/components/ResizingInput.js -------------------------------------------------------------------------------- /src/components/SimpleLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/components/SimpleLogger.js -------------------------------------------------------------------------------- /src/components/Vec3Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/components/Vec3Input.js -------------------------------------------------------------------------------- /src/data/blockEigenvariants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/blockEigenvariants.json -------------------------------------------------------------------------------- /src/data/blockShapeGeos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/blockShapeGeos.json -------------------------------------------------------------------------------- /src/data/blockShapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/blockShapes.json -------------------------------------------------------------------------------- /src/data/blockStateDefinitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/blockStateDefinitions.json -------------------------------------------------------------------------------- /src/data/itemIcons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/itemIcons.json -------------------------------------------------------------------------------- /src/data/materialListMappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/materialListMappings.json -------------------------------------------------------------------------------- /src/data/schemas/blockEigenvariants.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/blockEigenvariants.schema.json -------------------------------------------------------------------------------- /src/data/schemas/blockShapeGeos.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/blockShapeGeos.schema.json -------------------------------------------------------------------------------- /src/data/schemas/blockShapes.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/blockShapes.schema.json -------------------------------------------------------------------------------- /src/data/schemas/blockStateDefinitions.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/blockStateDefinitions.schema.json -------------------------------------------------------------------------------- /src/data/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/index.ts -------------------------------------------------------------------------------- /src/data/schemas/itemIcons.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/itemIcons.schema.json -------------------------------------------------------------------------------- /src/data/schemas/materialListMappings.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/materialListMappings.schema.json -------------------------------------------------------------------------------- /src/data/schemas/textureAtlasMappings.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/schemas/textureAtlasMappings.schema.json -------------------------------------------------------------------------------- /src/data/textureAtlasMappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/data/textureAtlasMappings.json -------------------------------------------------------------------------------- /src/entityScripts.molang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/entityScripts.molang.js -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/fetchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/fetchers.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/index.js -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/packTemplate/animation_controllers/holoprint.hologram.animation_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/animation_controllers/holoprint.hologram.animation_controllers.json -------------------------------------------------------------------------------- /src/packTemplate/animations/holoprint.hologram.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/animations/holoprint.hologram.animation.json -------------------------------------------------------------------------------- /src/packTemplate/font/glyph_E2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/font/glyph_E2.png -------------------------------------------------------------------------------- /src/packTemplate/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/manifest.json -------------------------------------------------------------------------------- /src/packTemplate/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/materials/entity.material -------------------------------------------------------------------------------- /src/packTemplate/models/entity/holoprint.hologram.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/models/entity/holoprint.hologram.geo.json -------------------------------------------------------------------------------- /src/packTemplate/particles/block_validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/particles/block_validation.json -------------------------------------------------------------------------------- /src/packTemplate/particles/bounding_box_outline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/particles/bounding_box_outline.json -------------------------------------------------------------------------------- /src/packTemplate/particles/saving_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/particles/saving_backup.json -------------------------------------------------------------------------------- /src/packTemplate/render_controllers/holoprint.hologram.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/render_controllers/holoprint.hologram.render_controllers.json -------------------------------------------------------------------------------- /src/packTemplate/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/texts/en_US.lang -------------------------------------------------------------------------------- /src/packTemplate/texts/languages.json: -------------------------------------------------------------------------------- 1 | [ 2 | "en_US", 3 | "zh_CN" 4 | ] -------------------------------------------------------------------------------- /src/packTemplate/texts/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/texts/zh_CN.lang -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/backup_hologram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/backup_hologram.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/change_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/change_layer.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/change_layer_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/change_layer_mode.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/change_opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/change_opacity.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/change_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/change_structure.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/decrease_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/decrease_layer.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/disable_player_controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/disable_player_controls.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/increase_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/increase_layer.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/increase_opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/increase_opacity.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/move_hologram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/move_hologram.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/move_hologram_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/move_hologram_x.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/move_hologram_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/move_hologram_y.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/move_hologram_z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/move_hologram_z.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/rotate_hologram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/rotate_hologram.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/toggle_rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/toggle_rendering.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/toggle_tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/toggle_tint.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/icons/toggle_validating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/icons/toggle_validating.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/particle/exclamation_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/particle/exclamation_mark.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/particle/save_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/particle/save_icon.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/particle/single_white_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/particle/single_white_pixel.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/material_list_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/material_list_button_pressed.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/material_list_button_unpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/material_list_button_unpressed.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/menu_button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/menu_button_pressed.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/menu_button_unpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/menu_button_unpressed.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/menu_sliders_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/menu_sliders_icon.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/quick_input_keyboard_hints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/quick_input_keyboard_hints.png -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/white_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/white_circle.json -------------------------------------------------------------------------------- /src/packTemplate/textures/holoprint/ui/white_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/holoprint/ui/white_circle.png -------------------------------------------------------------------------------- /src/packTemplate/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/item_texture.json -------------------------------------------------------------------------------- /src/packTemplate/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/textures/terrain_texture.json -------------------------------------------------------------------------------- /src/packTemplate/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/ui/_global_variables.json -------------------------------------------------------------------------------- /src/packTemplate/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/ui/_ui_defs.json -------------------------------------------------------------------------------- /src/packTemplate/ui/holoprint_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/ui/holoprint_common.json -------------------------------------------------------------------------------- /src/packTemplate/ui/holoprint_keybinds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/ui/holoprint_keybinds.json -------------------------------------------------------------------------------- /src/packTemplate/ui/holoprint_material_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/ui/holoprint_material_list.json -------------------------------------------------------------------------------- /src/packTemplate/ui/holoprint_touch_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/ui/holoprint_touch_buttons.json -------------------------------------------------------------------------------- /src/packTemplate/ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/packTemplate/ui/hud_screen.json -------------------------------------------------------------------------------- /src/styles/MaterialSymbols.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/MaterialSymbols.css -------------------------------------------------------------------------------- /src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/base.css -------------------------------------------------------------------------------- /src/styles/bigButtons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/bigButtons.css -------------------------------------------------------------------------------- /src/styles/coordinateLock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/coordinateLock.css -------------------------------------------------------------------------------- /src/styles/expandableFieldsets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/expandableFieldsets.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/inputs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/inputs.css -------------------------------------------------------------------------------- /src/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/layout.css -------------------------------------------------------------------------------- /src/styles/miscElements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/miscElements.css -------------------------------------------------------------------------------- /src/styles/multiTabConts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/multiTabConts.css -------------------------------------------------------------------------------- /src/styles/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/preview.css -------------------------------------------------------------------------------- /src/styles/structureFileInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/styles/structureFileInput.css -------------------------------------------------------------------------------- /src/translations/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/translations/en_US.json -------------------------------------------------------------------------------- /src/translations/languages.json: -------------------------------------------------------------------------------- 1 | { 2 | "en_US": "English", 3 | "zh_CN": "简体中文" 4 | } -------------------------------------------------------------------------------- /src/translations/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/translations/zh_CN.json -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/utils/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/arrays.js -------------------------------------------------------------------------------- /src/utils/containers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/containers.js -------------------------------------------------------------------------------- /src/utils/conversions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/conversions.js -------------------------------------------------------------------------------- /src/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/dom.js -------------------------------------------------------------------------------- /src/utils/fileInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/fileInputs.js -------------------------------------------------------------------------------- /src/utils/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/files.js -------------------------------------------------------------------------------- /src/utils/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/images.js -------------------------------------------------------------------------------- /src/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/math.js -------------------------------------------------------------------------------- /src/utils/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/meta.js -------------------------------------------------------------------------------- /src/utils/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/misc.js -------------------------------------------------------------------------------- /src/utils/molang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/molang.js -------------------------------------------------------------------------------- /src/utils/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/objects.js -------------------------------------------------------------------------------- /src/utils/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/strings.js -------------------------------------------------------------------------------- /src/utils/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/translations.js -------------------------------------------------------------------------------- /src/utils/vec2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/vec2.js -------------------------------------------------------------------------------- /src/utils/vec3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/src/utils/vec3.js -------------------------------------------------------------------------------- /supabase/create_daily_logs_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/supabase/create_daily_logs_table.sql -------------------------------------------------------------------------------- /supabase/create_pack_counts_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/supabase/create_pack_counts_table.sql -------------------------------------------------------------------------------- /supabase/create_structure_hashes_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/supabase/create_structure_hashes_table.sql -------------------------------------------------------------------------------- /supabase/log_counts_cron.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/supabase/log_counts_cron.sql -------------------------------------------------------------------------------- /supabase/record_structure_usage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/supabase/record_structure_usage.sql -------------------------------------------------------------------------------- /tests/checkBlockTranslationCoverage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/checkBlockTranslationCoverage/index.js -------------------------------------------------------------------------------- /tests/checkBlockTranslationCoverage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/checkBlockTranslationCoverage/package.json -------------------------------------------------------------------------------- /tests/headlessBrowserTestRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/headlessBrowserTestRunner.js -------------------------------------------------------------------------------- /tests/sampleStructures/amethyst_crystals.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/amethyst_crystals.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/anvils.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/anvils.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/bamboo_and_azaleas.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/bamboo_and_azaleas.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/barrels.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/barrels.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/beacons.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/beacons.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/beds.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/beds.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/bee_hives_and_nests.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/bee_hives_and_nests.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/brewing_stands.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/brewing_stands.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/bubble_columns.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/bubble_columns.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/cactus_daylight_detectors.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/cactus_daylight_detectors.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/cakes.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/cakes.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/campfires.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/campfires.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/candles.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/candles.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/cauldrons.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/cauldrons.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/chests.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/chests.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/chiseled_bookshelves.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/chiseled_bookshelves.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/chorus_plant.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/chorus_plant.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/cocoa_beans.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/cocoa_beans.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/command_blocks.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/command_blocks.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/composters.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/composters.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/copper_age_update.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/copper_age_update.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/copper_bulbs.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/copper_bulbs.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/coral.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/coral.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/crafters.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/crafters.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/crops.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/crops.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/decorated_pots.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/decorated_pots.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/dispensers_droppers.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/dispensers_droppers.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/doors.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/doors.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/double_flowers_and_foliage.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/double_flowers_and_foliage.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/dried_ghasts.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/dried_ghasts.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/dripleaves_spore_blossom.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/dripleaves_spore_blossom.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/eggs.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/eggs.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/end_gateway.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/end_gateway.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/end_stuff.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/end_stuff.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/farmland.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/farmland.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/fence_gates.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/fence_gates.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/fences.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/fences.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/flower_pots.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/flower_pots.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/furnaces.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/furnaces.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/glazed_terracotta.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/glazed_terracotta.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/hanging_signs.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/hanging_signs.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/heads_and_skulls.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/heads_and_skulls.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/hoppers.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/hoppers.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/huge_mushrooms.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/huge_mushrooms.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/item_frames.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/item_frames.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/jigsaw_blocks.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/jigsaw_blocks.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/ladders.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/ladders.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/lanterns.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/lanterns.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/levers.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/levers.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/lightning_rods.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/lightning_rods.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/looms_lecterns_enchanting_table.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/looms_lecterns_enchanting_table.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/lots_of_air.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/lots_of_air.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/lush_cave.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/lush_cave.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/mangrove_propagules.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/mangrove_propagules.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/mini_rollercoaster.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/mini_rollercoaster.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/nether_portals.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/nether_portals.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/number_1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/number_1.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/number_2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/number_2.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/number_3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/number_3.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/number_4.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/number_4.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/number_5.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/number_5.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/oak_stairs.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/oak_stairs.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/observers.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/observers.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pale_garden_update.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pale_garden_update.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pillar_blocks.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pillar_blocks.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pink_petals.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pink_petals.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pistons.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pistons.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pistons_buttons.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pistons_buttons.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pitcher_plants_torchflowers.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pitcher_plants_torchflowers.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/plain_banners.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/plain_banners.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/playerless_azalea_tree_farm.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/playerless_azalea_tree_farm.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pointed_dripstone.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pointed_dripstone.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pressure_plates.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pressure_plates.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/pumpkins_melon.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/pumpkins_melon.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/rails.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/rails.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/redstone_dust_strengths.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/redstone_dust_strengths.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/repeaters_comparators.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/repeaters_comparators.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/respawn_anchors.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/respawn_anchors.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/sculk_stuff.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/sculk_stuff.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/second_layer.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/second_layer.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/shelves.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/shelves.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/shulker_boxes.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/shulker_boxes.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/signs.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/signs.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/spring_to_life_update.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/spring_to_life_update.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/stonecutters_grindstones_bells.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/stonecutters_grindstones_bells.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/structure_blocks.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/structure_blocks.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/sweet_berries_nether_wart.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/sweet_berries_nether_wart.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/torches.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/torches.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/trapdoors.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/trapdoors.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/tripwire_hooks_and_string.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/tripwire_hooks_and_string.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/vaults_and_trial_spawners.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/vaults_and_trial_spawners.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/vines_lichen_veins.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/vines_lichen_veins.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/walls.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/walls.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/water.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/water.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/water_plants.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/water_plants.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/wheat_pumpkin_melon_stems.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/wheat_pumpkin_melon_stems.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/wild_update_exotic_blocks.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/wild_update_exotic_blocks.mcstructure -------------------------------------------------------------------------------- /tests/sampleStructures/wrong_in_blocks_dot_json.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/sampleStructures/wrong_in_blocks_dot_json.mcstructure -------------------------------------------------------------------------------- /tests/testSampleStructures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/testSampleStructures/index.js -------------------------------------------------------------------------------- /tests/testSampleStructures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/testSampleStructures/package.json -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/validateJsonData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/validateJsonData/index.js -------------------------------------------------------------------------------- /tests/validateJsonData/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tests/validateJsonData/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperLlama88888/holoprint/HEAD/tsconfig.json --------------------------------------------------------------------------------