diff --git a/.gitattributes b/.gitattributes index 01a70af..a647d61 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ +assets/models/Natural_store_trimsheet_1_Normal_OpenGL.png filter=lfs diff=lfs merge=lfs -text assets/models/textures/Furniture_pack_1_Normal_OpenGL.png filter=lfs diff=lfs merge=lfs -text assets/models/textures/Natural_store_trimsheet_1_Normal_OpenGL.png filter=lfs diff=lfs merge=lfs -text assets/models/textures/Office_Furniture_Trimsheet_Normal_OpenGL.png filter=lfs diff=lfs merge=lfs -text diff --git a/.github/workflows/notify-dependents.yml b/.github/workflows/notify-dependents.yml deleted file mode 100644 index c63fa06..0000000 --- a/.github/workflows/notify-dependents.yml +++ /dev/null @@ -1,182 +0,0 @@ -name: Notify Dependent Projects - -on: - push: - branches: - - dev - - int - - stg - - prd - - test - - 'release**' - -permissions: - contents: read - -jobs: - notify-dependents: - name: Notify Dependent Projects - runs-on: ubuntu-latest - environment: dependency-management - - outputs: - dependent-repos: ${{ steps.parse-dependents.outputs.dependent-repos }} - repo-count: ${{ steps.parse-dependents.outputs.repo-count }} - commit-hash: ${{ steps.commit-info.outputs.commit-hash }} - branch-name: ${{ steps.commit-info.outputs.branch-name }} - project-name: ${{ steps.commit-info.outputs.project-name }} - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '18' - - - name: Get commit information - id: commit-info - run: | - COMMIT_HASH="${{ github.sha }}" - BRANCH_NAME="${{ github.ref_name }}" - PROJECT_NAME="${{ github.repository }}" - - echo "commit-hash=$COMMIT_HASH" >> $GITHUB_OUTPUT - echo "branch-name=$BRANCH_NAME" >> $GITHUB_OUTPUT - echo "project-name=$PROJECT_NAME" >> $GITHUB_OUTPUT - - echo "Commit information:" - echo "- Hash: $COMMIT_HASH" - echo "- Branch: $BRANCH_NAME" - echo "- Project: $PROJECT_NAME" - - - name: create-json - id: create-json - uses: jsdaniell/create-json@v1.2.3 - with: - name: "dependent-projects.json" - json: ${{ vars.DEPENDENT_PROJECTS }} - - - name: Parse dependent projects - id: parse-dependents - run: | - # Install jq for JSON parsing - sudo apt-get update && sudo apt-get install -y jq - - # Validate and parse JSON - if ! cat dependent-projects.json | jq empty; then - echo "Error: DEPENDENT_PROJECTS is not valid JSON" - exit 1 - fi - - if [ ! -s dependent-projects.json ]; then - echo "No dependent projects configured in DEPENDENT_PROJECTS environment variable." - echo "dependent-repos=[]" >> $GITHUB_OUTPUT - REPO_COUNT=$(cat dependent-projects.json | jq length) - echo "repo-count=0" >> $GITHUB_OUTPUT - exit 0 - fi - - # Extract array of repositories - REPOS=$(cat dependent-projects.json | jq -r '.[]' | tr '\n' ' ') - echo "Parsed repositories: $REPOS" - - # Convert to JSON array for matrix - REPOS_JSON=$(cat dependent-projects.json | jq -c .) - echo "dependent-repos=$REPOS_JSON" >> $GITHUB_OUTPUT - - # Count repositories - REPO_COUNT=$(cat dependent-projects.json | jq length) - echo "repo-count=$REPO_COUNT" >> $GITHUB_OUTPUT - - echo "Found $REPO_COUNT dependent repositories" - - - name: Validate dependent repositories - if: fromJson(steps.parse-dependents.outputs.repo-count) > 0 - run: | - REPOS='${{ steps.parse-dependents.outputs.dependent-repos }}' - - echo "$REPOS" | jq -r '.[]' | while read -r repo; do - if [[ ! "$repo" =~ ^[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+$ ]]; then - echo "Error: Invalid repository format: $repo" - echo "Expected format: organization/repository" - exit 1 - fi - echo "✓ Valid repository format: $repo" - done - - dispatch-updates: - name: Dispatch to Dependent Projects - runs-on: ubuntu-latest - needs: notify-dependents - if: fromJson(needs.notify-dependents.outputs.repo-count) > 0 - environment: dependency-management - strategy: - matrix: - repository: ${{ fromJson(needs.notify-dependents.outputs.dependent-repos) }} - fail-fast: false - max-parallel: 5 - - steps: - - name: Generate GitHub App Token - id: app-token - uses: actions/create-github-app-token@v2 - with: - app-id: ${{ secrets.IR_REPO_AUTH_APP_ID }} - private-key: ${{ secrets.IR_REPO_AUTH_PRIVATE_KEY }} - owner: theinfinitereality - - - name: Dispatch repository update - uses: peter-evans/repository-dispatch@v3 - with: - token: ${{ steps.app-token.outputs.token }} - repository: ${{ matrix.repository }} - event-type: update-dependency - client-payload: | - { - "project_name": "${{ needs.notify-dependents.outputs.project-name }}", - "commit_hash": "${{ needs.notify-dependents.outputs.commit-hash }}", - "branch": "${{ needs.notify-dependents.outputs.branch-name }}" - } - - - name: Log dispatch - run: | - echo "Successfully dispatched update to ${{ matrix.repository }}" - echo "Payload sent:" - echo "- project_name: ${{ needs.notify-dependents.outputs.project-name }}" - echo "- commit_hash: ${{ needs.notify-dependents.outputs.commit-hash }}" - echo "- branch: ${{ needs.notify-dependents.outputs.branch-name }}" - - summary: - name: Create Summary - runs-on: ubuntu-latest - needs: [notify-dependents, dispatch-updates] - if: always() - - steps: - - name: Create dispatch summary - run: | - REPO_COUNT="${{ needs.notify-dependents.outputs.repo-count }}" - PROJECT_NAME="${{ needs.notify-dependents.outputs.project-name }}" - COMMIT_HASH="${{ needs.notify-dependents.outputs.commit-hash }}" - BRANCH_NAME="${{ needs.notify-dependents.outputs.branch-name }}" - - echo "## Dependency Notification Summary" >> $GITHUB_STEP_SUMMARY - echo "" >> $GITHUB_STEP_SUMMARY - echo "- **Source Project**: \`$PROJECT_NAME\`" >> $GITHUB_STEP_SUMMARY - echo "- **Commit**: \`$COMMIT_HASH\`" >> $GITHUB_STEP_SUMMARY - echo "- **Branch**: \`$BRANCH_NAME\`" >> $GITHUB_STEP_SUMMARY - echo "- **Dependent Projects**: $REPO_COUNT" >> $GITHUB_STEP_SUMMARY - - if [ "$REPO_COUNT" -gt 0 ]; then - echo "" >> $GITHUB_STEP_SUMMARY - echo "### Notified Repositories" >> $GITHUB_STEP_SUMMARY - REPOS='${{ needs.notify-dependents.outputs.dependent-repos }}' - echo "$REPOS" | jq -r '.[]' | while read -r repo; do - echo "- \`$repo\`" >> $GITHUB_STEP_SUMMARY - done - else - echo "" >> $GITHUB_STEP_SUMMARY - echo "No dependent projects configured in DEPENDENT_PROJECTS environment variable." >> $GITHUB_STEP_SUMMARY - fi diff --git a/.github/workflows/update-dependency.yml b/.github/workflows/update-dependency.yml deleted file mode 100644 index 5abae94..0000000 --- a/.github/workflows/update-dependency.yml +++ /dev/null @@ -1,168 +0,0 @@ -name: Update Dependency - -on: - repository_dispatch: - types: - - update-dependency - -permissions: - contents: write - pull-requests: write - -jobs: - update-manifest: - name: Update Project Manifest - runs-on: ubuntu-latest - - steps: - - name: Generate GitHub App Token - id: app-token - uses: actions/create-github-app-token@v2 - with: - app-id: ${{ secrets.IR_REPO_AUTH_APP_ID }} - private-key: ${{ secrets.IR_REPO_AUTH_PRIVATE_KEY }} - owner: theinfinitereality - - - name: Checkout repository - uses: actions/checkout@v4 - with: - ref: ${{ github.event.client_payload.branch }} - token: ${{ steps.app-token.outputs.token }} - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '18' - - - name: Validate payload - run: | - echo "Received payload:" - echo "Project name: ${{ github.event.client_payload.project_name }}" - echo "Commit hash: ${{ github.event.client_payload.commit_hash }}" - echo "Branch: ${{ github.event.client_payload.branch }}" - - if [ -z "${{ github.event.client_payload.project_name }}" ]; then - echo "Error: project_name is required" - exit 1 - fi - - if [ -z "${{ github.event.client_payload.commit_hash }}" ]; then - echo "Error: commit_hash is required" - exit 1 - fi - - if [ -z "${{ github.event.client_payload.branch }}" ]; then - echo "Error: branch is required" - exit 1 - fi - - - name: Check if manifest.json exists - run: | - if [ ! -f "manifest.json" ]; then - echo "Error: manifest.json not found in repository root" - exit 1 - fi - - - name: Update manifest.json - run: | - PROJECT_NAME="${{ github.event.client_payload.project_name }}" - COMMIT_HASH="${{ github.event.client_payload.commit_hash }}" - - # Install jq for JSON manipulation - sudo apt-get update && sudo apt-get install -y jq - - # Create a backup of the original manifest - cp manifest.json manifest.json.backup - - # Check if dependencies array exists, create if it doesn't - if ! jq -e '.dependencies' manifest.json > /dev/null; then - echo "Creating dependencies array in manifest.json" - jq '. + {"dependencies": []}' manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json - fi - - # Check if the project already exists in dependencies - EXISTING_INDEX=$(jq --arg name "$PROJECT_NAME" '.dependencies | map(.name) | index($name)' manifest.json) - - if [ "$EXISTING_INDEX" != "null" ]; then - echo "Updating existing dependency: $PROJECT_NAME" - # Update existing entry's commit hash - jq --arg name "$PROJECT_NAME" --arg commit "$COMMIT_HASH" \ - '.dependencies = (.dependencies | map(if .name == $name then .commit = $commit else . end))' \ - manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json - else - echo "Adding new dependency: $PROJECT_NAME" - # Add new dependency entry - jq --arg name "$PROJECT_NAME" --arg commit "$COMMIT_HASH" \ - '.dependencies += [{"name": $name, "commit": $commit}]' \ - manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json - fi - - # Validate the updated JSON - if ! jq empty manifest.json; then - echo "Error: Invalid JSON generated. Restoring backup." - mv manifest.json.backup manifest.json - exit 1 - fi - - echo "Successfully updated manifest.json" - echo "Updated dependencies:" - jq '.dependencies' manifest.json - - - name: Check for changes - id: check-changes - run: | - if git diff --quiet manifest.json; then - echo "No changes detected in manifest.json" - echo "has-changes=false" >> $GITHUB_OUTPUT - else - echo "Changes detected in manifest.json" - echo "has-changes=true" >> $GITHUB_OUTPUT - fi - - - name: Commit and push changes - if: steps.check-changes.outputs.has-changes == 'true' - env: - token: ${{ steps.app-token.outputs.token }} - run: | - PROJECT_NAME="${{ github.event.client_payload.project_name }}" - COMMIT_HASH="${{ github.event.client_payload.commit_hash }}" - SHORT_HASH="${COMMIT_HASH:0:8}" - - # Configure git - git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" - - # Add and commit changes - git add manifest.json - git commit -m "Update dependency $PROJECT_NAME to commit $SHORT_HASH - - - Project: $PROJECT_NAME - - Commit: $COMMIT_HASH - - Updated via: repository_dispatch" - - # Push changes - git push origin ${{ github.event.client_payload.branch }} - - echo "Successfully committed and pushed dependency update" - - - name: Create summary - run: | - PROJECT_NAME="${{ github.event.client_payload.project_name }}" - COMMIT_HASH="${{ github.event.client_payload.commit_hash }}" - BRANCH="${{ github.event.client_payload.branch }}" - HAS_CHANGES="${{ steps.check-changes.outputs.has-changes }}" - - echo "## Dependency Update Summary" >> $GITHUB_STEP_SUMMARY - echo "" >> $GITHUB_STEP_SUMMARY - echo "- **Project**: \`$PROJECT_NAME\`" >> $GITHUB_STEP_SUMMARY - echo "- **Commit**: \`$COMMIT_HASH\`" >> $GITHUB_STEP_SUMMARY - echo "- **Branch**: \`$BRANCH\`" >> $GITHUB_STEP_SUMMARY - echo "- **Changes Made**: $HAS_CHANGES" >> $GITHUB_STEP_SUMMARY - - if [ "$HAS_CHANGES" = "true" ]; then - echo "" >> $GITHUB_STEP_SUMMARY - echo "### Updated Dependencies" >> $GITHUB_STEP_SUMMARY - echo "\`\`\`json" >> $GITHUB_STEP_SUMMARY - jq '.dependencies' manifest.json >> $GITHUB_STEP_SUMMARY - echo "\`\`\`" >> $GITHUB_STEP_SUMMARY - fi diff --git a/assets/models/Aur_CenterRack.bin b/assets/models/Aur_CenterRack.bin new file mode 100644 index 0000000..1c00517 Binary files /dev/null and b/assets/models/Aur_CenterRack.bin differ diff --git a/assets/models/Aur_CenterRack.gltf b/assets/models/Aur_CenterRack.gltf new file mode 100644 index 0000000..1acc77f --- /dev/null +++ b/assets/models/Aur_CenterRack.gltf @@ -0,0 +1,1093 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":90, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"21559b4c-c3a9-4493-a22e-572d848b474d", + "assets reported":{}, + "scatter_properties":{}, + "recast_navmesh":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 8 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":2 + }, + "mesh":0, + "name":"clothes_hanger_01.013", + "rotation":[ + 0.541675329208374, + 0.45451948046684265, + -0.4545193612575531, + 0.5416752099990845 + ], + "scale":[ + 0.819433331489563, + 0.819433331489563, + 0.8194332718849182 + ], + "translation":[ + 36.005706787109375, + 69.24266815185547, + -35.26631546020508 + ] + }, + { + "extras":{ + "MaxHandle":2 + }, + "mesh":1, + "name":"clothes_hanger_01.014", + "rotation":[ + 0.4521404206752777, + 0.5436627268791199, + -0.5436626076698303, + 0.45214030146598816 + ], + "scale":[ + 0.819433331489563, + 0.819433331489563, + 0.8194332718849182 + ], + "translation":[ + 35.98326110839844, + 69.24268341064453, + -140.83580017089844 + ] + }, + { + "extras":{ + "MaxHandle":2 + }, + "mesh":2, + "name":"clothes_hanger_01.015", + "rotation":[ + 0.4545196294784546, + 0.5416752099990845, + -0.5416750907897949, + 0.4545195698738098 + ], + "scale":[ + 0.8194332718849182, + 0.8194332718849182, + 0.8194332718849182 + ], + "translation":[ + 35.848480224609375, + 69.24264526367188, + 56.015621185302734 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"mesh", + "xrengine.entity":"clothes_hanger_01_collider" + }, + "mesh":3, + "name":"clothes_hanger_01_collider.012", + "rotation":[ + 0, + 0.642787516117096, + 0, + 0.7660444974899292 + ], + "scale":[ + 32.15296173095703, + 29.647075653076172, + 112.4417724609375 + ], + "translation":[ + 34.40248107910156, + 68.1758041381836, + -35.54896926879883 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"mesh", + "xrengine.entity":"clothes_hanger_01_collider" + }, + "mesh":4, + "name":"clothes_hanger_01_collider.013", + "rotation":[ + 0, + 0.768855094909668, + 0, + 0.6394230723381042 + ], + "scale":[ + 32.15296173095703, + 29.647075653076172, + 112.44178009033203 + ], + "translation":[ + 34.38261413574219, + 68.17581939697266, + -140.5389862060547 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"mesh", + "xrengine.entity":"clothes_hanger_01_collider" + }, + "mesh":5, + "name":"clothes_hanger_01_collider.014", + "rotation":[ + 0, + 0.7660443782806396, + 0, + 0.642787754535675 + ], + "scale":[ + 32.152957916259766, + 29.647075653076172, + 112.44178009033203 + ], + "translation":[ + 34.24528503417969, + 68.17578125, + 56.29829025268555 + ] + }, + { + "children":[ + 0, + 1, + 2, + 3, + 4, + 5 + ], + "mesh":6, + "name":"Aur_CenterRack.001", + "scale":[ + 0.008893489837646484, + 0.008893489837646484, + 0.008893489837646484 + ], + "translation":[ + 0.05427229404449463, + 1.3898661136627197, + 0.28377771377563477 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"Aur_CenterRack.001_bcol" + }, + "mesh":7, + "name":"Aur_CenterRack.001_bcol", + "translation":[ + 0.00016701221466064453, + 0.10840058326721191, + -0.0001583099365234375 + ] + }, + { + "children":[ + 6, + 7 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Aurelia_PBR_Export" + }, + "name":"Aur_CenterRack", + "translation":[ + -1.8889567852020264, + -0.10840058326721191, + -2.982247829437256 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Metal", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.005", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.006", + "primitives":[ + { + "attributes":{ + "POSITION":7, + "NORMAL":8, + "TEXCOORD_0":9 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.004", + "primitives":[ + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12 + }, + "indices":13 + } + ] + }, + { + "name":"Cube.009", + "primitives":[ + { + "attributes":{ + "POSITION":14, + "NORMAL":15, + "TEXCOORD_0":16 + }, + "indices":13 + } + ] + }, + { + "name":"Cube.016", + "primitives":[ + { + "attributes":{ + "POSITION":17, + "NORMAL":18, + "TEXCOORD_0":19 + }, + "indices":13 + } + ] + }, + { + "name":"01_Metaldetails.002", + "primitives":[ + { + "attributes":{ + "POSITION":20, + "NORMAL":21, + "TEXCOORD_0":22 + }, + "indices":23, + "material":0 + } + ] + }, + { + "name":"Cube.019", + "primitives":[ + { + "attributes":{ + "POSITION":24, + "NORMAL":25, + "TEXCOORD_0":26 + }, + "indices":13 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_normal", + "uri":"Aurelia_Atlas_01_normal.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_base_color", + "uri":"Aurelia_Atlas_01_base_color.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_ORM", + "uri":"Aurelia_Atlas_01_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":826, + "max":[ + 41.41338348388672, + 5.218361854553223, + 43.20700454711914 + ], + "min":[ + -41.41338348388672, + -4.533297061920166, + -5.723391532897949 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":826, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":826, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":2352, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":826, + "max":[ + 41.41338348388672, + 5.218361854553223, + 43.20700454711914 + ], + "min":[ + -41.41338348388672, + -4.533297061920166, + -5.723391532897949 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":826, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":826, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5126, + "count":826, + "max":[ + 41.41338348388672, + 5.218361854553223, + 43.20700454711914 + ], + "min":[ + -41.41338348388672, + -4.533297061920166, + -5.723391532897949 + ], + "type":"VEC3" + }, + { + "bufferView":8, + "componentType":5126, + "count":826, + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":826, + "type":"VEC2" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "max":[ + 1.1237534284591675, + -0.1257166564464569, + 0.043016113340854645 + ], + "min":[ + -1.1237534284591675, + -1.1643397808074951, + 0.007351303473114967 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "max":[ + 1.1237534284591675, + -0.1257166564464569, + 0.043016113340854645 + ], + "min":[ + -1.1237534284591675, + -1.1643397808074951, + 0.007351303473114967 + ], + "type":"VEC3" + }, + { + "bufferView":15, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "max":[ + 1.1237534284591675, + -0.1257166564464569, + 0.043016113340854645 + ], + "min":[ + -1.1237534284591675, + -1.1643397808074951, + 0.007351303473114967 + ], + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":19, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":20, + "componentType":5126, + "count":183, + "max":[ + 37.16366195678711, + 72.43848419189453, + 121.60752868652344 + ], + "min":[ + -122.62123107910156, + -160.2802734375, + -184.0169219970703 + ], + "type":"VEC3" + }, + { + "bufferView":21, + "componentType":5126, + "count":183, + "type":"VEC3" + }, + { + "bufferView":22, + "componentType":5126, + "count":183, + "type":"VEC2" + }, + { + "bufferView":23, + "componentType":5123, + "count":498, + "type":"SCALAR" + }, + { + "bufferView":24, + "componentType":5126, + "count":24, + "max":[ + 0.38461995124816895, + 1.925696611404419, + 1.3654515743255615 + ], + "min":[ + -1.0364253520965576, + -0.1439858078956604, + -1.352616548538208 + ], + "type":"VEC3" + }, + { + "bufferView":25, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":26, + "componentType":5126, + "count":24, + "type":"VEC2" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":9912, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":9912, + "target":34962 + }, + { + "buffer":0, + "byteLength":6608, + "byteOffset":19824, + "target":34962 + }, + { + "buffer":0, + "byteLength":4704, + "byteOffset":26432, + "target":34963 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":31136, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":41048, + "target":34962 + }, + { + "buffer":0, + "byteLength":6608, + "byteOffset":50960, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":57568, + "target":34962 + }, + { + "buffer":0, + "byteLength":9912, + "byteOffset":67480, + "target":34962 + }, + { + "buffer":0, + "byteLength":6608, + "byteOffset":77392, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84000, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84288, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":84576, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":84768, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":84840, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85128, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":85416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85608, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":85896, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":86184, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":86376, + "target":34962 + }, + { + "buffer":0, + "byteLength":2196, + "byteOffset":88572, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":90768, + "target":34962 + }, + { + "buffer":0, + "byteLength":996, + "byteOffset":92232, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":93516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":93804, + "target":34962 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":93996, + "uri":"Aur_CenterRack.bin" + } + ] +} diff --git a/assets/models/Aurelia_Atlas_01_ORM.png b/assets/models/Aurelia_Atlas_01_ORM.png index e695251..d81b0ed 100644 Binary files a/assets/models/Aurelia_Atlas_01_ORM.png and b/assets/models/Aurelia_Atlas_01_ORM.png differ diff --git a/assets/models/Aurelia_Atlas_01_Roughness.png b/assets/models/Aurelia_Atlas_01_Roughness.png new file mode 100644 index 0000000..e676125 Binary files /dev/null and b/assets/models/Aurelia_Atlas_01_Roughness.png differ diff --git a/assets/models/Aurelia_Atlas_01_base_color.png b/assets/models/Aurelia_Atlas_01_base_color.png index d1a4690..fc955a2 100644 Binary files a/assets/models/Aurelia_Atlas_01_base_color.png and b/assets/models/Aurelia_Atlas_01_base_color.png differ diff --git a/assets/models/Aurelia_Atlas_01_normal.png b/assets/models/Aurelia_Atlas_01_normal.png index c3989a5..922f5f8 100644 Binary files a/assets/models/Aurelia_Atlas_01_normal.png and b/assets/models/Aurelia_Atlas_01_normal.png differ diff --git a/assets/models/Aurelia_Atlas_02_Normal.png b/assets/models/Aurelia_Atlas_02_Normal.png new file mode 100644 index 0000000..bfb077a Binary files /dev/null and b/assets/models/Aurelia_Atlas_02_Normal.png differ diff --git a/assets/models/DeSo_Inflatable_Display.bin b/assets/models/DeSo_Inflatable_Display.bin new file mode 100644 index 0000000..b2b2f99 Binary files /dev/null and b/assets/models/DeSo_Inflatable_Display.bin differ diff --git a/assets/models/DeSo_Inflatable_Display.gltf b/assets/models/DeSo_Inflatable_Display.gltf new file mode 100644 index 0000000..298c8b7 --- /dev/null +++ b/assets/models/DeSo_Inflatable_Display.gltf @@ -0,0 +1,246 @@ +{ + "asset" : { + "generator" : "Khronos glTF Blender I/O v3.2.43", + "version" : "2.0" + }, + "scene" : 0, + "scenes" : [ + { + "extras" : { + "created_collider" : {}, + "uuid" : "bf2a6959-0ba9-483f-aa36-58dada9d86a6", + "assets reported" : {} + }, + "name" : "Scene", + "nodes" : [ + 2 + ] + } + ], + "nodes" : [ + { + "mesh" : 0, + "name" : "Inflatable_display_mesh", + "translation" : [ + 0, + 0.5103327631950378, + 0 + ] + }, + { + "extras" : { + "xrengine.EE_collider.shape" : "box", + "xrengine.entity" : "Inflatable_display_mesh_bcol" + }, + "mesh" : 1, + "name" : "Inflatable_display_mesh_bcol" + }, + { + "children" : [ + 0, + 1 + ], + "extras" : { + "xrengine.EE_rigidbody.type" : "fixed", + "xrengine.entity" : "" + }, + "name" : "DeSt_Inflatable_Display" + } + ], + "materials" : [ + { + "doubleSided" : true, + "name" : "Displays", + "normalTexture" : { + "index" : 0 + }, + "pbrMetallicRoughness" : { + "baseColorFactor" : [ + 0.15322032570838928, + 0.5328742265701294, + 0.8011890649795532, + 0.9948186278343201 + ], + "metallicFactor" : 0, + "metallicRoughnessTexture" : { + "index" : 1 + } + } + } + ], + "meshes" : [ + { + "name" : "Cube.015", + "primitives" : [ + { + "attributes" : { + "POSITION" : 0, + "NORMAL" : 1, + "TEXCOORD_0" : 2 + }, + "indices" : 3, + "material" : 0 + } + ] + }, + { + "name" : "Cube.004", + "primitives" : [ + { + "attributes" : { + "POSITION" : 4, + "NORMAL" : 5, + "TEXCOORD_0" : 6 + }, + "indices" : 7 + } + ] + } + ], + "textures" : [ + { + "sampler" : 0, + "source" : 0 + }, + { + "sampler" : 0, + "source" : 1 + } + ], + "images" : [ + { + "mimeType" : "image/png", + "name" : "Inflatable_display_Normal", + "uri" : "Inflatable_display_Normal.png" + }, + { + "mimeType" : "image/png", + "name" : "Inflatable_display_Roughness", + "uri" : "Inflatable_display_Roughness.png" + } + ], + "accessors" : [ + { + "bufferView" : 0, + "componentType" : 5126, + "count" : 7474, + "max" : [ + 0.5493110418319702, + 0.5859528183937073, + 0.5470678806304932 + ], + "min" : [ + -0.5481644868850708, + -0.5087601542472839, + -0.5475409030914307 + ], + "type" : "VEC3" + }, + { + "bufferView" : 1, + "componentType" : 5126, + "count" : 7474, + "type" : "VEC3" + }, + { + "bufferView" : 2, + "componentType" : 5126, + "count" : 7474, + "type" : "VEC2" + }, + { + "bufferView" : 3, + "componentType" : 5123, + "count" : 39096, + "type" : "SCALAR" + }, + { + "bufferView" : 4, + "componentType" : 5126, + "count" : 24, + "max" : [ + 0.5493110418319702, + 1.0962857007980347, + 0.5470679998397827 + ], + "min" : [ + -0.5481644868850708, + 0.0015724897384643555, + -0.5475410223007202 + ], + "type" : "VEC3" + }, + { + "bufferView" : 5, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 6, + "componentType" : 5126, + "count" : 24, + "type" : "VEC2" + }, + { + "bufferView" : 7, + "componentType" : 5123, + "count" : 36, + "type" : "SCALAR" + } + ], + "bufferViews" : [ + { + "buffer" : 0, + "byteLength" : 89688, + "byteOffset" : 0 + }, + { + "buffer" : 0, + "byteLength" : 89688, + "byteOffset" : 89688 + }, + { + "buffer" : 0, + "byteLength" : 59792, + "byteOffset" : 179376 + }, + { + "buffer" : 0, + "byteLength" : 78192, + "byteOffset" : 239168 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 317360 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 317648 + }, + { + "buffer" : 0, + "byteLength" : 192, + "byteOffset" : 317936 + }, + { + "buffer" : 0, + "byteLength" : 72, + "byteOffset" : 318128 + } + ], + "samplers" : [ + { + "magFilter" : 9729, + "minFilter" : 9987 + } + ], + "buffers" : [ + { + "byteLength" : 318200, + "uri" : "DeSo_Inflatable_Display.bin" + } + ] +} diff --git a/assets/models/Dojo_Display.bin b/assets/models/Dojo_Display.bin new file mode 100644 index 0000000..dfd3a34 Binary files /dev/null and b/assets/models/Dojo_Display.bin differ diff --git a/assets/models/Dojo_Display.gltf b/assets/models/Dojo_Display.gltf new file mode 100644 index 0000000..61a7e9b --- /dev/null +++ b/assets/models/Dojo_Display.gltf @@ -0,0 +1,546 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"11645b09-9cce-4c81-bf7e-4b80a83a7260", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "created_collider":{}, + "sun_pos_properties":{ + "day_of_year":114, + "sun_object":{}, + "object_collection":{} + }, + "recast_navmesh":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"natural_display_table_02_mesh.003", + "rotation":[ + 0, + -0.7071067094802856, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.8484189510345459, + 0.8484189510345459, + 0.8484189510345459 + ], + "translation":[ + 0.021112391725182533, + 0.46956631541252136, + -0.0019337148405611515 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"natural_display_table_02_mesh.003_bcol" + }, + "mesh":1, + "name":"natural_display_table_02_mesh.003_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Japanese_Dojo_Props" + }, + "name":"Dojo_Display" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Log Displays.001", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Cylinder.019", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Log_Displays_Normal", + "uri":"Log_Displays_Normal.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_BaseColor", + "uri":"Log_Displays_BaseColor.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_ORM", + "uri":"Log_Displays_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":917, + "max":[ + 0.5872029066085815, + 0.1481015980243683, + 0.5657191276550293 + ], + "min":[ + -0.6016750335693359, + -0.5276801586151123, + -0.5721961259841919 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":917, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":917, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":3978, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 0.5065744519233704, + 0.5952185392379761, + 0.496260404586792 + ], + "min":[ + -0.4588544964790344, + 0.02187246084213257, + -0.5124062299728394 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":11004, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":11004, + "byteOffset":11004, + "target":34962 + }, + { + "buffer":0, + "byteLength":7336, + "byteOffset":22008, + "target":34962 + }, + { + "buffer":0, + "byteLength":7956, + "byteOffset":29344, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37300, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":37588, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":37876, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":38068, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":38140, + "uri":"Dojo_Display.bin" + } + ] +} diff --git a/assets/models/Dojo_Display_Round.bin b/assets/models/Dojo_Display_Round.bin new file mode 100644 index 0000000..168cafd Binary files /dev/null and b/assets/models/Dojo_Display_Round.bin differ diff --git a/assets/models/Dojo_Display_Round.gltf b/assets/models/Dojo_Display_Round.gltf new file mode 100644 index 0000000..4c14185 --- /dev/null +++ b/assets/models/Dojo_Display_Round.gltf @@ -0,0 +1,535 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"11645b09-9cce-4c81-bf7e-4b80a83a7260", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "created_collider":{}, + "sun_pos_properties":{ + "day_of_year":114, + "sun_object":{}, + "object_collection":{} + }, + "recast_navmesh":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"natural_display_table_05_mesh.002", + "translation":[ + -0.02182423137128353, + 0.4982964098453522, + -0.0029785921797156334 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"natural_display_table_05_mesh.002_bcol" + }, + "mesh":1, + "name":"natural_display_table_05_mesh.002_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Japanese_Dojo_Props" + }, + "name":"Dojo_Display_Round" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Log Displays.001", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Cylinder.014", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Log_Displays_Normal", + "uri":"Log_Displays_Normal.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_BaseColor", + "uri":"Log_Displays_BaseColor.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_ORM", + "uri":"Log_Displays_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":794, + "max":[ + 0.5267858505249023, + 0.19510552287101746, + 0.5228747129440308 + ], + "min":[ + -0.5022407174110413, + -0.5126891732215881, + -0.5371993780136108 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":794, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":794, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":3498, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 0.5049616098403931, + 0.6934019327163696, + 0.5198961496353149 + ], + "min":[ + -0.5240648984909058, + -0.014392733573913574, + -0.5401779413223267 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":9528, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":9528, + "byteOffset":9528, + "target":34962 + }, + { + "buffer":0, + "byteLength":6352, + "byteOffset":19056, + "target":34962 + }, + { + "buffer":0, + "byteLength":6996, + "byteOffset":25408, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32404, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32692, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":32980, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":33172, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":33244, + "uri":"Dojo_Display_Round.bin" + } + ] +} diff --git a/assets/models/Dojo_Display_Tree.bin b/assets/models/Dojo_Display_Tree.bin new file mode 100644 index 0000000..c190a57 Binary files /dev/null and b/assets/models/Dojo_Display_Tree.bin differ diff --git a/assets/models/Dojo_Display_Tree.gltf b/assets/models/Dojo_Display_Tree.gltf new file mode 100644 index 0000000..eb4a4a8 --- /dev/null +++ b/assets/models/Dojo_Display_Tree.gltf @@ -0,0 +1,557 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"11645b09-9cce-4c81-bf7e-4b80a83a7260", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "created_collider":{}, + "sun_pos_properties":{ + "day_of_year":114, + "sun_object":{}, + "object_collection":{} + }, + "recast_navmesh":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"natural_display_tree_02_mesh", + "rotation":[ + 0, + -0.9537169337272644, + 0, + 0.3007059395313263 + ], + "translation":[ + 0.03269442170858383, + 1.0973206758499146, + -0.00986150186508894 + ] + }, + { + "extras":{ + "xrengine.entity":"natural_display_tree_02_mesh_Box_mcol", + "xrengine.EE_collider.shape":"mesh" + }, + "mesh":1, + "name":"natural_display_tree_02_mesh_Box_mcol", + "rotation":[ + 0, + -0.9537169933319092, + 0, + 0.30070579051971436 + ], + "scale":[ + 0.2952592074871063, + 0.23586465418338776, + 0.2707286775112152 + ], + "translation":[ + -0.027850298210978508, + 1.3212385177612305, + 0.013713358901441097 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Japanese_Dojo_Props" + }, + "name":"Dojo_Display_Tree" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Log Displays.001", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Cylinder.017", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"natural_display_tree_02_mesh_Box_mcol", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Log_Displays_Normal", + "uri":"Log_Displays_Normal.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_BaseColor", + "uri":"Log_Displays_BaseColor.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_ORM", + "uri":"Log_Displays_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":5525, + "max":[ + 0.7380341291427612, + 0.6021060943603516, + 0.862324595451355 + ], + "min":[ + -0.5648790597915649, + -1.0075616836547852, + -0.6631609797477722 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":5525, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":5525, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":24012, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":120, + "max":[ + 2.20532488822937, + 1.64000403881073, + 2.868110418319702 + ], + "min":[ + -1.935249924659729, + -5.046276092529297, + -2.564579725265503 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":180, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":66300, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":66300, + "byteOffset":66300, + "target":34962 + }, + { + "buffer":0, + "byteLength":44200, + "byteOffset":132600, + "target":34962 + }, + { + "buffer":0, + "byteLength":48024, + "byteOffset":176800, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":224824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":226264, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":227704, + "target":34962 + }, + { + "buffer":0, + "byteLength":360, + "byteOffset":228664, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":229024, + "uri":"Dojo_Display_Tree.bin" + } + ] +} diff --git a/assets/models/Dojo_Table.bin b/assets/models/Dojo_Table.bin new file mode 100644 index 0000000..fc5f033 Binary files /dev/null and b/assets/models/Dojo_Table.bin differ diff --git a/assets/models/Dojo_Table.gltf b/assets/models/Dojo_Table.gltf new file mode 100644 index 0000000..1131e5e --- /dev/null +++ b/assets/models/Dojo_Table.gltf @@ -0,0 +1,541 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"11645b09-9cce-4c81-bf7e-4b80a83a7260", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "created_collider":{}, + "sun_pos_properties":{ + "day_of_year":114, + "sun_object":{}, + "object_collection":{} + }, + "recast_navmesh":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"natural_display_table_04_mesh.001", + "rotation":[ + 0, + 0.7071066498756409, + 0, + 0.70710688829422 + ], + "translation":[ + 0.0013506966643035412, + 0.6817945241928101, + 0.01635049469769001 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"natural_display_table_04_mesh.001_bcol" + }, + "mesh":1, + "name":"natural_display_table_04_mesh.001_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Japanese_Dojo_Props" + }, + "name":"Dojo_Table" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Log Displays.001", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Cylinder.006", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.002", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Log_Displays_Normal", + "uri":"Log_Displays_Normal.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_BaseColor", + "uri":"Log_Displays_BaseColor.png" + }, + { + "mimeType":"image/png", + "name":"Log_Displays_ORM", + "uri":"Log_Displays_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":1060, + "max":[ + 0.707728385925293, + 0.09429191052913666, + 1.1904910802841187 + ], + "min":[ + -0.6778472065925598, + -0.5841619968414307, + -1.2127608060836792 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":1060, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":1060, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":3747, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 1.1918418407440186, + 0.7760864496231079, + 0.6941978931427002 + ], + "min":[ + -1.2114102840423584, + 0.0976325273513794, + -0.691378116607666 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":12720, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":12720, + "byteOffset":12720, + "target":34962 + }, + { + "buffer":0, + "byteLength":8480, + "byteOffset":25440, + "target":34962 + }, + { + "buffer":0, + "byteLength":7494, + "byteOffset":33920, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":41704, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":41992, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":42184, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":42256, + "uri":"Dojo_Table.bin" + } + ] +} diff --git a/assets/models/ElMi_Chair.bin b/assets/models/ElMi_Chair.bin new file mode 100644 index 0000000..bfad9b6 Binary files /dev/null and b/assets/models/ElMi_Chair.bin differ diff --git a/assets/models/ElMi_Chair.gltf b/assets/models/ElMi_Chair.gltf new file mode 100644 index 0000000..b3d337b --- /dev/null +++ b/assets/models/ElMi_Chair.gltf @@ -0,0 +1,367 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "max_samples":50, + "vrm_addon_extension":{}, + "uuid":"438cee43-7d1c-4b5d-83c2-af8360045fd2", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":49 + }, + "mesh":0, + "name":"ElMi_Chair.001", + "rotation":[ + 0.002006205730140209, + -0.4668232202529907, + 0.002948295557871461, + 0.8843435645103455 + ], + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0.011397979222238064, + 0.5063144564628601, + 0.0005155025282874703 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ElMi_Chair_bcol" + }, + "mesh":1, + "name":"ElMi_Chair_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Elevated_Minimalist_Props" + }, + "name":"ElMi_Chair" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"ChairAccent_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.23100000619888306, + 0.23100000619888306, + 0.23100000619888306, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.04971330612897873, + 0.04971330612897873, + 0.04971330612897873, + 1 + ], + "metallicFactor":0.6097561120986938, + "roughnessFactor":0.05958548188209534 + } + } + ], + "meshes":[ + { + "name":"Mesh.004", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + }, + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Cube", + "primitives":[ + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12 + }, + "indices":13 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":12016, + "max":[ + 19.291654586791992, + 14.771183013916016, + 14.279278755187988 + ], + "min":[ + -14.220742225646973, + -6.078929901123047, + -19.126543045043945 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":12016, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":12016, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":12016, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":61872, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":2789, + "max":[ + 18.669164657592773, + 9.077838897705078, + 15.514691352844238 + ], + "min":[ + -15.306710243225098, + -20.112255096435547, + -18.373369216918945 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":2789, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":2789, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":2789, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5123, + "count":10194, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "max":[ + 0.6925629377365112, + 0.8861914277076721, + 0.6277159452438354 + ], + "min":[ + -0.5359588861465454, + -0.008306026458740234, + -0.5949751138687134 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":144192, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":144192, + "byteOffset":144192, + "target":34962 + }, + { + "buffer":0, + "byteLength":96128, + "byteOffset":288384, + "target":34962 + }, + { + "buffer":0, + "byteLength":96128, + "byteOffset":384512, + "target":34962 + }, + { + "buffer":0, + "byteLength":123744, + "byteOffset":480640, + "target":34963 + }, + { + "buffer":0, + "byteLength":33468, + "byteOffset":604384, + "target":34962 + }, + { + "buffer":0, + "byteLength":33468, + "byteOffset":637852, + "target":34962 + }, + { + "buffer":0, + "byteLength":22312, + "byteOffset":671320, + "target":34962 + }, + { + "buffer":0, + "byteLength":22312, + "byteOffset":693632, + "target":34962 + }, + { + "buffer":0, + "byteLength":20388, + "byteOffset":715944, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":736332, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":736620, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":736908, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":737100, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":737172, + "uri":"ElMi_Chair.bin" + } + ] +} diff --git a/assets/models/ElMi_Loveseat.bin b/assets/models/ElMi_Loveseat.bin new file mode 100644 index 0000000..c60bbdc Binary files /dev/null and b/assets/models/ElMi_Loveseat.bin differ diff --git a/assets/models/ElMi_Loveseat.gltf b/assets/models/ElMi_Loveseat.gltf new file mode 100644 index 0000000..4b3e138 --- /dev/null +++ b/assets/models/ElMi_Loveseat.gltf @@ -0,0 +1,357 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "max_samples":50, + "vrm_addon_extension":{}, + "uuid":"438cee43-7d1c-4b5d-83c2-af8360045fd2", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":50 + }, + "mesh":0, + "name":"ElMi_Loveseat.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0.008721939288079739, + 0.5220250487327576, + -0.00045393110485747457 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ElMi_Loveseat_bcol" + }, + "mesh":1, + "name":"ElMi_Loveseat_bcol" + }, + { + "children":[ + 0, + 1 + ], + "name":"ElMi_Loveseat" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"ChairAccent_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.23100000619888306, + 0.23100000619888306, + 0.23100000619888306, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.04971330612897873, + 0.04971330612897873, + 0.04971330612897873, + 1 + ], + "metallicFactor":0.6097561120986938, + "roughnessFactor":0.05958548188209534 + } + } + ], + "meshes":[ + { + "name":"Mesh.005", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + }, + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Cube.003", + "primitives":[ + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12 + }, + "indices":13 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":13093, + "max":[ + 13.312538146972656, + 15.438018798828125, + 27.583423614501953 + ], + "min":[ + -15.479248046875, + -5.3791046142578125, + -27.593822479248047 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":13093, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":13093, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":13093, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":69360, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":2763, + "max":[ + 14.36016845703125, + 9.744674682617188, + 28.810779571533203 + ], + "min":[ + -14.452468872070312, + -19.445419311523438, + -28.799755096435547 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":2763, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":2763, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":2763, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5123, + "count":10332, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "max":[ + 0.3734702169895172, + 0.9141507148742676, + 0.7313398718833923 + ], + "min":[ + -0.3844509422779083, + 0.028111398220062256, + -0.7319677472114563 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":157116, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":157116, + "byteOffset":157116, + "target":34962 + }, + { + "buffer":0, + "byteLength":104744, + "byteOffset":314232, + "target":34962 + }, + { + "buffer":0, + "byteLength":104744, + "byteOffset":418976, + "target":34962 + }, + { + "buffer":0, + "byteLength":138720, + "byteOffset":523720, + "target":34963 + }, + { + "buffer":0, + "byteLength":33156, + "byteOffset":662440, + "target":34962 + }, + { + "buffer":0, + "byteLength":33156, + "byteOffset":695596, + "target":34962 + }, + { + "buffer":0, + "byteLength":22104, + "byteOffset":728752, + "target":34962 + }, + { + "buffer":0, + "byteLength":22104, + "byteOffset":750856, + "target":34962 + }, + { + "buffer":0, + "byteLength":20664, + "byteOffset":772960, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":793624, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":793912, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":794200, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":794392, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":794464, + "uri":"ElMi_Loveseat.bin" + } + ] +} diff --git a/assets/models/ElMi_Sofa.bin b/assets/models/ElMi_Sofa.bin new file mode 100644 index 0000000..902a229 Binary files /dev/null and b/assets/models/ElMi_Sofa.bin differ diff --git a/assets/models/ElMi_Sofa.gltf b/assets/models/ElMi_Sofa.gltf new file mode 100644 index 0000000..c9de930 --- /dev/null +++ b/assets/models/ElMi_Sofa.gltf @@ -0,0 +1,363 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "max_samples":50, + "vrm_addon_extension":{}, + "uuid":"438cee43-7d1c-4b5d-83c2-af8360045fd2", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":51 + }, + "mesh":0, + "name":"ElMi_Sofa.001", + "rotation":[ + 0, + -0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0.0581766702234745, + 0.5363773107528687, + 1.1696783985826187e-05 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ElMi_Sofa_bcol" + }, + "mesh":1, + "name":"ElMi_Sofa_bcol" + }, + { + "children":[ + 0, + 1 + ], + "name":"ElMi_Sofa" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"ChairAccent_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.23100000619888306, + 0.23100000619888306, + 0.23100000619888306, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.04971330612897873, + 0.04971330612897873, + 0.04971330612897873, + 1 + ], + "metallicFactor":0.6097561120986938, + "roughnessFactor":0.05958548188209534 + } + } + ], + "meshes":[ + { + "name":"Mesh.006", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + }, + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Cube.004", + "primitives":[ + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12 + }, + "indices":13 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":6910, + "max":[ + 62.952091217041016, + 15.564188957214355, + 28.144790649414062 + ], + "min":[ + -62.875, + -8.404057502746582, + -22.406051635742188 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":6910, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":6910, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":6910, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":35712, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":640, + "max":[ + 51.11509704589844, + 1.998011589050293, + 15.337478637695312 + ], + "min":[ + -51.23357009887695, + -20.72658348083496, + -21.550033569335938 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":640, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":640, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":640, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5123, + "count":2304, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "max":[ + 0.6272904872894287, + 0.9317077398300171, + 1.5989947319030762 + ], + "min":[ + -0.6567010879516602, + 0.0099220871925354, + -1.5970134735107422 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":82920, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":82920, + "byteOffset":82920, + "target":34962 + }, + { + "buffer":0, + "byteLength":55280, + "byteOffset":165840, + "target":34962 + }, + { + "buffer":0, + "byteLength":55280, + "byteOffset":221120, + "target":34962 + }, + { + "buffer":0, + "byteLength":71424, + "byteOffset":276400, + "target":34963 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":347824, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":355504, + "target":34962 + }, + { + "buffer":0, + "byteLength":5120, + "byteOffset":363184, + "target":34962 + }, + { + "buffer":0, + "byteLength":5120, + "byteOffset":368304, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":373424, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":378032, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":378320, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":378608, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":378800, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":378872, + "uri":"ElMi_Sofa.bin" + } + ] +} diff --git a/assets/models/ElMi_Table_Round.bin b/assets/models/ElMi_Table_Round.bin new file mode 100644 index 0000000..aa3aa7a Binary files /dev/null and b/assets/models/ElMi_Table_Round.bin differ diff --git a/assets/models/ElMi_Table_Round.gltf b/assets/models/ElMi_Table_Round.gltf new file mode 100644 index 0000000..095bbe6 --- /dev/null +++ b/assets/models/ElMi_Table_Round.gltf @@ -0,0 +1,501 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "max_samples":50, + "vrm_addon_extension":{}, + "uuid":"438cee43-7d1c-4b5d-83c2-af8360045fd2", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MaxHandle":47 + }, + "mesh":0, + "name":"ElMi_Table_Round.001", + "rotation":[ + 0.0003974919382017106, + 9.961113391909748e-05, + 0.0035439105704426765, + 0.999993622303009 + ], + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999783039093 + ], + "translation":[ + 0.0005690366961061954, + 0.46471312642097473, + -0.0015974934212863445 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ElMi_Table_Round_bcol" + }, + "mesh":1, + "name":"ElMi_Table_Round_bcol" + }, + { + "children":[ + 0, + 1 + ], + "name":"ElMi_Table_Round" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Glass_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 1, + 1, + 1, + 0.4419580101966858 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Wood_MAT", + "normalTexture":{ + "index":0, + "scale":0.125 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.04971330612897873, + 0.04971330612897873, + 0.04971330612897873, + 1 + ], + "metallicFactor":0.6097561120986938, + "roughnessFactor":0.05958548188209534 + } + } + ], + "meshes":[ + { + "name":"Mesh.002", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + }, + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8 + }, + "indices":9, + "material":1 + }, + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12, + "TEXCOORD_1":13 + }, + "indices":14, + "material":2 + } + ] + }, + { + "name":"Cube.002", + "primitives":[ + { + "attributes":{ + "POSITION":15, + "NORMAL":16, + "TEXCOORD_0":17 + }, + "indices":18 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"oak_wood_sawn_Normal", + "uri":"oak_wood_sawn_Normal.png" + }, + { + "mimeType":"image/png", + "name":"oak_wood_sawn_Base02_Color", + "uri":"oak_wood_sawn_Base02_Color.png" + }, + { + "mimeType":"image/png", + "name":"oak_wood_sawn_Roughness", + "uri":"oak_wood_sawn_Roughness.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":650, + "max":[ + 24.79912757873535, + 3.8923583030700684, + 24.859481811523438 + ], + "min":[ + -24.798351287841797, + 2.460427761077881, + -24.738750457763672 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":650, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":650, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":650, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":2880, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":1119, + "max":[ + 31.78971290588379, + 4.352243423461914, + 31.837249755859375 + ], + "min":[ + -31.788732528686523, + -4.116534233093262, + -31.742191314697266 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":1119, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":1119, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":1119, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5123, + "count":3840, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":4956, + "max":[ + 41.56903839111328, + 2.4634532928466797, + 37.5128288269043 + ], + "min":[ + -26.893178939819336, + -18.00714683532715, + -37.754154205322266 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":4956, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":4956, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5126, + "count":4956, + "type":"VEC2" + }, + { + "bufferView":14, + "componentType":5123, + "count":14400, + "type":"SCALAR" + }, + { + "bufferView":15, + "componentType":5126, + "count":24, + "max":[ + 1.0598303079605103, + 0.5835027098655701, + 0.9514745473861694 + ], + "min":[ + -0.8078216314315796, + 0.0008634328842163086, + -0.9611239433288574 + ], + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":18, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":7800, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":7800, + "byteOffset":7800, + "target":34962 + }, + { + "buffer":0, + "byteLength":5200, + "byteOffset":15600, + "target":34962 + }, + { + "buffer":0, + "byteLength":5200, + "byteOffset":20800, + "target":34962 + }, + { + "buffer":0, + "byteLength":5760, + "byteOffset":26000, + "target":34963 + }, + { + "buffer":0, + "byteLength":13428, + "byteOffset":31760, + "target":34962 + }, + { + "buffer":0, + "byteLength":13428, + "byteOffset":45188, + "target":34962 + }, + { + "buffer":0, + "byteLength":8952, + "byteOffset":58616, + "target":34962 + }, + { + "buffer":0, + "byteLength":8952, + "byteOffset":67568, + "target":34962 + }, + { + "buffer":0, + "byteLength":7680, + "byteOffset":76520, + "target":34963 + }, + { + "buffer":0, + "byteLength":59472, + "byteOffset":84200, + "target":34962 + }, + { + "buffer":0, + "byteLength":59472, + "byteOffset":143672, + "target":34962 + }, + { + "buffer":0, + "byteLength":39648, + "byteOffset":203144, + "target":34962 + }, + { + "buffer":0, + "byteLength":39648, + "byteOffset":242792, + "target":34962 + }, + { + "buffer":0, + "byteLength":28800, + "byteOffset":282440, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":311240, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":311528, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":311816, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":312008, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":312080, + "uri":"ElMi_Table_Round.bin" + } + ] +} diff --git a/assets/models/ElMi_Table_Square.bin b/assets/models/ElMi_Table_Square.bin new file mode 100644 index 0000000..9a4b82f Binary files /dev/null and b/assets/models/ElMi_Table_Square.bin differ diff --git a/assets/models/ElMi_Table_Square.gltf b/assets/models/ElMi_Table_Square.gltf new file mode 100644 index 0000000..3bccfd5 --- /dev/null +++ b/assets/models/ElMi_Table_Square.gltf @@ -0,0 +1,357 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "max_samples":50, + "vrm_addon_extension":{}, + "uuid":"438cee43-7d1c-4b5d-83c2-af8360045fd2", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":44 + }, + "mesh":0, + "name":"ElMi_Table_Square.001", + "rotation":[ + 0.0003974919382017106, + 9.961113391909748e-05, + 0.0035439105704426765, + 0.999993622303009 + ], + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999783039093 + ], + "translation":[ + 0.00014492713671643287, + 0.4171035587787628, + -1.6134879842866212e-05 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ElMi_Table_Square_bcol" + }, + "mesh":1, + "name":"ElMi_Table_Square_bcol" + }, + { + "children":[ + 0, + 1 + ], + "name":"ElMi_Table_Square" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Wall_MAT", + "pbrMetallicRoughness":{ + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"Metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.04971330612897873, + 0.04971330612897873, + 0.04971330612897873, + 1 + ], + "metallicFactor":0.6097561120986938, + "roughnessFactor":0.05958548188209534 + } + } + ], + "meshes":[ + { + "name":"Mesh", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + }, + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12 + }, + "indices":13 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":66, + "max":[ + 25.800703048706055, + 2.6111559867858887, + 25.8006534576416 + ], + "min":[ + -25.80072593688965, + -0.8410229086875916, + -25.8006649017334 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":66, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":66, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":132, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":2922, + "max":[ + 25.80071449279785, + -0.8408665060997009, + 26.11039924621582 + ], + "min":[ + -25.800722122192383, + -16.3212890625, + -26.11018180847168 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":2922, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":2922, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":2922, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5123, + "count":8688, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "max":[ + 0.6585388779640198, + 0.48859694600105286, + 0.6633692979812622 + ], + "min":[ + -0.655781090259552, + -0.002618342638015747, + -0.6636730432510376 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":792, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":792, + "byteOffset":792, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":1584, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":2112, + "target":34962 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":2640, + "target":34963 + }, + { + "buffer":0, + "byteLength":35064, + "byteOffset":2904, + "target":34962 + }, + { + "buffer":0, + "byteLength":35064, + "byteOffset":37968, + "target":34962 + }, + { + "buffer":0, + "byteLength":23376, + "byteOffset":73032, + "target":34962 + }, + { + "buffer":0, + "byteLength":23376, + "byteOffset":96408, + "target":34962 + }, + { + "buffer":0, + "byteLength":17376, + "byteOffset":119784, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":137160, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":137448, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":137736, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":137928, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":138000, + "uri":"ElMi_Table_Square.bin" + } + ] +} diff --git a/assets/models/Elevated_Minimalist_Props.bin b/assets/models/Elevated_Minimalist_Props.bin new file mode 100644 index 0000000..bfad9b6 Binary files /dev/null and b/assets/models/Elevated_Minimalist_Props.bin differ diff --git a/assets/models/ExRo_Display_Cube.bin b/assets/models/ExRo_Display_Cube.bin new file mode 100644 index 0000000..1297615 Binary files /dev/null and b/assets/models/ExRo_Display_Cube.bin differ diff --git a/assets/models/ExRo_Display_Cube.gltf b/assets/models/ExRo_Display_Cube.gltf new file mode 100644 index 0000000..303344e --- /dev/null +++ b/assets/models/ExRo_Display_Cube.gltf @@ -0,0 +1,671 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"352f016e-625d-47a7-bb07-53445f6a1137", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "sun_pos_properties":{ + "day_of_year":148, + "sun_object":{}, + "object_collection":{}, + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0 + }, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 3 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":36 + }, + "mesh":0, + "name":"ExRo_Display_Cube.001", + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + -0.0017409409629181027, + 0.3063526153564453, + -0.0018093400867655873 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ExRo_Display_Cube_bcol" + }, + "mesh":1, + "name":"ExRo_Display_Cube_bcol" + }, + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":39 + }, + "mesh":2, + "name":"ExRo_Display_Cube_Top", + "rotation":[ + 0.5000000596046448, + 0.49999991059303284, + -0.4999999403953552, + 0.5000001192092896 + ], + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + -0.001742461696267128, + 0.7055211067199707, + -0.0018504192121326923 + ] + }, + { + "children":[ + 0, + 1, + 2 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Exhibition_Room_Props" + }, + "name":"ExRo_Display_Cube" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Walls 2.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"glow.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + } + ], + "meshes":[ + { + "name":"Mesh.004", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + } + ] + }, + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7 + }, + "indices":8 + } + ] + }, + { + "name":"Mesh.007", + "primitives":[ + { + "attributes":{ + "POSITION":9, + "NORMAL":10, + "TEXCOORD_0":11, + "TEXCOORD_1":12 + }, + "indices":13, + "material":1 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":34, + "max":[ + 300, + 391.2176818847656, + 300 + ], + "min":[ + -300, + -391.2176818847656, + -300 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":34, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":34, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":96, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "max":[ + 0.2982584536075592, + 0.6975694894790649, + 0.29819005727767944 + ], + "min":[ + -0.3017403185367584, + -0.08486425876617432, + -0.30180877447128296 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":9, + "componentType":5126, + "count":48, + "max":[ + 299.99951171875, + 300.0001220703125, + 7.93994140625 + ], + "min":[ + -300.00048828125, + -299.9999084472656, + -9.62451171875 + ], + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":12, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":234, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":408, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":408, + "byteOffset":408, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":816, + "target":34962 + }, + { + "buffer":0, + "byteLength":272, + "byteOffset":1088, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1360, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1552, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1840, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2128, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":2320, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":2392, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":2968, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":3544, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":3928, + "target":34962 + }, + { + "buffer":0, + "byteLength":468, + "byteOffset":4312, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":4780, + "uri":"ExRo_Display_Cube.bin" + } + ] +} diff --git a/assets/models/ExRo_Lamp.bin b/assets/models/ExRo_Lamp.bin new file mode 100644 index 0000000..9e889e2 Binary files /dev/null and b/assets/models/ExRo_Lamp.bin differ diff --git a/assets/models/ExRo_Lamp.gltf b/assets/models/ExRo_Lamp.gltf new file mode 100644 index 0000000..aaca1d6 --- /dev/null +++ b/assets/models/ExRo_Lamp.gltf @@ -0,0 +1,705 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior", + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"352f016e-625d-47a7-bb07-53445f6a1137", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "sun_pos_properties":{ + "day_of_year":148, + "sun_object":{}, + "object_collection":{}, + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0 + }, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 3 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":37 + }, + "mesh":0, + "name":"ExRo_Lamp.001", + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + 0.001598079688847065, + 0.9924914240837097, + 0.0032914725597947836 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ExRo_Lamp_bcol" + }, + "mesh":1, + "name":"ExRo_Lamp_bcol" + }, + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":38 + }, + "mesh":2, + "name":"ExRo_Lamp_Glow", + "rotation":[ + 0.5000000596046448, + 0.49999991059303284, + -0.4999999403953552, + 0.5000001192092896 + ], + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + 0.0015971064567565918, + 1.570551872253418, + 0.0032535791397094727 + ] + }, + { + "children":[ + 0, + 1, + 2 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Exhibition_Room_Props" + }, + "name":"ExRo_Lamp" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"furniture.001", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":50 + } + }, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"glow", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ] + } + } + ], + "meshes":[ + { + "name":"Mesh.005", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + } + ] + }, + { + "name":"Cube.002", + "primitives":[ + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7 + }, + "indices":8 + } + ] + }, + { + "name":"Mesh.006", + "primitives":[ + { + "attributes":{ + "POSITION":9, + "NORMAL":10, + "TEXCOORD_0":11, + "TEXCOORD_1":12 + }, + "indices":13, + "material":1 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Exhibition_Furn_base_color", + "uri":"Exhibition_Furn_base_color.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":855, + "max":[ + 361.4528503417969, + 719.7543334960938, + 361.45318603515625 + ], + "min":[ + -361.4531555175781, + -1075.12158203125, + -361.45306396484375 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":855, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":855, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":855, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":4104, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "max":[ + 0.3630501925945282, + 1.7122442722320557, + 0.3647439777851105 + ], + "min":[ + -0.3598543107509613, + -0.08262801170349121, + -0.3581608831882477 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":9, + "componentType":5126, + "count":52, + "max":[ + 361.45361328125, + 361.4527587890625, + 109.779541015625 + ], + "min":[ + -361.45263671875, + -361.4530029296875, + -109.781005859375 + ], + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":52, + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":12, + "componentType":5126, + "count":52, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":144, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":10260, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":10260, + "byteOffset":10260, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":20520, + "target":34962 + }, + { + "buffer":0, + "byteLength":6840, + "byteOffset":27360, + "target":34962 + }, + { + "buffer":0, + "byteLength":8208, + "byteOffset":34200, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":42408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":42696, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":42984, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":43176, + "target":34963 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":43248, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":43872, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":44496, + "target":34962 + }, + { + "buffer":0, + "byteLength":416, + "byteOffset":44912, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":45328, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":45616, + "uri":"ExRo_Lamp.bin" + } + ] +} diff --git a/assets/models/ExRo_Long_Light.bin b/assets/models/ExRo_Long_Light.bin new file mode 100644 index 0000000..b524f69 Binary files /dev/null and b/assets/models/ExRo_Long_Light.bin differ diff --git a/assets/models/ExRo_Long_Light.gltf b/assets/models/ExRo_Long_Light.gltf new file mode 100644 index 0000000..7f38e44 --- /dev/null +++ b/assets/models/ExRo_Long_Light.gltf @@ -0,0 +1,744 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"352f016e-625d-47a7-bb07-53445f6a1137", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "sun_pos_properties":{ + "day_of_year":148, + "sun_object":{}, + "object_collection":{}, + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0 + }, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 3 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":35 + }, + "mesh":0, + "name":"ExRo_Long_Light_Cord", + "rotation":[ + 0.5000000596046448, + 0.49999991059303284, + -0.4999999403953552, + 0.5000001192092896 + ], + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + 8.117035031318665e-05, + -4.230642318725586, + -0.000985618680715561 + ] + }, + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":34 + }, + "mesh":1, + "name":"ExRo_Long_Light_Glow", + "rotation":[ + 0.5000000596046448, + 0.49999991059303284, + -0.4999999403953552, + 0.5000001192092896 + ], + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + 7.970530714374036e-05, + -4.672526836395264, + -0.0009856256656348705 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ExRo_Long_Light_Glow_bcol" + }, + "mesh":2, + "name":"ExRo_Long_Light_Glow_bcol" + }, + { + "children":[ + 0, + 1, + 2 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Exhibition_Room" + }, + "name":"ExRo_Long_Light" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Metal", + "normalTexture":{ + "index":0 + }, + "occlusionTexture":{ + "index":1, + "texCoord":1 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "metallicRoughnessTexture":{ + "index":1 + } + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":50 + } + }, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"glow", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ] + } + } + ], + "meshes":[ + { + "name":"Mesh.003", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + } + ] + }, + { + "name":"Mesh.002", + "primitives":[ + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8 + }, + "indices":9, + "material":1 + } + ] + }, + { + "name":"Cube", + "primitives":[ + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12 + }, + "indices":13 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Exhibition_normal", + "uri":"Exhibition_normal.png" + }, + { + "mimeType":"image/png", + "name":"Walls_01_lightmap-Exhibition_ORM", + "uri":"Walls_01_lightmap-Exhibition_ORM.png" + }, + { + "mimeType":"image/png", + "name":"Exhibition_base_color", + "uri":"Exhibition_base_color.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":209, + "max":[ + 44.31634521484375, + 44.99853515625, + 1041.885009765625 + ], + "min":[ + -44.31646728515625, + -45.00146484375, + -4290.009765625 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":209, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":209, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":209, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":444, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":46, + "max":[ + 44.31639862060547, + 45.000022888183594, + 600.0000610351562 + ], + "min":[ + -44.31641387939453, + -44.999977111816406, + -600.0001831054688 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":46, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":46, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "max":[ + 0.04507967829704285, + -4.072527885437012, + 0.04333072900772095 + ], + "min":[ + -0.04492022097110748, + -5.272525787353516, + -0.04530195891857147 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2508, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2508, + "byteOffset":2508, + "target":34962 + }, + { + "buffer":0, + "byteLength":1672, + "byteOffset":5016, + "target":34962 + }, + { + "buffer":0, + "byteLength":1672, + "byteOffset":6688, + "target":34962 + }, + { + "buffer":0, + "byteLength":888, + "byteOffset":8360, + "target":34963 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":9248, + "target":34962 + }, + { + "buffer":0, + "byteLength":552, + "byteOffset":9800, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":10352, + "target":34962 + }, + { + "buffer":0, + "byteLength":368, + "byteOffset":10720, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":11088, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11304, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":11592, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":11880, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":12072, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":12144, + "uri":"ExRo_Long_Light.bin" + } + ] +} diff --git a/assets/models/ExRo_Podium.bin b/assets/models/ExRo_Podium.bin new file mode 100644 index 0000000..888102b Binary files /dev/null and b/assets/models/ExRo_Podium.bin differ diff --git a/assets/models/ExRo_Podium.gltf b/assets/models/ExRo_Podium.gltf new file mode 100644 index 0000000..62227f6 --- /dev/null +++ b/assets/models/ExRo_Podium.gltf @@ -0,0 +1,866 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "uuid":"352f016e-625d-47a7-bb07-53445f6a1137", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "sun_pos_properties":{ + "day_of_year":148, + "sun_object":{}, + "object_collection":{}, + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0 + }, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 3 + ] + } + ], + "nodes":[ + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ExRo_Podium_bcol" + }, + "mesh":0, + "name":"ExRo_Podium_bcol" + }, + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":32 + }, + "mesh":1, + "name":"ExRo_Podium_Stand", + "rotation":[ + 0.5000000596046448, + 0.49999991059303284, + -0.4999999403953552, + 0.5000001192092896 + ], + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + -0.0006040188018232584, + 0.6546491384506226, + -0.052053529769182205 + ] + }, + { + "extras":{ + "MapChannel:1":"UVMap", + "MapChannel:2":"Lightmap", + "MaxHandle":33 + }, + "mesh":2, + "name":"ExRo_Podium_Top", + "rotation":[ + 0.5000000596046448, + 0.49999991059303284, + -0.4999999403953552, + 0.5000001192092896 + ], + "scale":[ + 0.0009999979520216584, + 0.0009999979520216584, + 0.0009999979520216584 + ], + "translation":[ + -0.0006092782132327557, + 1.2788338661193848, + 0.08833451569080353 + ] + }, + { + "children":[ + 0, + 1, + 2 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Exhibition_Room_Props" + }, + "name":"ExRo_Podium" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Walls 1", + "normalTexture":{ + "index":0 + }, + "occlusionTexture":{ + "index":1, + "texCoord":1 + }, + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 1, + 0.9993202686309814, + 0.9993202686309814, + 1 + ], + "baseColorTexture":{ + "index":2 + }, + "metallicRoughnessTexture":{ + "index":1 + } + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Metal", + "normalTexture":{ + "index":3 + }, + "occlusionTexture":{ + "index":4, + "texCoord":1 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":5 + }, + "metallicRoughnessTexture":{ + "index":4 + } + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"glow.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + } + ], + "meshes":[ + { + "name":"Cube.003", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3 + } + ] + }, + { + "name":"Mesh", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6, + "TEXCOORD_1":7 + }, + "indices":8, + "material":0 + }, + { + "attributes":{ + "POSITION":9, + "NORMAL":10, + "TEXCOORD_0":11, + "TEXCOORD_1":12 + }, + "indices":13, + "material":1 + } + ] + }, + { + "name":"Mesh.001", + "primitives":[ + { + "attributes":{ + "POSITION":14, + "NORMAL":15, + "TEXCOORD_0":16, + "TEXCOORD_1":17 + }, + "indices":18, + "material":2 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Exhibition_normal", + "uri":"Exhibition_normal.png" + }, + { + "mimeType":"image/png", + "name":"Walls_01_lightmap-Exhibition_ORM", + "uri":"Walls_01_lightmap-Exhibition_ORM.png" + }, + { + "mimeType":"image/png", + "name":"Exhibition_base_color", + "uri":"Exhibition_base_color.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":24, + "max":[ + 0.37438738346099854, + 1.4297467470169067, + 0.3370889127254486 + ], + "min":[ + -0.3756113052368164, + -0.07651627063751221, + -0.23799660801887512 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":78, + "max":[ + 103.8593521118164, + 371.9920959472656, + 731.1669311523438 + ], + "min":[ + -389.1430969238281, + -372.0079040527344, + -762.7769165039062 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":78, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":78, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5126, + "count":78, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5123, + "count":168, + "type":"SCALAR" + }, + { + "bufferView":9, + "componentType":5126, + "count":334, + "max":[ + 185.94332885742188, + 374.9920959472656, + 731.1664428710938 + ], + "min":[ + -388.6240539550781, + -375.0079040527344, + -775.0991821289062 + ], + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":334, + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":12, + "componentType":5126, + "count":334, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5123, + "count":930, + "type":"SCALAR" + }, + { + "bufferView":14, + "componentType":5126, + "count":4, + "max":[ + 213.158203125, + 341.38134765625, + 128.77294921875 + ], + "min":[ + -213.158203125, + -341.38134765625, + -128.772705078125 + ], + "type":"VEC3" + }, + { + "bufferView":15, + "componentType":5126, + "count":4, + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":17, + "componentType":5126, + "count":4, + "type":"VEC2" + }, + { + "bufferView":18, + "componentType":5123, + "count":6, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":288, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":288, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":576, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":768, + "target":34963 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":840, + "target":34962 + }, + { + "buffer":0, + "byteLength":936, + "byteOffset":1776, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":2712, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":3336, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":3960, + "target":34963 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":4296, + "target":34962 + }, + { + "buffer":0, + "byteLength":4008, + "byteOffset":8304, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":12312, + "target":34962 + }, + { + "buffer":0, + "byteLength":2672, + "byteOffset":14984, + "target":34962 + }, + { + "buffer":0, + "byteLength":1860, + "byteOffset":17656, + "target":34963 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19516, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":19564, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19612, + "target":34962 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":19644, + "target":34962 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":19676, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":19688, + "uri":"ExRo_Podium.bin" + } + ] +} diff --git a/assets/models/Exhibition_Furn_base_color.png b/assets/models/Exhibition_Furn_base_color.png new file mode 100644 index 0000000..d887160 Binary files /dev/null and b/assets/models/Exhibition_Furn_base_color.png differ diff --git a/assets/models/Exhibition_base_color.png b/assets/models/Exhibition_base_color.png new file mode 100644 index 0000000..470b4a0 Binary files /dev/null and b/assets/models/Exhibition_base_color.png differ diff --git a/assets/models/Exhibition_normal.png b/assets/models/Exhibition_normal.png new file mode 100644 index 0000000..982ee98 Binary files /dev/null and b/assets/models/Exhibition_normal.png differ diff --git a/assets/models/Inflatable_display_Normal.png b/assets/models/Inflatable_display_Normal.png new file mode 100644 index 0000000..89f8502 Binary files /dev/null and b/assets/models/Inflatable_display_Normal.png differ diff --git a/assets/models/Inflatable_display_Roughness.png b/assets/models/Inflatable_display_Roughness.png new file mode 100644 index 0000000..9b16ea5 Binary files /dev/null and b/assets/models/Inflatable_display_Roughness.png differ diff --git a/assets/models/Log_Displays_BaseColor.png b/assets/models/Log_Displays_BaseColor.png new file mode 100644 index 0000000..d0663a7 Binary files /dev/null and b/assets/models/Log_Displays_BaseColor.png differ diff --git a/assets/models/Log_Displays_Normal.png b/assets/models/Log_Displays_Normal.png new file mode 100644 index 0000000..4950987 Binary files /dev/null and b/assets/models/Log_Displays_Normal.png differ diff --git a/assets/models/Log_Displays_ORM.png b/assets/models/Log_Displays_ORM.png new file mode 100644 index 0000000..088978a Binary files /dev/null and b/assets/models/Log_Displays_ORM.png differ diff --git a/assets/models/MeCo_Gravel_Large.bin b/assets/models/MeCo_Gravel_Large.bin new file mode 100644 index 0000000..f254b49 Binary files /dev/null and b/assets/models/MeCo_Gravel_Large.bin differ diff --git a/assets/models/MeCo_Gravel_Large.gltf b/assets/models/MeCo_Gravel_Large.gltf new file mode 100644 index 0000000..73ef7c5 --- /dev/null +++ b/assets/models/MeCo_Gravel_Large.gltf @@ -0,0 +1,755 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "created_collider":{}, + "max_samples":150, + "uuid":"e1bf76d0-8642-457f-a6f6-891b504d4e51", + "assets reported":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MapChannel:2":"UVChannel_2", + "MapChannel:3":"UVMap", + "MapChannel:4":"UVMap.001", + "MapChannel:5":"Lightmap", + "MaxHandle":19 + }, + "mesh":0, + "name":"MeCo_Gravel_Large.001", + "scale":[ + 0.01274688821285963, + 0.01274688821285963, + 0.01274688821285963 + ], + "translation":[ + -0.0022436045110225677, + 0.19574636220932007, + -0.08162219077348709 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"MeCo_Gravel_Large_bcol" + }, + "mesh":1, + "name":"MeCo_Gravel_Large_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Memphis_Courtyard_Props" + }, + "name":"MeCo_Gravel_Large" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"MeCo_Small_Display", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Floor", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":3 + } + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.010273154824972153, + 0.1539786159992218, + 0.4407196342945099, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + } + ], + "meshes":[ + { + "name":"Mesh.009", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3, + "TEXCOORD_2":4, + "TEXCOORD_3":5, + "TEXCOORD_4":6, + "TEXCOORD_5":7, + "TEXCOORD_6":8, + "TEXCOORD_7":9 + }, + "indices":10, + "material":0 + }, + { + "attributes":{ + "POSITION":11, + "NORMAL":12, + "TEXCOORD_0":13, + "TEXCOORD_1":14, + "TEXCOORD_2":15, + "TEXCOORD_3":16, + "TEXCOORD_4":17, + "TEXCOORD_5":18, + "TEXCOORD_6":19, + "TEXCOORD_7":20 + }, + "indices":21, + "material":1 + }, + { + "attributes":{ + "POSITION":22, + "NORMAL":23, + "TEXCOORD_0":24, + "TEXCOORD_1":25, + "TEXCOORD_2":26, + "TEXCOORD_3":27, + "TEXCOORD_4":28, + "TEXCOORD_5":29, + "TEXCOORD_6":30, + "TEXCOORD_7":31 + }, + "indices":32, + "material":2 + } + ] + }, + { + "name":"Cube.004", + "primitives":[ + { + "attributes":{ + "POSITION":33, + "NORMAL":34, + "TEXCOORD_0":35 + }, + "indices":36 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"block_folly_Norm", + "uri":"block_folly_Norm.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_AO", + "uri":"block_folly_AO.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_Rough", + "uri":"block_folly_Rough.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":59563, + "max":[ + 83.73445129394531, + 2.1333513259887695, + 184.1293182373047 + ], + "min":[ + -84.89985656738281, + -0.9380903840065002, + -156.35072326660156 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":59563, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":5, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":6, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5126, + "count":59563, + "type":"VEC2" + }, + { + "bufferView":10, + "componentType":5123, + "count":167589, + "type":"SCALAR" + }, + { + "bufferView":11, + "componentType":5126, + "count":192, + "max":[ + 70.46427917480469, + 5.069438934326172, + 71.83883666992188 + ], + "min":[ + -75.17327880859375, + -5.142891883850098, + -104.197998046875 + ], + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":192, + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":14, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":16, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":17, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":18, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":20, + "componentType":5126, + "count":192, + "type":"VEC2" + }, + { + "bufferView":21, + "componentType":5123, + "count":270, + "type":"SCALAR" + }, + { + "bufferView":22, + "componentType":5126, + "count":696, + "max":[ + 93.40091705322266, + 5.87782621383667, + 189.45411682128906 + ], + "min":[ + -96.18238067626953, + -12.142313957214355, + -160.45350646972656 + ], + "type":"VEC3" + }, + { + "bufferView":23, + "componentType":5126, + "count":696, + "type":"VEC3" + }, + { + "bufferView":24, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":25, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":26, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":27, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":28, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":29, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":30, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":31, + "componentType":5126, + "count":696, + "type":"VEC2" + }, + { + "bufferView":32, + "componentType":5123, + "count":1194, + "type":"SCALAR" + }, + { + "bufferView":33, + "componentType":5126, + "count":24, + "max":[ + 1.188327431678772, + 0.2706716060638428, + 2.3333282470703125 + ], + "min":[ + -1.2282696962356567, + 0.04096856713294983, + -2.1269049644470215 + ], + "type":"VEC3" + }, + { + "bufferView":34, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":35, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":36, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":714756, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":714756, + "byteOffset":714756, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":1429512, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":1906016, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":2382520, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":2859024, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":3335528, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":3812032, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":4288536, + "target":34962 + }, + { + "buffer":0, + "byteLength":476504, + "byteOffset":4765040, + "target":34962 + }, + { + "buffer":0, + "byteLength":335178, + "byteOffset":5241544, + "target":34963 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":5576724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2304, + "byteOffset":5579028, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5581332, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5582868, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5584404, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5585940, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5587476, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5589012, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5590548, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":5592084, + "target":34962 + }, + { + "buffer":0, + "byteLength":540, + "byteOffset":5593620, + "target":34963 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":5594160, + "target":34962 + }, + { + "buffer":0, + "byteLength":8352, + "byteOffset":5602512, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5610864, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5616432, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5622000, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5627568, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5633136, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5638704, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5644272, + "target":34962 + }, + { + "buffer":0, + "byteLength":5568, + "byteOffset":5649840, + "target":34962 + }, + { + "buffer":0, + "byteLength":2388, + "byteOffset":5655408, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5657796, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5658084, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5658372, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":5658564, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":5658636, + "uri":"MeCo_Gravel_Large.bin" + } + ] +} diff --git a/assets/models/MeCo_Gravel_Small.bin b/assets/models/MeCo_Gravel_Small.bin new file mode 100644 index 0000000..cc5a42a Binary files /dev/null and b/assets/models/MeCo_Gravel_Small.bin differ diff --git a/assets/models/MeCo_Gravel_Small.gltf b/assets/models/MeCo_Gravel_Small.gltf new file mode 100644 index 0000000..1c52c79 --- /dev/null +++ b/assets/models/MeCo_Gravel_Small.gltf @@ -0,0 +1,487 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "created_collider":{}, + "max_samples":150, + "uuid":"e1bf76d0-8642-457f-a6f6-891b504d4e51", + "assets reported":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MapChannel:2":"UVChannel_2", + "MapChannel:3":"UVMap", + "MapChannel:4":"UVMap.001", + "MapChannel:5":"Lightmap", + "MaxHandle":23 + }, + "mesh":0, + "name":"MeCo_Gravel_Small.001", + "scale":[ + 0.01274688821285963, + 0.01274688821285963, + 0.01274688821285963 + ], + "translation":[ + -0.0018983802292495966, + 0.18972119688987732, + 0.0633317306637764 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"MeCo_Gravel_Small_bcol" + }, + "mesh":1, + "name":"MeCo_Gravel_Small_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Memphis_Courtyard_Props" + }, + "name":"MeCo_Gravel_Small" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.010273154824972153, + 0.1539786159992218, + 0.4407196342945099, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"MeCo_Small_Display", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.013", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3, + "TEXCOORD_2":4, + "TEXCOORD_3":5, + "TEXCOORD_4":6 + }, + "indices":7, + "material":0 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10, + "TEXCOORD_1":11, + "TEXCOORD_2":12, + "TEXCOORD_3":13, + "TEXCOORD_4":14 + }, + "indices":15, + "material":1 + } + ] + }, + { + "name":"Cube.003", + "primitives":[ + { + "attributes":{ + "POSITION":16, + "NORMAL":17, + "TEXCOORD_0":18 + }, + "indices":19 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"block_folly_Norm", + "uri":"block_folly_Norm.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_AO", + "uri":"block_folly_AO.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_Rough", + "uri":"block_folly_Rough.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":592, + "max":[ + 94.99066925048828, + 6.350497245788574, + 146.1512908935547 + ], + "min":[ + -94.90697479248047, + -11.669644355773926, + -123.5797348022461 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":592, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":592, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":592, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5126, + "count":592, + "type":"VEC2" + }, + { + "bufferView":5, + "componentType":5126, + "count":592, + "type":"VEC2" + }, + { + "bufferView":6, + "componentType":5126, + "count":592, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":1194, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":62472, + "max":[ + 86.66700744628906, + 3.7514610290527344, + 140.36000061035156 + ], + "min":[ + -86.4666748046875, + -0.7623022198677063, + -121.5442123413086 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":62472, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":62472, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5126, + "count":62472, + "type":"VEC2" + }, + { + "bufferView":12, + "componentType":5126, + "count":62472, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5126, + "count":62472, + "type":"VEC2" + }, + { + "bufferView":14, + "componentType":5126, + "count":62472, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":128745, + "type":"SCALAR" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "max":[ + 1.208937168121338, + 0.2706712484359741, + 1.9263060092926025 + ], + "min":[ + -1.2116670608520508, + 0.040968723595142365, + -1.511925458908081 + ], + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":7104, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":7104, + "byteOffset":7104, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":14208, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":18944, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":23680, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":28416, + "target":34962 + }, + { + "buffer":0, + "byteLength":4736, + "byteOffset":33152, + "target":34962 + }, + { + "buffer":0, + "byteLength":2388, + "byteOffset":37888, + "target":34963 + }, + { + "buffer":0, + "byteLength":749664, + "byteOffset":40276, + "target":34962 + }, + { + "buffer":0, + "byteLength":749664, + "byteOffset":789940, + "target":34962 + }, + { + "buffer":0, + "byteLength":499776, + "byteOffset":1539604, + "target":34962 + }, + { + "buffer":0, + "byteLength":499776, + "byteOffset":2039380, + "target":34962 + }, + { + "buffer":0, + "byteLength":499776, + "byteOffset":2539156, + "target":34962 + }, + { + "buffer":0, + "byteLength":499776, + "byteOffset":3038932, + "target":34962 + }, + { + "buffer":0, + "byteLength":499776, + "byteOffset":3538708, + "target":34962 + }, + { + "buffer":0, + "byteLength":257490, + "byteOffset":4038484, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4295976, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4296264, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4296552, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":4296744, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":4296816, + "uri":"MeCo_Gravel_Small.bin" + } + ] +} diff --git a/assets/models/MeCo_Medium_Display.bin b/assets/models/MeCo_Medium_Display.bin new file mode 100644 index 0000000..3f49ad3 Binary files /dev/null and b/assets/models/MeCo_Medium_Display.bin differ diff --git a/assets/models/MeCo_Medium_Display.gltf b/assets/models/MeCo_Medium_Display.gltf new file mode 100644 index 0000000..2baf4db --- /dev/null +++ b/assets/models/MeCo_Medium_Display.gltf @@ -0,0 +1,487 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "created_collider":{}, + "max_samples":150, + "uuid":"e1bf76d0-8642-457f-a6f6-891b504d4e51", + "assets reported":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MapChannel:2":"UVChannel_2", + "MapChannel:3":"UVMap", + "MapChannel:4":"UVMap.001", + "MapChannel:5":"Lightmap", + "MaxHandle":18 + }, + "mesh":0, + "name":"MeCo_Medium_Display.001", + "scale":[ + 0.01274688821285963, + 0.01274688821285963, + 0.01274688821285963 + ], + "translation":[ + -0.001214562333188951, + 0.6001636981964111, + 0.0006026938208378851 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"MeCo_Medium_Display_bcol" + }, + "mesh":1, + "name":"MeCo_Medium_Display_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Memphis_Courtyard_Props" + }, + "name":"MeCo_Medium_Display" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.010273154824972153, + 0.1539786159992218, + 0.4407196342945099, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"MeCo_Small_Display", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.008", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3, + "TEXCOORD_2":4, + "TEXCOORD_3":5, + "TEXCOORD_4":6 + }, + "indices":7, + "material":0 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10, + "TEXCOORD_1":11, + "TEXCOORD_2":12, + "TEXCOORD_3":13, + "TEXCOORD_4":14 + }, + "indices":15, + "material":1 + } + ] + }, + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":16, + "NORMAL":17, + "TEXCOORD_0":18 + }, + "indices":19 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"block_folly_Norm", + "uri":"block_folly_Norm.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_AO", + "uri":"block_folly_AO.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_Rough", + "uri":"block_folly_Rough.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":512, + "max":[ + 79.8823013305664, + -19.382753372192383, + 79.7396469116211 + ], + "min":[ + -79.69136810302734, + -31.007280349731445, + -79.83402252197266 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":512, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":5, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":6, + "componentType":5126, + "count":512, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":1200, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":228, + "max":[ + 71.38534545898438, + 40.37712097167969, + 71.2426528930664 + ], + "min":[ + -71.19435119628906, + -21.688180923461914, + -71.33707427978516 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":228, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":12, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":14, + "componentType":5126, + "count":228, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":630, + "type":"SCALAR" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "max":[ + 1.0170361995697021, + 1.1148463487625122, + 1.0170350074768066 + ], + "min":[ + -1.0170314311981201, + 0.20491734147071838, + -1.0170326232910156 + ], + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":6144, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":6144, + "byteOffset":6144, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":12288, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":16384, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":20480, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":24576, + "target":34962 + }, + { + "buffer":0, + "byteLength":4096, + "byteOffset":28672, + "target":34962 + }, + { + "buffer":0, + "byteLength":2400, + "byteOffset":32768, + "target":34963 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":35168, + "target":34962 + }, + { + "buffer":0, + "byteLength":2736, + "byteOffset":37904, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":40640, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":42464, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":44288, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":46112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1824, + "byteOffset":47936, + "target":34962 + }, + { + "buffer":0, + "byteLength":1260, + "byteOffset":49760, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51020, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":51308, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":51596, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":51788, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":51860, + "uri":"MeCo_Medium_Display.bin" + } + ] +} diff --git a/assets/models/MeCo_Small_Display.bin b/assets/models/MeCo_Small_Display.bin new file mode 100644 index 0000000..9ad6944 Binary files /dev/null and b/assets/models/MeCo_Small_Display.bin differ diff --git a/assets/models/MeCo_Small_Display.gltf b/assets/models/MeCo_Small_Display.gltf new file mode 100644 index 0000000..95cb3a8 --- /dev/null +++ b/assets/models/MeCo_Small_Display.gltf @@ -0,0 +1,342 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "created_collider":{}, + "max_samples":150, + "uuid":"e1bf76d0-8642-457f-a6f6-891b504d4e51", + "assets reported":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MapChannel:2":"UVChannel_2", + "MapChannel:3":"UVMap", + "MapChannel:4":"UVMap.001", + "MapChannel:5":"Lightmap", + "MaxHandle":17 + }, + "mesh":0, + "name":"MeCo_Small_Display.001", + "scale":[ + 0.01274688821285963, + 0.01274688821285963, + 0.01274688821285963 + ], + "translation":[ + 0, + 0.6701009273529053, + 0 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"MeCo_Small_Display_bcol" + }, + "mesh":1, + "name":"MeCo_Small_Display_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Memphis_Courtyard_Props" + }, + "name":"MeCo_Small_Display" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"MeCo_Small_Display", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.007", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3, + "TEXCOORD_2":4, + "TEXCOORD_3":5, + "TEXCOORD_4":6 + }, + "indices":7, + "material":0 + } + ] + }, + { + "name":"Cube.002", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"block_folly_Norm", + "uri":"block_folly_Norm.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_AO", + "uri":"block_folly_AO.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_Rough", + "uri":"block_folly_Rough.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":182, + "max":[ + 50.57177734375, + 22.714418411254883, + 50.380157470703125 + ], + "min":[ + -50.57177734375, + -39.350894927978516, + -50.380165100097656 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":182, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":182, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":182, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5126, + "count":182, + "type":"VEC2" + }, + { + "bufferView":5, + "componentType":5126, + "count":182, + "type":"VEC2" + }, + { + "bufferView":6, + "componentType":5126, + "count":182, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":510, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "max":[ + 0.6446340084075928, + 0.9596390724182129, + 0.6421897411346436 + ], + "min":[ + -0.6446316242218018, + 0.16849946975708008, + -0.6421908140182495 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2184, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2184, + "byteOffset":2184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1456, + "byteOffset":4368, + "target":34962 + }, + { + "buffer":0, + "byteLength":1456, + "byteOffset":5824, + "target":34962 + }, + { + "buffer":0, + "byteLength":1456, + "byteOffset":7280, + "target":34962 + }, + { + "buffer":0, + "byteLength":1456, + "byteOffset":8736, + "target":34962 + }, + { + "buffer":0, + "byteLength":1456, + "byteOffset":10192, + "target":34962 + }, + { + "buffer":0, + "byteLength":1020, + "byteOffset":11648, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":12956, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":13244, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":13436, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":13508, + "uri":"MeCo_Small_Display.bin" + } + ] +} diff --git a/assets/models/MeCo_large_Display.bin b/assets/models/MeCo_large_Display.bin new file mode 100644 index 0000000..8cf1c84 Binary files /dev/null and b/assets/models/MeCo_large_Display.bin differ diff --git a/assets/models/MeCo_large_Display.gltf b/assets/models/MeCo_large_Display.gltf new file mode 100644 index 0000000..79b64e7 --- /dev/null +++ b/assets/models/MeCo_large_Display.gltf @@ -0,0 +1,487 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "created_collider":{}, + "max_samples":150, + "uuid":"e1bf76d0-8642-457f-a6f6-891b504d4e51", + "assets reported":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MapChannel:2":"UVChannel_2", + "MapChannel:3":"UVMap", + "MapChannel:4":"UVMap.001", + "MapChannel:5":"Lightmap", + "MaxHandle":15 + }, + "mesh":0, + "name":"MeCo_large_Display.001", + "scale":[ + 0.01274688821285963, + 0.01274688821285963, + 0.01274688821285963 + ], + "translation":[ + -0.01723211444914341, + 0.4888056218624115, + 0.01625082455575466 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"MeCo_large_Display_bcol" + }, + "mesh":1, + "name":"MeCo_large_Display_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Memphis_Courtyard_Props" + }, + "name":"MeCo_large_Display" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"MeCo_Small_Display", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.010273154824972153, + 0.1539786159992218, + 0.4407196342945099, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + } + ], + "meshes":[ + { + "name":"Mesh.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3, + "TEXCOORD_2":4, + "TEXCOORD_3":5, + "TEXCOORD_4":6 + }, + "indices":7, + "material":0 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10, + "TEXCOORD_1":11, + "TEXCOORD_2":12, + "TEXCOORD_3":13, + "TEXCOORD_4":14 + }, + "indices":15, + "material":1 + } + ] + }, + { + "name":"Cube", + "primitives":[ + { + "attributes":{ + "POSITION":16, + "NORMAL":17, + "TEXCOORD_0":18 + }, + "indices":19 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"block_folly_Norm", + "uri":"block_folly_Norm.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_AO", + "uri":"block_folly_AO.png" + }, + { + "mimeType":"image/png", + "name":"block_folly_Rough", + "uri":"block_folly_Rough.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":40459, + "max":[ + 131.57569885253906, + 70.70956420898438, + 133.35296630859375 + ], + "min":[ + -130.2746124267578, + -19.198949813842773, + -129.702392578125 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":40459, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":40459, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":40459, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5126, + "count":40459, + "type":"VEC2" + }, + { + "bufferView":5, + "componentType":5126, + "count":40459, + "type":"VEC2" + }, + { + "bufferView":6, + "componentType":5126, + "count":40459, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":111168, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":834, + "max":[ + 140.53036499023438, + 11.659294128417969, + 140.7972869873047 + ], + "min":[ + -142.30380249023438, + -35.03390884399414, + -142.0369110107422 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":834, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":834, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5126, + "count":834, + "type":"VEC2" + }, + { + "bufferView":12, + "componentType":5126, + "count":834, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5126, + "count":834, + "type":"VEC2" + }, + { + "bufferView":14, + "componentType":5126, + "count":834, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":2160, + "type":"SCALAR" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "max":[ + 1.7740929126739502, + 1.3901335000991821, + 1.8109784126281738 + ], + "min":[ + -1.831162691116333, + 0.04223132133483887, + -1.7942781448364258 + ], + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":485508, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":485508, + "byteOffset":485508, + "target":34962 + }, + { + "buffer":0, + "byteLength":323672, + "byteOffset":971016, + "target":34962 + }, + { + "buffer":0, + "byteLength":323672, + "byteOffset":1294688, + "target":34962 + }, + { + "buffer":0, + "byteLength":323672, + "byteOffset":1618360, + "target":34962 + }, + { + "buffer":0, + "byteLength":323672, + "byteOffset":1942032, + "target":34962 + }, + { + "buffer":0, + "byteLength":323672, + "byteOffset":2265704, + "target":34962 + }, + { + "buffer":0, + "byteLength":222336, + "byteOffset":2589376, + "target":34963 + }, + { + "buffer":0, + "byteLength":10008, + "byteOffset":2811712, + "target":34962 + }, + { + "buffer":0, + "byteLength":10008, + "byteOffset":2821720, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":2831728, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":2838400, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":2845072, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":2851744, + "target":34962 + }, + { + "buffer":0, + "byteLength":6672, + "byteOffset":2858416, + "target":34962 + }, + { + "buffer":0, + "byteLength":4320, + "byteOffset":2865088, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2869408, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":2869696, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":2869984, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":2870176, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":2870248, + "uri":"MeCo_large_Display.bin" + } + ] +} diff --git a/assets/models/MoSt_Wall_Shelf.bin b/assets/models/MoSt_Wall_Shelf.bin new file mode 100644 index 0000000..6c58058 Binary files /dev/null and b/assets/models/MoSt_Wall_Shelf.bin differ diff --git a/assets/models/MoSt_Wall_Shelf.gltf b/assets/models/MoSt_Wall_Shelf.gltf new file mode 100644 index 0000000..abb4ff0 --- /dev/null +++ b/assets/models/MoSt_Wall_Shelf.gltf @@ -0,0 +1,641 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{}, + "created_collider":{}, + "sun_pos_properties":{ + "day_of_year":125, + "sun_object":{}, + "object_collection":{}, + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0 + }, + "uuid":"5c18eca1-fb87-425e-a437-da4b45b236c4", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "recast_navmesh":{} + }, + "name":"Scene", + "nodes":[ + 3 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MaxHandle":9 + }, + "mesh":0, + "name":"folly_v4", + "scale":[ + 0.7730273008346558, + 1, + 1 + ], + "translation":[ + 0, + 2.2489233016967773, + 0.12436464428901672 + ] + }, + { + "mesh":1, + "name":"Shelves", + "scale":[ + 0.7730273008346558, + 1, + 1 + ], + "translation":[ + 0.005123647395521402, + 1.1825233697891235, + 0.3466948866844177 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"Shelves_bcol" + }, + "mesh":2, + "name":"Shelves_bcol" + }, + { + "children":[ + 0, + 1, + 2 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Modern_store" + }, + "name":"MoSt_Wall_Shelf" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularColorFactor":[ + 2.0, + 2.0, + 2.0 + ] + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Walls_1.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Walls_2", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8002825975418091, + 0.3425389230251312, + 0.19567757844924927, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Mesh.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Mesh.005", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + }, + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":112, + "max":[ + 5.591133117675781, + 0.5761144161224365, + 0.03000354766845703 + ], + "min":[ + -5.591133117675781, + -2.1671712398529053, + -0.029996871948242188 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":112, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":112, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":312, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":92, + "max":[ + 5.477352142333984, + 1.5125988721847534, + 0.8099048733711243 + ], + "min":[ + -5.4676690101623535, + -1.1007691621780396, + -0.24774187803268433 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":92, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":92, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":216, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "max":[ + 4.239266395568848, + 2.695122241973877, + 1.156599760055542 + ], + "min":[ + -4.22153377532959, + 0.08175420761108398, + 0.0989530086517334 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":1344, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":1344, + "target":34962 + }, + { + "buffer":0, + "byteLength":896, + "byteOffset":2688, + "target":34962 + }, + { + "buffer":0, + "byteLength":624, + "byteOffset":3584, + "target":34963 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":4208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1104, + "byteOffset":5312, + "target":34962 + }, + { + "buffer":0, + "byteLength":736, + "byteOffset":6416, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":7152, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7584, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":7872, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":8160, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":8352, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":8424, + "uri":"MoSt_Wall_Shelf.bin" + } + ] +} diff --git a/assets/models/MoSt_Wood_Table.bin b/assets/models/MoSt_Wood_Table.bin new file mode 100644 index 0000000..091d989 Binary files /dev/null and b/assets/models/MoSt_Wood_Table.bin differ diff --git a/assets/models/MoSt_Wood_Table.gltf b/assets/models/MoSt_Wood_Table.gltf new file mode 100644 index 0000000..900d6ef --- /dev/null +++ b/assets/models/MoSt_Wood_Table.gltf @@ -0,0 +1,672 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "puresky_properties":{}, + "created_collider":{}, + "sun_pos_properties":{ + "day_of_year":125, + "sun_object":{}, + "object_collection":{}, + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0 + }, + "uuid":"5c18eca1-fb87-425e-a437-da4b45b236c4", + "assets reported":{}, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "recast_navmesh":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Qs_TableDisplay_long", + "rotation":[ + 0.7071068286895752, + 0, + 0, + 0.7071068286895752 + ], + "translation":[ + 0.011596162803471088, + 0.9202688932418823, + 0.007032632827758789 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"Qs_TableDisplay_long_bcol" + }, + "mesh":1, + "name":"Qs_TableDisplay_long_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Modern_store" + }, + "name":"MoSt_Wood_Table" + } + ], + "materials":[ + { + "doubleSided":true, + "emissiveFactor":[ + 0.9422319926498719, + 0.9564861292134129, + 1 + ], + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":7.392469048500061 + } + }, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Glow", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ] + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Floors", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Cube", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + }, + { + "name":"Cube.002", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Natural_store_trimsheet_1_Normal_OpenGL", + "uri":"Natural_store_trimsheet_1_Normal_OpenGL.png" + }, + { + "mimeType":"image/png", + "name":"Natural_store_trimsheet_1_Base_color", + "uri":"Natural_store_trimsheet_1_Base_color.png" + }, + { + "mimeType":"image/png", + "name":"Natural_store_trimsheet_ORM", + "uri":"Natural_store_trimsheet_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":44, + "max":[ + 0.9999999403953552, + 3.0009708404541016, + 0.8162917494773865 + ], + "min":[ + -1, + -3.000825881958008, + -0.13032329082489014 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":44, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":44, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":40, + "max":[ + 0.9999999403953552, + 3.0009708404541016, + 0.8162917494773865 + ], + "min":[ + -1, + -3.000825881958008, + -0.13032329082489014 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":40, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":40, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":108, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "max":[ + 1.011596441268921, + 1.0505924224853516, + 3.0080037117004395 + ], + "min":[ + -0.9884042739868164, + 0.10397693514823914, + -2.993793487548828 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":528, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":528, + "target":34962 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":1056, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":1408, + "target":34963 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":1624, + "target":34962 + }, + { + "buffer":0, + "byteLength":480, + "byteOffset":2104, + "target":34962 + }, + { + "buffer":0, + "byteLength":320, + "byteOffset":2584, + "target":34962 + }, + { + "buffer":0, + "byteLength":216, + "byteOffset":2904, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3120, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":3408, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":3696, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":3888, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":3960, + "uri":"MoSt_Wood_Table.bin" + } + ] +} diff --git a/assets/models/Natural_store_trimsheet_1_Base_color.png b/assets/models/Natural_store_trimsheet_1_Base_color.png new file mode 100644 index 0000000..5955dfa Binary files /dev/null and b/assets/models/Natural_store_trimsheet_1_Base_color.png differ diff --git a/assets/models/Natural_store_trimsheet_1_Normal_OpenGL.png b/assets/models/Natural_store_trimsheet_1_Normal_OpenGL.png new file mode 100644 index 0000000..3ce07cf --- /dev/null +++ b/assets/models/Natural_store_trimsheet_1_Normal_OpenGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0380f4df0329b49be58ba4e1c2fc1a5798f75d64970dbe88a2b9ac43dbec12a3 +size 73473501 diff --git a/assets/models/Natural_store_trimsheet_ORM.png b/assets/models/Natural_store_trimsheet_ORM.png new file mode 100644 index 0000000..e226420 Binary files /dev/null and b/assets/models/Natural_store_trimsheet_ORM.png differ diff --git a/assets/models/ReNe_Arch.bin b/assets/models/ReNe_Arch.bin new file mode 100644 index 0000000..7379934 Binary files /dev/null and b/assets/models/ReNe_Arch.bin differ diff --git a/assets/models/ReNe_Arch.gltf b/assets/models/ReNe_Arch.gltf new file mode 100644 index 0000000..41475b6 --- /dev/null +++ b/assets/models/ReNe_Arch.gltf @@ -0,0 +1,735 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "skinify":{ + "connect_mesh":0, + "connect_parents":0, + "generate_all":0, + "thickness":0.800000011920929, + "finger_thickness":0.25, + "apply_mod":1, + "parent_armature":1, + "sub_level":1 + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "recast_navmesh":{}, + "uuid":"5bf082ca-3e0c-4af8-b678-4b6de50f4f55", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"st", + "MaxHandle":2 + }, + "mesh":0, + "name":"ReNe_Arch.001", + "translation":[ + 0.5467472076416016, + 1.475239872932434, + -0.027436256408691406 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ReNe_Arch_bcol" + }, + "mesh":1, + "name":"ReNe_Arch_bcol", + "translation":[ + 0.8373990058898926, + 1.9994151592254639, + -0.01078176498413086 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Retro_Neon_Props" + }, + "name":"ReNe_Arch", + "translation":[ + 4.380256175994873, + 0, + 4.06882905960083 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "true_terrain":{}, + "blenderkit":{}, + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Wall 1", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.9021446704864502, + 1, + 0.8101463317871094, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"shinyMetalRails", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5416000485420227, + 0.18157503008842468, + 0.800774097442627, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Mesh", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":280, + "max":[ + 1.1160215139389038, + 2.5247597694396973, + 2.3431239128112793 + ], + "min":[ + -0.5347186326980591, + -1.4752401113510132, + -2.3098151683807373 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":280, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":280, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":615, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":48, + "max":[ + 0.8793772459030151, + -1.0038195848464966, + 0.04086287319660187 + ], + "min":[ + -0.19273051619529724, + -1.4764093160629272, + -0.023486539721488953 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":48, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":48, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":96, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":54, + "max":[ + -0.44772204756736755, + 1.173579454421997, + 1.6232730150222778 + ], + "min":[ + -0.5347186326980591, + -1.4752401113510132, + -1.6418274641036987 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":54, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":54, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":144, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.8253693580627441, + 2.0005853176116943, + 2.326469898223877 + ], + "min":[ + -0.8253703117370605, + -2.0005850791931152, + -2.326469898223877 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":3360, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":3360, + "target":34962 + }, + { + "buffer":0, + "byteLength":2240, + "byteOffset":6720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1230, + "byteOffset":8960, + "target":34963 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":10192, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":10768, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":11344, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":11728, + "target":34963 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":11920, + "target":34962 + }, + { + "buffer":0, + "byteLength":648, + "byteOffset":12568, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":13216, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13648, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":13936, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":14224, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":14512, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":14704, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":14776, + "uri":"ReNe_Arch.bin" + } + ] +} diff --git a/assets/models/ReNe_Clothing_Wall.bin b/assets/models/ReNe_Clothing_Wall.bin new file mode 100644 index 0000000..86b4c4c Binary files /dev/null and b/assets/models/ReNe_Clothing_Wall.bin differ diff --git a/assets/models/ReNe_Clothing_Wall.gltf b/assets/models/ReNe_Clothing_Wall.gltf new file mode 100644 index 0000000..4bf369e --- /dev/null +++ b/assets/models/ReNe_Clothing_Wall.gltf @@ -0,0 +1,850 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "skinify":{ + "connect_mesh":0, + "connect_parents":0, + "generate_all":0, + "thickness":0.800000011920929, + "finger_thickness":0.25, + "apply_mod":1, + "parent_armature":1, + "sub_level":1 + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "recast_navmesh":{}, + "uuid":"5bf082ca-3e0c-4af8-b678-4b6de50f4f55", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"st", + "MaxHandle":3 + }, + "mesh":0, + "name":"ReNe_Clothing_Wall.001", + "translation":[ + 0.7110896110534668, + 1.654480218887329, + -0.01726245880126953 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ReNe_Clothing_Wall_bcol" + }, + "mesh":1, + "name":"ReNe_Clothing_Wall_bcol", + "translation":[ + 0.8286213874816895, + 1.994870901107788, + -0.004906654357910156 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Retro_Neon_Props" + }, + "name":"ReNe_Clothing_Wall", + "translation":[ + 5.804760456085205, + 0, + -1.8711316585540771 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "true_terrain":{}, + "blenderkit":{}, + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Wall 1", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.9021446704864502, + 1, + 0.8101463317871094, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"shinyMetalRails", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5416000485420227, + 0.18157503008842468, + 0.800774097442627, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":5.199999809265137 + } + }, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"EmissiveMetal_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Mesh.002", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + }, + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15, + "material":3 + } + ] + }, + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":16, + "NORMAL":17, + "TEXCOORD_0":18 + }, + "indices":19 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":445, + "max":[ + 0.8997246623039246, + 2.345519542694092, + 2.11781907081604 + ], + "min":[ + -0.6646616458892822, + -1.6544809341430664, + -2.093106985092163 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":445, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":445, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":1488, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":120, + "max":[ + 0.4748079776763916, + 1.0268406867980957, + 1.8217239379882812 + ], + "min":[ + -0.40305209159851074, + 0.07898467779159546, + -1.9080889225006104 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":120, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":120, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":88, + "max":[ + 0.20028521120548248, + 0.950758695602417, + 1.8782901763916016 + ], + "min":[ + 0.20028378069400787, + -1.6647379398345947, + -1.8535635471343994 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":88, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":88, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":264, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":178, + "max":[ + -0.21539996564388275, + 0.9864675998687744, + 0.7865886092185974 + ], + "min":[ + -0.40305209159851074, + 0.8392490744590759, + -0.8337632417678833 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":178, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":178, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":480, + "type":"SCALAR" + }, + { + "bufferView":16, + "componentType":5126, + "count":24, + "max":[ + 0.7821927070617676, + 2.005129098892212, + 2.1054632663726807 + ], + "min":[ + -0.782193660736084, + -2.005129098892212, + -2.1054632663726807 + ], + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":5340, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":5340, + "byteOffset":5340, + "target":34962 + }, + { + "buffer":0, + "byteLength":3560, + "byteOffset":10680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2976, + "byteOffset":14240, + "target":34963 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":17216, + "target":34962 + }, + { + "buffer":0, + "byteLength":1440, + "byteOffset":18656, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":20096, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":21056, + "target":34963 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":21632, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":22688, + "target":34962 + }, + { + "buffer":0, + "byteLength":704, + "byteOffset":23744, + "target":34962 + }, + { + "buffer":0, + "byteLength":528, + "byteOffset":24448, + "target":34963 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":24976, + "target":34962 + }, + { + "buffer":0, + "byteLength":2136, + "byteOffset":27112, + "target":34962 + }, + { + "buffer":0, + "byteLength":1424, + "byteOffset":29248, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":30672, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31632, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":31920, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":32208, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":32400, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":32472, + "uri":"ReNe_Clothing_Wall.bin" + } + ] +} diff --git a/assets/models/ReNe_Rectangle_Island.bin b/assets/models/ReNe_Rectangle_Island.bin new file mode 100644 index 0000000..a322f72 Binary files /dev/null and b/assets/models/ReNe_Rectangle_Island.bin differ diff --git a/assets/models/ReNe_Rectangle_Island.gltf b/assets/models/ReNe_Rectangle_Island.gltf new file mode 100644 index 0000000..8eb225f --- /dev/null +++ b/assets/models/ReNe_Rectangle_Island.gltf @@ -0,0 +1,713 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "skinify":{ + "connect_mesh":0, + "connect_parents":0, + "generate_all":0, + "thickness":0.800000011920929, + "finger_thickness":0.25, + "apply_mod":1, + "parent_armature":1, + "sub_level":1 + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "recast_navmesh":{}, + "uuid":"5bf082ca-3e0c-4af8-b678-4b6de50f4f55", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"ReNe_Rectangle_Island.001", + "translation":[ + 0.05594038963317871, + 0.7103153467178345, + 0.22051167488098145 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ReNe_Rectangle_Island_bcol" + }, + "mesh":1, + "name":"ReNe_Rectangle_Island_bcol", + "translation":[ + 0.055939674377441406, + 0.4788203537464142, + -0.044397830963134766 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Retro_Neon_Props" + }, + "name":"ReNe_Rectangle_Island", + "translation":[ + 0, + 0, + 2.9768004417419434 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"shinnyWall_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.06281405687332153 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"shinyMetalRails", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5416000485420227, + 0.18157503008842468, + 0.800774097442627, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Rectangle_Island_GEO.005", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.002", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":134, + "max":[ + 0.4999989867210388, + 0.21732506155967712, + 0.7351216077804565 + ], + "min":[ + -0.5000010132789612, + -0.6803150773048401, + -1.2649394273757935 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":134, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":134, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":258, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":36, + "max":[ + 0.20935837924480438, + 0.1985945701599121, + 0.23962202668190002 + ], + "min":[ + -0.20936043560504913, + 0.02742081880569458, + 0.22090330719947815 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":36, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":36, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":96, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":96, + "max":[ + 0.4999989867210388, + 0.21732506155967712, + 0.7351216077804565 + ], + "min":[ + -0.5000010132789612, + -0.6803150773048401, + -1.2649394273757935 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":96, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":96, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":216, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.4999997615814209, + 0.4488200843334198, + 1.0000309944152832 + ], + "min":[ + -0.5000002384185791, + -0.4488200843334198, + -1.0000300407409668 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":1608, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":1608, + "target":34962 + }, + { + "buffer":0, + "byteLength":1072, + "byteOffset":3216, + "target":34962 + }, + { + "buffer":0, + "byteLength":516, + "byteOffset":4288, + "target":34963 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":4804, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":5236, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":5668, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":5956, + "target":34963 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":6148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1152, + "byteOffset":7300, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":8452, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":9220, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":9940, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":10228, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":10420, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":10492, + "uri":"ReNe_Rectangle_Island.bin" + } + ] +} diff --git a/assets/models/ReNe_Round_Cube_Table.bin b/assets/models/ReNe_Round_Cube_Table.bin new file mode 100644 index 0000000..0f8ae0c Binary files /dev/null and b/assets/models/ReNe_Round_Cube_Table.bin differ diff --git a/assets/models/ReNe_Round_Cube_Table.gltf b/assets/models/ReNe_Round_Cube_Table.gltf new file mode 100644 index 0000000..a3e7fa2 --- /dev/null +++ b/assets/models/ReNe_Round_Cube_Table.gltf @@ -0,0 +1,611 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "skinify":{ + "connect_mesh":0, + "connect_parents":0, + "generate_all":0, + "thickness":0.800000011920929, + "finger_thickness":0.25, + "apply_mod":1, + "parent_armature":1, + "sub_level":1 + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "recast_navmesh":{}, + "uuid":"5bf082ca-3e0c-4af8-b678-4b6de50f4f55", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"ReNe_Round_Cube_Table.001", + "translation":[ + -0.0408635139465332, + 0.5142011046409607, + -0.025632858276367188 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ReNe_Round_Cube_Table_bcol" + }, + "mesh":1, + "name":"ReNe_Round_Cube_Table_bcol", + "translation":[ + -0.040863633155822754, + 0.4153040647506714, + -0.025632858276367188 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Retro_Neon_Props" + }, + "name":"ReNe_Round_Cube_Table", + "translation":[ + 0, + 0, + 5.804760932922363 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"shinnyWall_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.06281405687332153 + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + } + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.5416000485420227, + 0.18157503008842468, + 0.800774097442627, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"roundCubeTable_GEO.009", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + }, + { + "name":"Cube.004", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":2184, + "max":[ + 0.4817996621131897, + 0.32895925641059875, + 0.8969032168388367 + ], + "min":[ + -0.4817996621131897, + -0.5267533659934998, + -0.8969038128852844 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":2184, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":2184, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":10416, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":128, + "max":[ + 0.40192320942878723, + 0.180942565202713, + 0.8193108439445496 + ], + "min":[ + -0.40192320942878723, + -0.08200379461050034, + -0.8193104863166809 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":128, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":128, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":384, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "max":[ + 0.481799840927124, + 0.42785632610321045, + 0.8969035148620605 + ], + "min":[ + -0.4817996025085449, + -0.42785632610321045, + -0.8969035148620605 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":26208, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":26208, + "byteOffset":26208, + "target":34962 + }, + { + "buffer":0, + "byteLength":17472, + "byteOffset":52416, + "target":34962 + }, + { + "buffer":0, + "byteLength":20832, + "byteOffset":69888, + "target":34963 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":90720, + "target":34962 + }, + { + "buffer":0, + "byteLength":1536, + "byteOffset":92256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1024, + "byteOffset":93792, + "target":34962 + }, + { + "buffer":0, + "byteLength":768, + "byteOffset":94816, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95584, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":95872, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":96160, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":96352, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":96424, + "uri":"ReNe_Round_Cube_Table.bin" + } + ] +} diff --git a/assets/models/ReNe_Round_Table.bin b/assets/models/ReNe_Round_Table.bin new file mode 100644 index 0000000..556d3d2 Binary files /dev/null and b/assets/models/ReNe_Round_Table.bin differ diff --git a/assets/models/ReNe_Round_Table.gltf b/assets/models/ReNe_Round_Table.gltf new file mode 100644 index 0000000..d19f79e --- /dev/null +++ b/assets/models/ReNe_Round_Table.gltf @@ -0,0 +1,509 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "skinify":{ + "connect_mesh":0, + "connect_parents":0, + "generate_all":0, + "thickness":0.800000011920929, + "finger_thickness":0.25, + "apply_mod":1, + "parent_armature":1, + "sub_level":1 + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "recast_navmesh":{}, + "uuid":"5bf082ca-3e0c-4af8-b678-4b6de50f4f55", + "assets reported":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"ReNe_Round_Table.001", + "translation":[ + 0.02292490005493164, + 0.4759717881679535, + -0.0020122528076171875 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"ReNe_Round_Table_bcol" + }, + "mesh":1, + "name":"ReNe_Round_Table_bcol", + "translation":[ + 0.02292466163635254, + 0.3413745164871216, + 0.0009670257568359375 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Retro_Neon_Props" + }, + "name":"ReNe_Round_Table", + "translation":[ + 0, + 0, + -2.1596927642822266 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{} + } + }, + "name":"shinnyWall_MAT", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.06281405687332153 + } + } + ], + "meshes":[ + { + "name":"roundFlippedTable_GEO.011", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.003", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":795, + "max":[ + 0.4976155757904053, + 0.20319435000419617, + 1.5643482208251953 + ], + "min":[ + -0.4976157546043396, + -0.4723888635635376, + -1.5583897829055786 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":795, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":795, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":3696, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 0.4976158142089844, + 0.3377916216850281, + 1.5613689422607422 + ], + "min":[ + -0.4976155757904053, + -0.3377916216850281, + -1.5613689422607422 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":9540, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":9540, + "byteOffset":9540, + "target":34962 + }, + { + "buffer":0, + "byteLength":6360, + "byteOffset":19080, + "target":34962 + }, + { + "buffer":0, + "byteLength":7392, + "byteOffset":25440, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":32832, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":33120, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":33408, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":33600, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":33672, + "uri":"ReNe_Round_Table.bin" + } + ] +} diff --git a/assets/models/UpLu_Checkout_Counter.bin b/assets/models/UpLu_Checkout_Counter.bin new file mode 100644 index 0000000..33f4651 Binary files /dev/null and b/assets/models/UpLu_Checkout_Counter.bin differ diff --git a/assets/models/UpLu_Checkout_Counter.gltf b/assets/models/UpLu_Checkout_Counter.gltf new file mode 100644 index 0000000..96eb7ab --- /dev/null +++ b/assets/models/UpLu_Checkout_Counter.gltf @@ -0,0 +1,765 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":231 + }, + "mesh":0, + "name":"UpLu_Checkout_Counter.001", + "scale":[ + 0.03425418585538864, + 0.03203902766108513, + 0.03203902766108513 + ], + "translation":[ + 0.0028023719787597656, + 0.484380841255188, + -0.04922135919332504 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Checkout_Counter_bcol" + }, + "mesh":1, + "name":"UpLu_Checkout_Counter_bcol", + "translation":[ + 0.379317969083786, + 0, + 0 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Checkout_Counter" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Aurelia_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":3 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":4 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":5 + } + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":6 + }, + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":4.199999809265137 + } + }, + "name":"Uplu_Light", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":7 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Mesh.027", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.017", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":3 + }, + { + "sampler":0, + "source":4 + }, + { + "sampler":0, + "source":5 + }, + { + "sampler":0, + "source":4 + }, + { + "sampler":0, + "source":4 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Norm", + "uri":"UpLu_Norm.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_base_color", + "uri":"Aurelia_Atlas_01_base_color.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_Roughness", + "uri":"Aurelia_Atlas_01_Roughness.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":5628, + "max":[ + 55.99235534667969, + 15.34277057647705, + 18.069578170776367 + ], + "min":[ + -56.93293380737305, + -13.709095001220703, + -18.113435745239258 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":5628, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":5628, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":15156, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":712, + "max":[ + 51.03978729248047, + -13.373873710632324, + 11.360221862792969 + ], + "min":[ + -52.08321762084961, + -19.55512809753418, + -11.067913055419922 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":712, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":712, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":2448, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":408, + "max":[ + 50.166290283203125, + -15.848461151123047, + 10.493213653564453 + ], + "min":[ + -51.209720611572266, + -17.23587417602539, + -10.200905799865723 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":408, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":408, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":1224, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 1.541456937789917, + 0.9759483337402344, + 0.5297103524208069 + ], + "min":[ + -2.326706886291504, + -0.14214646816253662, + -0.629558265209198 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":67536, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":67536, + "byteOffset":67536, + "target":34962 + }, + { + "buffer":0, + "byteLength":45024, + "byteOffset":135072, + "target":34962 + }, + { + "buffer":0, + "byteLength":30312, + "byteOffset":180096, + "target":34963 + }, + { + "buffer":0, + "byteLength":8544, + "byteOffset":210408, + "target":34962 + }, + { + "buffer":0, + "byteLength":8544, + "byteOffset":218952, + "target":34962 + }, + { + "buffer":0, + "byteLength":5696, + "byteOffset":227496, + "target":34962 + }, + { + "buffer":0, + "byteLength":4896, + "byteOffset":233192, + "target":34963 + }, + { + "buffer":0, + "byteLength":4896, + "byteOffset":238088, + "target":34962 + }, + { + "buffer":0, + "byteLength":4896, + "byteOffset":242984, + "target":34962 + }, + { + "buffer":0, + "byteLength":3264, + "byteOffset":247880, + "target":34962 + }, + { + "buffer":0, + "byteLength":2448, + "byteOffset":251144, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":253592, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":253880, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":254168, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":254360, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":254432, + "uri":"UpLu_Checkout_Counter.bin" + } + ] +} diff --git a/assets/models/UpLu_Diff-1.png b/assets/models/UpLu_Diff-1.png new file mode 100644 index 0000000..145533f Binary files /dev/null and b/assets/models/UpLu_Diff-1.png differ diff --git a/assets/models/UpLu_Diff.png b/assets/models/UpLu_Diff.png new file mode 100644 index 0000000..1f7fc55 Binary files /dev/null and b/assets/models/UpLu_Diff.png differ diff --git a/assets/models/UpLu_Glass_Wall_Shelf.bin b/assets/models/UpLu_Glass_Wall_Shelf.bin new file mode 100644 index 0000000..f844dd1 Binary files /dev/null and b/assets/models/UpLu_Glass_Wall_Shelf.bin differ diff --git a/assets/models/UpLu_Glass_Wall_Shelf.gltf b/assets/models/UpLu_Glass_Wall_Shelf.gltf new file mode 100644 index 0000000..dad9fa2 --- /dev/null +++ b/assets/models/UpLu_Glass_Wall_Shelf.gltf @@ -0,0 +1,635 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":268 + }, + "mesh":0, + "name":"UpLu_Glass_Wall_Shelf.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0.00015389367763418704, + 0.02263893187046051, + -0.020465189591050148 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Glass_Wall_Shelf_bcol" + }, + "mesh":1, + "name":"UpLu_Glass_Wall_Shelf_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Glass_Wall_Shelf" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.03525371104478836, + 0.03498556464910507, + 0.034188784658908844, + 1 + ], + "metallicFactor":0.145454540848732, + "roughnessFactor":0.2954545319080353 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Material", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8000229597091675, + 0.2857304811477661, + 0.18876983225345612, + 0.30000001192092896 + ], + "metallicFactor":0.6165803074836731, + "roughnessFactor":0 + } + } + ], + "meshes":[ + { + "name":"Mesh.029", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + }, + { + "name":"Cube.035", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":130, + "max":[ + 42.037113189697266, + 1.4010953903198242, + 12.768692016601562 + ], + "min":[ + -42.049232482910156, + -3.1836917400360107, + -11.157255172729492 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":130, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":130, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":246, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":50, + "max":[ + 41.63222885131836, + 0.9175462126731873, + 12.768692016601562 + ], + "min":[ + -41.629295349121094, + -0.537712812423706, + -8.45181655883789 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":50, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "max":[ + 1.0678966045379639, + 0.05822676792740822, + 0.3038595914840698 + ], + "min":[ + -1.0678966045379639, + -0.058226849883794785, + -0.3038594722747803 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":1560, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":1560, + "byteOffset":1560, + "target":34962 + }, + { + "buffer":0, + "byteLength":1040, + "byteOffset":3120, + "target":34962 + }, + { + "buffer":0, + "byteLength":492, + "byteOffset":4160, + "target":34963 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":4652, + "target":34962 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":5252, + "target":34962 + }, + { + "buffer":0, + "byteLength":400, + "byteOffset":5852, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":6252, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6396, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":6684, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":6972, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":7164, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":7236, + "uri":"UpLu_Glass_Wall_Shelf.bin" + } + ] +} diff --git a/assets/models/UpLu_Green_Wall_with_Sign.bin b/assets/models/UpLu_Green_Wall_with_Sign.bin new file mode 100644 index 0000000..539378a Binary files /dev/null and b/assets/models/UpLu_Green_Wall_with_Sign.bin differ diff --git a/assets/models/UpLu_Green_Wall_with_Sign.gltf b/assets/models/UpLu_Green_Wall_with_Sign.gltf new file mode 100644 index 0000000..fb32027 --- /dev/null +++ b/assets/models/UpLu_Green_Wall_with_Sign.gltf @@ -0,0 +1,998 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVMap", + "MaxHandle":2 + }, + "mesh":0, + "name":"UpLu_Green_Wall_with_Sign.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + -0.10666567832231522, + 1.7983838319778442, + -0.09037546068429947 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Green_Wall_with_Sign_bcol" + }, + "mesh":1, + "name":"UpLu_Green_Wall_with_Sign_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Green_Wall_with_Sign" + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.03525371104478836, + 0.03498556464910507, + 0.034188784658908844, + 1 + ], + "metallicFactor":0.145454540848732, + "roughnessFactor":0.2954545319080353 + } + }, + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "name":"Black_metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ], + "metallicFactor":0.7666666507720947, + "roughnessFactor":0.36190474033355713 + } + }, + { + "alphaMode":"BLEND", + "emissiveFactor":[ + 1, + 1, + 1 + ], + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":3 + } + }, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Light_mtl", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ] + } + }, + { + "doubleSided":true, + "name":"UpLu_Atlas_Metal", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":3 + }, + "roughnessFactor":0 + } + } + ], + "meshes":[ + { + "name":"Mesh.028", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + }, + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7, + "TEXCOORD_1":8 + }, + "indices":9, + "material":1 + }, + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "TEXCOORD_0":12, + "TEXCOORD_1":13 + }, + "indices":14, + "material":2 + }, + { + "attributes":{ + "POSITION":15, + "NORMAL":16, + "TEXCOORD_0":17, + "TEXCOORD_1":18 + }, + "indices":19, + "material":3 + }, + { + "attributes":{ + "POSITION":20, + "NORMAL":21, + "TEXCOORD_0":22, + "TEXCOORD_1":23 + }, + "indices":24, + "material":4 + } + ] + }, + { + "name":"Cube.015", + "primitives":[ + { + "attributes":{ + "POSITION":25, + "NORMAL":26, + "TEXCOORD_0":27 + }, + "indices":28 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":3 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":68, + "max":[ + 56.341896057128906, + 65.08529663085938, + 13.408294677734375 + ], + "min":[ + -48.00640106201172, + -62.21405792236328, + -6.292145252227783 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":68, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":68, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":68, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":102, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":21379, + "max":[ + 85.76167297363281, + 70.93214416503906, + 24.464569091796875 + ], + "min":[ + -77.36288452148438, + -70.76499938964844, + -11.44329833984375 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":21379, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":21379, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5126, + "count":21379, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5123, + "count":74475, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":16, + "max":[ + 55.52340316772461, + 65.11534118652344, + 13.462692260742188 + ], + "min":[ + -47.330204010009766, + -61.0294075012207, + -2.529679775238037 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":16, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":13, + "componentType":5126, + "count":16, + "type":"VEC2" + }, + { + "bufferView":14, + "componentType":5123, + "count":24, + "type":"SCALAR" + }, + { + "bufferView":15, + "componentType":5126, + "count":205, + "max":[ + 33.233333587646484, + 40.70953369140625, + -1.8837652206420898 + ], + "min":[ + -27.470081329345703, + -19.99388313293457, + -3.5026493072509766 + ], + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":205, + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":205, + "type":"VEC2" + }, + { + "bufferView":18, + "componentType":5126, + "count":205, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5123, + "count":960, + "type":"SCALAR" + }, + { + "bufferView":20, + "componentType":5126, + "count":452, + "max":[ + 36.02556610107422, + 65.2680892944336, + -2.891983985900879 + ], + "min":[ + -30.155197143554688, + -22.62796974182129, + -5.942671298980713 + ], + "type":"VEC3" + }, + { + "bufferView":21, + "componentType":5126, + "count":452, + "type":"VEC3" + }, + { + "bufferView":22, + "componentType":5126, + "count":452, + "type":"VEC2" + }, + { + "bufferView":23, + "componentType":5126, + "count":452, + "type":"VEC2" + }, + { + "bufferView":24, + "componentType":5123, + "count":1176, + "type":"SCALAR" + }, + { + "bufferView":25, + "componentType":5126, + "count":24, + "max":[ + 2.071681022644043, + 3.60006046295166, + 0.5310249924659729 + ], + "min":[ + -2.071682929992676, + 0.0009527206420898438, + -0.38103562593460083 + ], + "type":"VEC3" + }, + { + "bufferView":26, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":27, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":28, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":816, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":816, + "byteOffset":816, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":1632, + "target":34962 + }, + { + "buffer":0, + "byteLength":544, + "byteOffset":2176, + "target":34962 + }, + { + "buffer":0, + "byteLength":204, + "byteOffset":2720, + "target":34963 + }, + { + "buffer":0, + "byteLength":256548, + "byteOffset":2924, + "target":34962 + }, + { + "buffer":0, + "byteLength":256548, + "byteOffset":259472, + "target":34962 + }, + { + "buffer":0, + "byteLength":171032, + "byteOffset":516020, + "target":34962 + }, + { + "buffer":0, + "byteLength":171032, + "byteOffset":687052, + "target":34962 + }, + { + "buffer":0, + "byteLength":148950, + "byteOffset":858084, + "target":34963 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1007036, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1007228, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":1007420, + "target":34962 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":1007548, + "target":34962 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":1007676, + "target":34963 + }, + { + "buffer":0, + "byteLength":2460, + "byteOffset":1007724, + "target":34962 + }, + { + "buffer":0, + "byteLength":2460, + "byteOffset":1010184, + "target":34962 + }, + { + "buffer":0, + "byteLength":1640, + "byteOffset":1012644, + "target":34962 + }, + { + "buffer":0, + "byteLength":1640, + "byteOffset":1014284, + "target":34962 + }, + { + "buffer":0, + "byteLength":1920, + "byteOffset":1015924, + "target":34963 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":1017844, + "target":34962 + }, + { + "buffer":0, + "byteLength":5424, + "byteOffset":1023268, + "target":34962 + }, + { + "buffer":0, + "byteLength":3616, + "byteOffset":1028692, + "target":34962 + }, + { + "buffer":0, + "byteLength":3616, + "byteOffset":1032308, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":1035924, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1038276, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":1038564, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":1038852, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":1039044, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":1039116, + "uri":"UpLu_Green_Wall_with_Sign.bin" + } + ] +} diff --git a/assets/models/UpLu_Light_01.bin b/assets/models/UpLu_Light_01.bin new file mode 100644 index 0000000..0e2e278 Binary files /dev/null and b/assets/models/UpLu_Light_01.bin differ diff --git a/assets/models/UpLu_Light_01.gltf b/assets/models/UpLu_Light_01.gltf new file mode 100644 index 0000000..a386a8e --- /dev/null +++ b/assets/models/UpLu_Light_01.gltf @@ -0,0 +1,708 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MaxHandle":4 + }, + "mesh":0, + "name":"UpLu_Light_01.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + -0.05803241953253746, + -1.3296451568603516, + 0.017954308539628983 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Light_01.001_bcol" + }, + "mesh":1, + "name":"UpLu_Light_01.001_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Light_01" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Black_metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ], + "metallicFactor":0.7666666507720947, + "roughnessFactor":0.36190474033355713 + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":0 + }, + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":4.199999809265137 + } + }, + "name":"Uplu_Light", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"UpLu_Atlas_Metal", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "roughnessFactor":0 + } + } + ], + "meshes":[ + { + "name":"Mesh.032", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.006", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":312, + "max":[ + 21.158584594726562, + 57.93032455444336, + 13.774127006530762 + ], + "min":[ + -21.257301330566406, + 32.91783142089844, + -15.764569282531738 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":312, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":312, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":636, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":200, + "max":[ + 2.9350438117980957, + -25.80093765258789, + 13.906939506530762 + ], + "min":[ + -19.704132080078125, + -77.80648803710938, + -15.0933198928833 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":200, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":200, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":900, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":1710, + "max":[ + 25.8267822265625, + 34.69321060180664, + 14.365694999694824 + ], + "min":[ + -20.295166015625, + -84.83709716796875, + -15.77941608428955 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":1710, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":1710, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":4206, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.5979678630828857, + 0.1417851448059082, + 0.3828430473804474 + ], + "min":[ + -0.5979678630828857, + -3.4845073223114014, + -0.38284292817115784 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":3744, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":3744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":7488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":9984, + "target":34963 + }, + { + "buffer":0, + "byteLength":2400, + "byteOffset":11256, + "target":34962 + }, + { + "buffer":0, + "byteLength":2400, + "byteOffset":13656, + "target":34962 + }, + { + "buffer":0, + "byteLength":1600, + "byteOffset":16056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":17656, + "target":34963 + }, + { + "buffer":0, + "byteLength":20520, + "byteOffset":19456, + "target":34962 + }, + { + "buffer":0, + "byteLength":20520, + "byteOffset":39976, + "target":34962 + }, + { + "buffer":0, + "byteLength":13680, + "byteOffset":60496, + "target":34962 + }, + { + "buffer":0, + "byteLength":8412, + "byteOffset":74176, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82588, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":82876, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83164, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":83356, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":83428, + "uri":"UpLu_Light_01.bin" + } + ] +} diff --git a/assets/models/UpLu_Light_02.bin b/assets/models/UpLu_Light_02.bin new file mode 100644 index 0000000..4c563f0 Binary files /dev/null and b/assets/models/UpLu_Light_02.bin differ diff --git a/assets/models/UpLu_Light_02.gltf b/assets/models/UpLu_Light_02.gltf new file mode 100644 index 0000000..bd95fb6 --- /dev/null +++ b/assets/models/UpLu_Light_02.gltf @@ -0,0 +1,708 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MaxHandle":5 + }, + "mesh":0, + "name":"UpLu_Light_02.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + -0.0013804796617478132, + -1.1566311120986938, + -0.014629904180765152 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Light_02_bcol" + }, + "mesh":1, + "name":"UpLu_Light_02_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Light_02" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Black_metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ], + "metallicFactor":0.7666666507720947, + "roughnessFactor":0.36190474033355713 + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":0 + }, + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":4.199999809265137 + } + }, + "name":"Uplu_Light", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"UpLu_Atlas_Metal", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "roughnessFactor":0 + } + } + ], + "meshes":[ + { + "name":"Mesh.033", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.009", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":312, + "max":[ + 16.21209144592285, + 51.49810028076172, + 5.8101420402526855 + ], + "min":[ + -16.103395462036133, + 26.500789642333984, + -5.925316333770752 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":312, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":312, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":636, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":100, + "max":[ + 6.767636775970459, + -21.311527252197266, + 6.2866129875183105 + ], + "min":[ + -5.178404331207275, + -53.5580940246582, + -5.1826863288879395 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":100, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":100, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":450, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":1062, + "max":[ + 14.962697982788086, + 28.211994171142578, + 7.593848705291748 + ], + "min":[ + -15.364274978637695, + -55.292816162109375, + -6.4418721199035645 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":1062, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":1062, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":2742, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.4104066491127014, + 0.15142059326171875, + 0.17825385928153992 + ], + "min":[ + -0.4104067087173462, + -2.561068534851074, + -0.1782534420490265 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":3744, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":3744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":7488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":9984, + "target":34963 + }, + { + "buffer":0, + "byteLength":1200, + "byteOffset":11256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1200, + "byteOffset":12456, + "target":34962 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":13656, + "target":34962 + }, + { + "buffer":0, + "byteLength":900, + "byteOffset":14456, + "target":34963 + }, + { + "buffer":0, + "byteLength":12744, + "byteOffset":15356, + "target":34962 + }, + { + "buffer":0, + "byteLength":12744, + "byteOffset":28100, + "target":34962 + }, + { + "buffer":0, + "byteLength":8496, + "byteOffset":40844, + "target":34962 + }, + { + "buffer":0, + "byteLength":5484, + "byteOffset":49340, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":54824, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":55112, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":55400, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":55592, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":55664, + "uri":"UpLu_Light_02.bin" + } + ] +} diff --git a/assets/models/UpLu_Light_03.bin b/assets/models/UpLu_Light_03.bin new file mode 100644 index 0000000..e8571c9 Binary files /dev/null and b/assets/models/UpLu_Light_03.bin differ diff --git a/assets/models/UpLu_Light_03.gltf b/assets/models/UpLu_Light_03.gltf new file mode 100644 index 0000000..1088ac0 --- /dev/null +++ b/assets/models/UpLu_Light_03.gltf @@ -0,0 +1,713 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MaxHandle":6 + }, + "mesh":0, + "name":"UpLu_Light_03.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + -0.041360922157764435, + -1.1806002855300903, + 0.031999602913856506 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Light_03_bcol" + }, + "mesh":1, + "name":"UpLu_Light_03_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Light_03" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Black_metal", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ], + "metallicFactor":0.7666666507720947, + "roughnessFactor":0.36190474033355713 + } + }, + { + "doubleSided":true, + "emissiveFactor":[ + 1, + 1, + 1 + ], + "emissiveTexture":{ + "index":0 + }, + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":4.199999809265137 + } + }, + "name":"Uplu_Light", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"UpLu_Atlas_Metal", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "roughnessFactor":0 + } + } + ], + "meshes":[ + { + "name":"Mesh.034", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.011", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":312, + "max":[ + 18.194141387939453, + 54.138553619384766, + 9.498092651367188 + ], + "min":[ + -14.908818244934082, + 29.141239166259766, + -9.610496520996094 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":312, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":312, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":636, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":150, + "max":[ + 17.133804321289062, + -9.258461952209473, + 5.448883056640625 + ], + "min":[ + -9.748196601867676, + -47.37077713012695, + -2.620270013809204 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":150, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":150, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":675, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":1494, + "max":[ + 18.624645233154297, + 30.685260772705078, + 12.774429321289062 + ], + "min":[ + -15.367878913879395, + -71.58251953125, + -15.294078826904297 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":1494, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":1494, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":3675, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.4317050576210022, + 0.1945188045501709, + 0.35647010803222656 + ], + "min":[ + -0.4317050576210022, + -2.998796224594116, + -0.356469988822937 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":3744, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":3744, + "byteOffset":3744, + "target":34962 + }, + { + "buffer":0, + "byteLength":2496, + "byteOffset":7488, + "target":34962 + }, + { + "buffer":0, + "byteLength":1272, + "byteOffset":9984, + "target":34963 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":11256, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":13056, + "target":34962 + }, + { + "buffer":0, + "byteLength":1200, + "byteOffset":14856, + "target":34962 + }, + { + "buffer":0, + "byteLength":1350, + "byteOffset":16056, + "target":34963 + }, + { + "buffer":0, + "byteLength":17928, + "byteOffset":17408, + "target":34962 + }, + { + "buffer":0, + "byteLength":17928, + "byteOffset":35336, + "target":34962 + }, + { + "buffer":0, + "byteLength":11952, + "byteOffset":53264, + "target":34962 + }, + { + "buffer":0, + "byteLength":7350, + "byteOffset":65216, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72568, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":72856, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":73144, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":73336, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":73408, + "uri":"UpLu_Light_03.bin" + } + ] +} diff --git a/assets/models/UpLu_Marble_Planter.bin b/assets/models/UpLu_Marble_Planter.bin new file mode 100644 index 0000000..6d73246 Binary files /dev/null and b/assets/models/UpLu_Marble_Planter.bin differ diff --git a/assets/models/UpLu_Marble_Planter.gltf b/assets/models/UpLu_Marble_Planter.gltf new file mode 100644 index 0000000..a255bdd --- /dev/null +++ b/assets/models/UpLu_Marble_Planter.gltf @@ -0,0 +1,681 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 3 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":525 + }, + "mesh":0, + "name":"UpLu_Marble_Planter.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0.006207460071891546, + 0.9357321858406067, + -0.01567751355469227 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Marble_Planter_bcol" + }, + "mesh":1, + "name":"UpLu_Marble_Planter_bcol" + }, + { + "extras":{ + "MaxHandle":1514 + }, + "mesh":2, + "name":"UpLu_Wall_Foliage.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + -0.00015570223331451416, + 1.6809290647506714, + -0.17716938257217407 + ] + }, + { + "children":[ + 0, + 1, + 2 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Marble_Planter" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Aurelia_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":3 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":4 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":5 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.064", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.016", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + }, + { + "name":"Mesh.018", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":1 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":3 + }, + { + "sampler":0, + "source":4 + }, + { + "sampler":0, + "source":5 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Norm", + "uri":"UpLu_Norm.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_base_color", + "uri":"Aurelia_Atlas_01_base_color.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_Roughness", + "uri":"Aurelia_Atlas_01_Roughness.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":126, + "max":[ + 13.90351390838623, + 35.336944580078125, + 6.195801258087158 + ], + "min":[ + -13.897788047790527, + -36.876678466796875, + -6.195801258087158 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":126, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":126, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":192, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 0.47891727089881897, + 2.8351082801818848, + 0.19498643279075623 + ], + "min":[ + -0.46635690331459045, + -0.0009355545043945312, + -0.22634151577949524 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":9802, + "max":[ + 23.330249786376953, + 53.26215362548828, + 10.556709289550781 + ], + "min":[ + -23.330257415771484, + -53.262149810791016, + -11.01824951171875 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":9802, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":9802, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":23310, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":1512, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":1512, + "byteOffset":1512, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":3024, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":4032, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4416, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":4704, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":4992, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":5184, + "target":34963 + }, + { + "buffer":0, + "byteLength":117624, + "byteOffset":5256, + "target":34962 + }, + { + "buffer":0, + "byteLength":117624, + "byteOffset":122880, + "target":34962 + }, + { + "buffer":0, + "byteLength":78416, + "byteOffset":240504, + "target":34962 + }, + { + "buffer":0, + "byteLength":46620, + "byteOffset":318920, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":365540, + "uri":"UpLu_Marble_Planter.bin" + } + ] +} diff --git a/assets/models/UpLu_Norm.png b/assets/models/UpLu_Norm.png new file mode 100644 index 0000000..502c70d Binary files /dev/null and b/assets/models/UpLu_Norm.png differ diff --git a/assets/models/UpLu_Potted_Fern.bin b/assets/models/UpLu_Potted_Fern.bin new file mode 100644 index 0000000..0d4443b Binary files /dev/null and b/assets/models/UpLu_Potted_Fern.bin differ diff --git a/assets/models/UpLu_Potted_Fern.gltf b/assets/models/UpLu_Potted_Fern.gltf new file mode 100644 index 0000000..56f5fa8 --- /dev/null +++ b/assets/models/UpLu_Potted_Fern.gltf @@ -0,0 +1,568 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MapChannel:1":"UVChannel_1", + "MapChannel:2":"UVMap", + "MaxHandle":3 + }, + "mesh":0, + "name":"UpLu_Potted_Fern.001", + "scale":[ + 0.0010483341757208109, + 0.0011403330136090517, + 0.0010483341757208109 + ], + "translation":[ + 0.0198373980820179, + 1.1864757537841797, + 0.03414636477828026 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Potted_Fern_bcol" + }, + "mesh":1, + "name":"UpLu_Potted_Fern_bcol", + "scale":[ + 0.4175509214401245, + 0.839804470539093, + 0.4175509214401245 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Potted_Fern" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.040", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "TEXCOORD_1":3 + }, + "indices":4, + "material":0 + } + ] + }, + { + "name":"Cube.010", + "primitives":[ + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "TEXCOORD_0":7 + }, + "indices":8 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":6002, + "max":[ + 951.699462890625, + 1311.2144775390625, + 997.6224365234375 + ], + "min":[ + -791.1101684570312, + -1104.1981201171875, + -832.8842163085938 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":6002, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":6002, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5126, + "count":6002, + "type":"VEC2" + }, + { + "bufferView":4, + "componentType":5123, + "count":22911, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "max":[ + 1.0175365209579468, + 2.681696891784668, + 1.0799881219863892 + ], + "min":[ + -0.8095104694366455, + -0.0726778507232666, + -0.8389946222305298 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":8, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":72024, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":72024, + "byteOffset":72024, + "target":34962 + }, + { + "buffer":0, + "byteLength":48016, + "byteOffset":144048, + "target":34962 + }, + { + "buffer":0, + "byteLength":48016, + "byteOffset":192064, + "target":34962 + }, + { + "buffer":0, + "byteLength":45822, + "byteOffset":240080, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":285904, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":286192, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":286480, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":286672, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":286744, + "uri":"UpLu_Potted_Fern.bin" + } + ] +} diff --git a/assets/models/UpLu_Rough-1.png b/assets/models/UpLu_Rough-1.png new file mode 100644 index 0000000..c5abda5 Binary files /dev/null and b/assets/models/UpLu_Rough-1.png differ diff --git a/assets/models/UpLu_Rough.png b/assets/models/UpLu_Rough.png new file mode 100644 index 0000000..6864b9e Binary files /dev/null and b/assets/models/UpLu_Rough.png differ diff --git a/assets/models/UpLu_Round_Display.bin b/assets/models/UpLu_Round_Display.bin new file mode 100644 index 0000000..839d008 Binary files /dev/null and b/assets/models/UpLu_Round_Display.bin differ diff --git a/assets/models/UpLu_Round_Display.gltf b/assets/models/UpLu_Round_Display.gltf new file mode 100644 index 0000000..03c69ef --- /dev/null +++ b/assets/models/UpLu_Round_Display.gltf @@ -0,0 +1,554 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":101 + }, + "mesh":0, + "name":"UpLu_Round_Wooden.001", + "rotation":[ + 0, + -0.6447340846061707, + 0, + 0.7644070386886597 + ], + "scale":[ + 0.02540000155568123, + 0.02539999969303608, + 0.02540000155568123 + ], + "translation":[ + 0, + 0.7548601627349854, + 0 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Round_Wooden_bcol" + }, + "mesh":1, + "name":"UpLu_Round_Wooden_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Round_Display" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Aurelia_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.003", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.033", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Norm", + "uri":"UpLu_Norm.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_base_color", + "uri":"Aurelia_Atlas_01_base_color.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_Roughness", + "uri":"Aurelia_Atlas_01_Roughness.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":462, + "max":[ + 27.810504913330078, + 16.707317352294922, + 27.810504913330078 + ], + "min":[ + -27.810504913330078, + -27.22794532775879, + -27.810504913330078 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":462, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":462, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":1434, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 0.8153924345970154, + 1.179226040840149, + 0.8153924942016602 + ], + "min":[ + -0.8153924345970154, + 0.06327033042907715, + -0.815392255783081 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":5544, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":5544, + "byteOffset":5544, + "target":34962 + }, + { + "buffer":0, + "byteLength":3696, + "byteOffset":11088, + "target":34962 + }, + { + "buffer":0, + "byteLength":2868, + "byteOffset":14784, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17652, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":17940, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":18228, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":18420, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":18492, + "uri":"UpLu_Round_Display.bin" + } + ] +} diff --git a/assets/models/UpLu_Round_Grooved_Display.bin b/assets/models/UpLu_Round_Grooved_Display.bin new file mode 100644 index 0000000..0084aad Binary files /dev/null and b/assets/models/UpLu_Round_Grooved_Display.bin differ diff --git a/assets/models/UpLu_Round_Grooved_Display.gltf b/assets/models/UpLu_Round_Grooved_Display.gltf new file mode 100644 index 0000000..d2f58d4 --- /dev/null +++ b/assets/models/UpLu_Round_Grooved_Display.gltf @@ -0,0 +1,548 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":141 + }, + "mesh":0, + "name":"UpLu_Round_Grooved.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0, + 0.48251569271087646, + 0 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Round_Grooved_bcol" + }, + "mesh":1, + "name":"UpLu_Round_Grooved_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Round_Grooved" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Aurelia_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.010", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.021", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Norm", + "uri":"UpLu_Norm.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_base_color", + "uri":"Aurelia_Atlas_01_base_color.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_Roughness", + "uri":"Aurelia_Atlas_01_Roughness.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":1260, + "max":[ + 16.934139251708984, + 10.17288589477539, + 16.937440872192383 + ], + "min":[ + -16.93413543701172, + -14.927664756774902, + -16.937440872192383 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":1260, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":1260, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":3354, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 0.4301271438598633, + 0.7409070134162903, + 0.43021100759506226 + ], + "min":[ + -0.43012702465057373, + 0.10335302352905273, + -0.43021100759506226 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":15120, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":15120, + "byteOffset":15120, + "target":34962 + }, + { + "buffer":0, + "byteLength":10080, + "byteOffset":30240, + "target":34962 + }, + { + "buffer":0, + "byteLength":6708, + "byteOffset":40320, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47028, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":47316, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":47604, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":47796, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":47868, + "uri":"UpLu_Round_Grooved_Display.bin" + } + ] +} diff --git a/assets/models/UpLu_Round_Marble_Display.bin b/assets/models/UpLu_Round_Marble_Display.bin new file mode 100644 index 0000000..ce0593c Binary files /dev/null and b/assets/models/UpLu_Round_Marble_Display.bin differ diff --git a/assets/models/UpLu_Round_Marble_Display.gltf b/assets/models/UpLu_Round_Marble_Display.gltf new file mode 100644 index 0000000..d300d99 --- /dev/null +++ b/assets/models/UpLu_Round_Marble_Display.gltf @@ -0,0 +1,554 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Round_Marble_bcol" + }, + "mesh":0, + "name":"UpLu_Round_Marble_bcol" + }, + { + "extras":{ + "MaxHandle":130 + }, + "mesh":1, + "name":"UpLu_Round_Marble_Display.001", + "rotation":[ + 0, + 0.997932493686676, + 0, + 0.06427069753408432 + ], + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0, + 0.5121558904647827, + 0 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Round_Marble_Display" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Aurelia_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Cube.034", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3 + } + ] + }, + { + "name":"Mesh.008", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Norm", + "uri":"UpLu_Norm.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_base_color", + "uri":"Aurelia_Atlas_01_base_color.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_Roughness", + "uri":"Aurelia_Atlas_01_Roughness.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":24, + "max":[ + 0.9665288925170898, + 0.5746519565582275, + 0.9665288925170898 + ], + "min":[ + -0.9665288925170898, + 0.27365297079086304, + -0.9665288925170898 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":320, + "max":[ + 33.974853515625, + 2.460472822189331, + 33.974853515625 + ], + "min":[ + -33.974853515625, + -9.389877319335938, + -33.974853515625 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":320, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":320, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":1074, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":288, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":288, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":576, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":768, + "target":34963 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":840, + "target":34962 + }, + { + "buffer":0, + "byteLength":3840, + "byteOffset":4680, + "target":34962 + }, + { + "buffer":0, + "byteLength":2560, + "byteOffset":8520, + "target":34962 + }, + { + "buffer":0, + "byteLength":2148, + "byteOffset":11080, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":13228, + "uri":"UpLu_Round_Marble_Display.bin" + } + ] +} diff --git a/assets/models/UpLu_Small_Cabinet.bin b/assets/models/UpLu_Small_Cabinet.bin new file mode 100644 index 0000000..853ace4 Binary files /dev/null and b/assets/models/UpLu_Small_Cabinet.bin differ diff --git a/assets/models/UpLu_Small_Cabinet.gltf b/assets/models/UpLu_Small_Cabinet.gltf new file mode 100644 index 0000000..656a0d4 --- /dev/null +++ b/assets/models/UpLu_Small_Cabinet.gltf @@ -0,0 +1,657 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Small_Cabinet_bcol" + }, + "mesh":0, + "name":"UpLu_Small_Cabinet_bcol" + }, + { + "extras":{ + "MaxHandle":210 + }, + "mesh":1, + "name":"UpLu_Small_Cabinet_mesh", + "rotation":[ + 0, + 0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.03493151441216469, + 0.03493151441216469, + 0.03493151441216469 + ], + "translation":[ + -0.00476648285984993, + 0.6191706657409668, + 0.00017956412921193987 + ] + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Aur_Upscale_Luxury_base_beta_02" + }, + "name":"UpLu_Small_Cabinet", + "translation":[ + 0.014330863952636719, + 0, + 0 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Accent", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.03525371104478836, + 0.03498556464910507, + 0.034188784658908844, + 1 + ], + "metallicFactor":0.145454540848732, + "roughnessFactor":0.2954545319080353 + } + } + ], + "meshes":[ + { + "name":"Cube.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3 + } + ] + }, + { + "name":"Mesh.007", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":0 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":1 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":24, + "max":[ + 0.3007606267929077, + 1.074827790260315, + 0.5367866158485413 + ], + "min":[ + -0.3005380630493164, + -0.0004616975784301758, + -0.5367866158485413 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":36, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":699, + "max":[ + 15.371968269348145, + 13.044299125671387, + 8.740096092224121 + ], + "min":[ + -15.361687660217285, + -17.738492965698242, + -8.467184066772461 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":699, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":699, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":1206, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":32, + "max":[ + 14.825678825378418, + 12.062234878540039, + 8.746459007263184 + ], + "min":[ + -14.815394401550293, + -12.116476058959961, + -8.467170715332031 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":32, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":32, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":66, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":288, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":288, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":576, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":768, + "target":34963 + }, + { + "buffer":0, + "byteLength":8388, + "byteOffset":840, + "target":34962 + }, + { + "buffer":0, + "byteLength":8388, + "byteOffset":9228, + "target":34962 + }, + { + "buffer":0, + "byteLength":5592, + "byteOffset":17616, + "target":34962 + }, + { + "buffer":0, + "byteLength":2412, + "byteOffset":23208, + "target":34963 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":25620, + "target":34962 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":26004, + "target":34962 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":26388, + "target":34962 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":26644, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":26776, + "uri":"UpLu_Small_Cabinet.bin" + } + ] +} diff --git a/assets/models/UpLu_Stone_Display_Sm.bin b/assets/models/UpLu_Stone_Display_Sm.bin new file mode 100644 index 0000000..d03f5d1 --- /dev/null +++ b/assets/models/UpLu_Stone_Display_Sm.bin @@ -0,0 +1,138 @@ +aՒ @NAaՒ @NA8 @WA8 @WA8 @WA @\A @\A @ A @ A @ A& @oZA& @oZA @eA @eA @!A @!A @!A @9A @9A @(A @(A @(A$ @ÃA$ @ÃAaՒb@NAaՒb@NA8b@WA8b@WA8b@WAb@\Ab@\Ab@ Ab@ Ab@ A&b@oZA&b@oZAb@eAb@eAb@!Ab@!Ab@!Ab@9Ab@9Ab@(Ab@(Ab@(A$b@ÃA$b@ÃAwbb@Aɓ @yAɓ @yAɓ @yA @ A @ A @ A @RA @RA @RAW @%AW @%AW @%A @7džA @7džA @7džA+ @NdA+ @NdA+ @NdAU7 @ԉAU7 @ԉAU7 @ԉAf @}Af @}Af @}A% @CA% @CA% @CA @A @A @Aɓb}@yAɓb}@yAb}@ Ab}@ Ab}@RAb}@RAWb}@%AWb}@%Ab}@7džAb}@7džA+b}@NdA+b}@NdAU7b}@ԉAU7b}@ԉAfb}@}Afb}@}A%b}@CA%b}@CAb}@Ab}@A[ՒA @NA[ՒA @NA2A @WA2A @WA2Ab@WA2Ab@WA[ՒAb@NA[ՒAb@NAA @\AA @\AA @\AAb@\AAb@\AAb@\AA @ AA @ AAb@ AAb@ A A @oZA A @oZA A @oZA Ab@oZA Ab@oZA Ab@oZAA @eAA @eAAb@eAAb@eAA @!AA @!AA @!AAb@!AAb@!AAb@!AA @9AA @9AAb@9AAb@9AA @(AA @(AA @(AAb@(AAb@(AAb@(A$A @ÃA$A @ÃA$A @ÃA$Ab@ÃA$Ab@ÃA$Ab@ÃAqbAb@AɓA @yAɓA @yAɓA @yAA @ AA @ AA @ AA @ AA @RAA @RAA @RAQA @%AQA @%AQA @%AA @7džAA @7džAA @7džA%A @NdA%A @NdA%A @NdAO7A @ԉAO7A @ԉAO7A @ԉA`A @}A`A @}A`A @}A%A @CA%A @CA%A @CAA @AA @AA @AA @AɓAb}@yAɓAb}@yAɓAb}@yAAb}@ AAb}@ AAb}@RAAb}@RAQAb}@%AQAb}@%AAb}@7džAAb}@7džA%Ab}@NdA%Ab}@NdAO7Ab}@ԉAO7Ab}@ԉA`Ab}@}A`Ab}@}A%Ab}@CA%Ab}@CA%Ab}@CAAb}@AAb}@AaՒ @NaՒ @N8 @W8 @W8b@W8b@WaՒb@NaՒb@N @\ @\ @\b@\b@\b@\ @ @b@b@& @kZ& @kZ& @kZ&b@kZ&b@kZ&b@kZ @a @ab@ab@a @ @ @b@b@b@ @5 @5b@5b@5 @$ @$ @$b@$b@$b@$$ @$ @$ @$b@$b@$b@wbb@ɓ @yɓ @yɓ @y @ @ @ @  @R @R @RW @!W @!W @! @3dž @3dž @3dž+ @Jd+ @Jd+ @JdU7 @ԉU7 @ԉU7 @ԉU7 @ԉf @yf @yf @y% @ +C% @ +C% @ +C @ @ @ @ɓb}@yɓb}@yɓb}@yb}@ b}@ b}@Rb}@RWb}@!Wb}@!b}@3džb}@3dž+b}@Jd+b}@Jd+b}@JdU7b}@ԉU7b}@ԉfb}@yfb}@y%b}@ +C%b}@ +C%b}@ +Cb}@b}@[ՒA @N[ՒA @N[ՒAb@N[ՒAb@N2Ab@W2Ab@W2A @W2A @WAb@\Ab@\Ab@\A @\A @\A @\Ab@Ab@A @A @ Ab@kZ Ab@kZ Ab@kZ A @kZ A @kZ A @kZAb@aAb@aA @aA @aAb@Ab@Ab@A @A @A @Ab@5Ab@5A @5A @5Ab@$Ab@$Ab@$A @$A @$A @$$Ab@$Ab@$Ab@$A @$A @$A @qbAb@A @ A @ A @ ɓA @yɓA @yɓA @yA @RA @RA @RQA @!QA @!QA @!A @3džA @3džA @3dž%A @Jd%A @Jd%A @JdO7A @ԉO7A @ԉO7A @ԉ`A @y`A @y`A @y%A @ +C%A @ +C%A @ +CA @A @A @Ab}@ Ab}@ ɓAb}@yɓAb}@yAb}@RAb}@RQAb}@!QAb}@!Ab}@3džAb}@3dž%Ab}@Jd%Ab}@JdO7Ab}@ԉO7Ab}@ԉ`Ab}@y`Ab}@y%Ab}@ +C%Ab}@ +CAb}@Ab}@\@,A\@,A˂@UA˂@UAm@tAm@tAJx@1AJx@1AJx@1AS@X&AS@X&A%r@H;A%r@H;AcI@AcI@AcIA@AcIA@A%rA@H;A%rA@H;ASA@X&ASA@X&ARxA@1ARxA@1ARxA@1AmA@tAmA@tAԂA@UAԂA@UA\A@,A\A@,A\A@,\A@,ԂA@UԂA@UmA@tmA@tRxA@1RxA@1RxA@1SA@\&SA@\&%rA@K;%rA@K;cIA@cIA@cI@cI@%r@K;%r@K;S@\&S@\&Jx@1Jx@1Jx@1m@tm@t˂@U˂@U\@,\@,B@0AB@0AB@{r[AB@{r[A4B@T|A4B@T|AORB@lĊAORB@lĊAORB@lĊAB@AB@AxB@.AxB@.ASM B@a!ASM B@a!AeMA B@a!AeMA B@a!A1xAB@.A1xAB@.AAB@AAB@AWRAB@lĊAWRAB@lĊAWRAB@lĊA4AB@T|A4AB@T|AAB@{r[AAB@{r[AAB@0AAB@0AAB@0AB@0AB@r[AB@r[4AB@Z|4AB@Z|WRAB@oĊWRAB@oĊWRAB@oĊAB@AB@/xAB@./xAB@.dMA B@d!dMA B@d!TM B@d!TM B@d!!xB@.!xB@.B@B@ORB@oĊORB@oĊORB@oĊ4B@Z|4B@Z|B@r[B@r[B@0B@0g;M@d,Ag;M@d,A2:M@UA2:M@UAv;M@!tAv;M@!tA\;M@-8A\;M@-8A\;M@-8A X;M@/A X;M@/A)r:M@FA)r:M@FAdI;M@m AdI;M@m AdIA;M@m AdIA;M@m A *rA:M@FA *rA:M@FA)XA;M@/A)XA;M@/AdA;M@-8AdA;M@-8AdA;M@-8AvA;M@!tAvA;M@!tA;A:M@UA;A:M@UAgA;M@d,AgA;M@d,AgA;M@j,gA;M@j,;A:M@U;A:M@UvA;M@!tvA;M@!tdA;M@08dA;M@08dA;M@08)XA;M@/)XA;M@/ *rA:M@F *rA:M@FdIA;M@p dIA;M@p dI;M@p dI;M@p )r:M@F)r:M@F X;M@/ X;M@/\;M@08\;M@08\;M@08v;M@!tv;M@!t2:M@U2:M@Ug;M@j,g;M@j,@0A@0A`ǧ@ w[A`ǧ@ w[A=@|A=@|AkY@ˊAkY@ˊAkY@ˊA@A@Aߒx@v9Aߒx@v9AM@,AM@,AMA@,AMA@,AxA@v9AxA@v9AA@AA@AsYA@ˊAsYA@ˊAsYA@ˊA=A@|A=A@|AiǧA@ w[AiǧA@ w[AA@0AA@0AA@0A@0hǧA@w[hǧA@w[=A@|=A@|sYA@ˊsYA@ˊsYA@ˊA@A@xA@y9xA@y9MA@,MA@,M@,M@,x@y9x@y9@@kY@ˊkY@ˊkY@ˊ=@|=@|aǧ@w[aǧ@w[@0@0AY UAbuAY 2C1A9eAY æ^A4AY A_NAY pA{AY EנArAY ʦAY UA_NY pA{Y EנArY ʦAZuY 2C1A1eY æ^A4Y AAY U_NAY s{AY HנrAY ͦbuAY 8C19eAY ɦ^4AY Y UZuY 8C11eY ɦ^4Y _NY s{Y HנrY ͦ)A oA)A oA}A 4TAƑA 9AA 'WA+A (eA(?QA .ApA CA! oA! oA+ (eA?Q .Ap CA} 4TAƑ 9A 'WA)A o)A o+A +e(?QA 1pA F}A :TƑA 9A -W! o! o} :TƑ 9 -W+ +e?Q 1p F?Q.A?Q.A+(eA+(eA+A(eA+A(eA(?QA.A(?QA.ApACApACA)AoA)AoA)AoAA'WAA'WAƑA 9AƑA 9A}A4TA}A4TA}A:T}A:TƑA 9ƑA 9A-WA-W)Ao)Ao)AopAFpAF(?QA1(?QA1+A+e+A+e++e++e?Q1?Q1pFpF!o!o!o-W-WƑ 9Ƒ 9}:T}:T}4TA}4TAƑ 9AƑ 9A'WA'WA!oA!oA!oApCApCAf}>Af}>A~@WA~@WAN#AN#AfN]AfN]AjvAjvAjvAT->AT->AT->A +A +ACKpPACKpPACKpPA^xA^xA_TA_TA_]`A_]`A_]`A4.taA4.taA4.taAa-1Aa-1A,F41A,F41Aa-1a-1,F:1,F:1_]`_]`_]`4.{a4.{a4.{a^{^{_T_T  CKpTCKpTCKpTjvjvjvT->T->T->f}Af}A~@W~@WfN]fN]N#N#wNA]wNA]NA#NA#f}AAf}AA~A@W~A@WjAvjAvjAv\-A>\-A>\-A>A A KKApTKKApTKKApTfA{fA{gATgAT_A]`_A]`_A]`<A.{a<A.{a<A.{ai-A1i-A14AF:14AF:1i-A1Ai-A1A4AF41A4AF41A_A]`A_A]`A_A]`A<A.taA<A.taA<A.taAfAxAfAxAgATAgATAA +AA +AKKApPAKKApPAKKApPAjAvAjAvAjAvA\-A>A\-A>A\-A>Af}A>Af}A>A~A@WA~A@WAwNA]AwNA]ANA#ANA#ANY ANY ANtANtA~!~ A~!~ A~!~ Am}Y TԤAm}Y TԤAm}Y TԤAޟAޟAޟA>NY LA>NY LA>NY LAʀAʀAʀAʡY NY L>NY L>NY L~!~ ~!~ ~!~ m}Y WԤm}Y WԤm}Y WԤNtNt NY NY NAtNAtNAY NAY !~A !~A !~A m}AY WԤm}AY WԤm}AY WԤAޟAޟAޟFNAY LFNAY LFNAY LÀÀÀʡAY <ʡAY }debdebft|[1>1$8?1$8?'}?d>eb?d>eb?f?t>?|?[1?1?$81?$8?'>}debdeb?ft?|1>?1$8?1$8??'}???d>eb?d>eb??f?t>?eb?d}?'>t>feb?d1|t>f$811|}'$81}'ebd>ebd>tf?tf?1>|?1>|?$8?1?$8?1?}?'>b?^}?'>t>fb?^1|t>f$811|}'$81}'b^>b^>tf?tf?1>|?1>|?N'8?t1?x*8?.1?}?'>|[11$81$8?|1?'}'}'}'}?d>eb?d>ebf?tླf?t?f?tླf?t|?[1>?|?1>1?$8?1?$8??1?$8?1?$8?'>}??'>}?deb?deb?deb?deb??ft>ft>ft>ft>??}'>ebdb^ebdtftf1>|1>|$8?1$8?1}?'b?^>}?'t>f?b?^>1|?t>f?$81?1|?}'>x*8.1?$81?}'>b^ebdb^tftf1>|1>|$8?1$8?1}?'b?^>}?'t>f?b?^>1|?t>f?x*8.1?$81?1|?}'>x*8.1?|?1>1?$8??1?$8??|?[1>'>}?'>}??'>}?'>}?deb?deb??ft>ft>ft>ft>?|[1|1?1$81$81$81$8?'}'}?d>ebd>eb?d>ebd>ebf?tླf?t?f?tླf?t?eb?d>}?'t>f?eb?d>b?^>1|?t>f?$81?1|?}'>$81?}'>ebdb^ebdtftf1>|1>|$8?1$8?1x*8?.1}?'eb?d>b?^>}?'t>f?b?^>1|?t>f?$81?1|?}'>$81?}'>b^ebdb^tftf1>|1>|$8?1x*8?.1x*8?.1}?'|[1>|1>?1$8??1$8?'}?'}??'}?'}??d>eb?d>eb??f?t>f?t>f?t>f?t>?|?1|?[1?1?$81?$81?$81?$8?'>}'>}debdeb?debdebftླft?ftླft?ebd>tf?}'ebd>tf?1>|?1>|?$8?1?$8?1?}?'>b?^}?'>t>fb?^1|t>f$811|}'$81b^>tf?}'b^>tf?1>|?1>|?$8?1?$8?1?}?'>b?^}?'>t>fb?^1|t>fN'8t11|}'x*8.1<:?Ѵѹ?d9֊d$:@?'sQ>{z9 +?֍9=¹֍9¹ѹ +?Qz$޺@?'sLo dy?Q5@ Q5Q5@ Q5 S?ޙĻdD L?yzQn?L޺̼9:?Ѵѹd9=:?Ѵ9zX-Q>n?L:dD L>?y;Q5@ Q5?Q5@ Q5? S?ޙ;L֊d?y?;Q{z?$޺@?'s<֍9¹?ѹ +?<9 +?<֍9=¹?$:@?'sz?y;?;L>o d? S;?ޙ;Q5?@ Q5?Q5?@ Q5?;?y;d?D L><:?Ѵ9?̼9=d<9= Q;?ϔQ5@ ֊<d?S?SQ5?@ v?z?X-<Q>H? ?d<9=H? :?̼<9 v?:z?X-<QQ?ϔ;d?D <LS?S;Q5?@ o <dV?`,<Q>to d$޺@'szѹ +<֍9=¹֍9¹9 +;yQ5@ Q5?Q5@ Q5? S;ޙĻLo d?y;Qz?$:@'s֍9¹?9 +ѹ +֍9=¹?$޺@'sQ>{z?yL>֊d? SޙĻQ5?@ Q5?Q5?@ Q5?yd?D L>nL޺z?X-Q>:Ѵѹ?d9=d<9=H :zX-<Q> v:5djB Qϔ;Q5@ to <d?S;S;Q5?@ ֊<d;V`,Q>1zX>Pd?;91z?-QPd?X55?55?;9?-Q1z?XPd?;9=1z-Q>PdX>5?5?5?5??;9=1z?-Q>Pd?X>;9=?-Q>1z?X>Pd?-Q>1z;9=;9-Q1zXPd5555PdX1z-Q;9;9=1z-Q>PdX>55?55?XPd?-Q1z?;9?;9=?-Q>1z?X>Pd?5?5?5?5?Pd?X>1z?-Q>?;9=?;91z?-QPd?X5?55?5X>PdX060?)F"{?g6.0?.bq?ռ7F2?ռ7J92?Օ#5Y"?Օ#5Y"?Tѽcodp<>"4n>15> +>15> +> +{/kH>15$ +>15$ +>3VW6s<{=3a6w<3a6A1ݼOsP/3W6X-ݼ1~5 +1~5 + {G'K;cH15" +15" +.~"4d60>g6.0)F>"{Օ>#5Y"Օ>#5Y">5_u">5_u" +U>vb +1?5> +1?5$ +1?5$ + +{?/kH3?VW6s3?a6w?{3?a6A1<3?W6X-<?OsP/=1?~5 +>1?~5 +>1?5" +>1?5" +> {?G'K;cH>.~"?4>g"?v4>d?@!?@4? ?5F4?Q4?ñ<4?Q4?ñ<4?>l 5;z"?>l 5;z"?o>.%5fa"?o>.%5fa"?O>,c;!e?E>,6-0?*>6 0? F>!{?<87F2?<"782?= ͧ?uz;2?D7??B7?|:2?M7?K z?Qt4?1?Qt4?1?qޕ4?01?qޕ4?01??k];d? M6?? M6??3L7?|?3L7?|??l4]ñ<5?l4]ñ<5?_FU8?),>>_8?>?Xd<+C>v:7? >p7? +>?z)K;,L>ޑ05?[>ޑ05?[>ȫ05?u>ȫ05?u>?˿r'=]53?w=]53?w=63?K=63?K=?Ѱz7 6k3?̨ 6k3?̨5G3?45G3?4?YzkL05??05??05??05???d p<"!7?ס7?ʡ?&5k<4&5k<4 _8?5KX8?V?g澈b<>ddX7?zdX7?z26?26??AKdz+4?E1+4?E1Ey4?1Ey4?1?^%l 2?j@72?2M7?|=:2?M7B7=?uz=;2?D7Q>t4?1Q>t4?1K> z?q>ޕ4?01q>ޕ4?01 M>6? M>6?k>];d?6>7?6>7?_F>U8?),l4?]ñ<5l4?]ñ<5?>>_8?v?:7? Xd?<+C??p7? +ޑ0?5?[ޑ0?5?[z?)K;,L?ȫ0?5?uȫ0?5?u]5?3?w]5?3?w˿?r'?6?3?K6?3?K 6?k3?̨= 6?k3?̨=Ѱ?z7=?5?G3?4=5?G3?4=0?5??>0?5??>Yz?kL>?0?5??>0?5??>!?7?ס>d? p<">??7?ʡ> >_8?5K>&5?k<4?&5?k<4??>X8?V>d>X7?z?d>X7?z?g>b<>d??2>6??2>6??+>4?E1?+>4?E1?AK>dz??E>y4?1?E>y4?1? =2?j@7?^%=l??=2?2M7?Ɠ>d>(>6U>Ɠ>꜡>>6U>>6u> >F<>`}>6u>"z>>޹>6u>p~>Z>Ы>>>F<>`F>>H6>꜡>ޯ>>׷>6u>H6>d>N>6u>> u>p~>>[>6U>2>6u> > u>ʱ>6U>)=,>(>$>b=>>$>>">=,>`}>">"z>>޹>">:=>Ы>>:=>`F>>=e>ޯ>>׷>">b=>N>">)=e>A=>[>$>2>">A=>ʱ>$>b=`ɭ>>V>T>O>T>O>>>>*> +>O>\>*>\+>Rf>\>*>>>>*>p~>RK>^e>>^e>>є>Rf> +>>f=5>>>f=>[>*.>>V>[>>є>K>[>>p~>f>[>>Ī>*>\+>K>>*>>O>T>i>T>i>>> +>i>\>>\>>>r>>>^e>r>^e>r> +>r>p.=5>p.=>Vv>*.>Vv>>Vv>>Vv>>Ī>>>>>i>>>=T>m>>jI=@>m>>Ę>>>>Ę>xo> >>&>F>=T> >>>F>@ +>Z>(=2>&>A>{>nr>>A>(=6>j=@=&>f>>Z>j==>f>=Z>=@=3>>==jI=5>+=@=>>3>xo>+==e>>=Z>>>>п>e>>>#>>y> j=6>e>#>>n>{> +>>y>E>>j=2>>n>E>>@ +>п>{>3>g5==g5===Ji>g5=H2=g5=H2=g5=H2=jI=J>g5=M==Ji>q==c=">q=H2=q=H2=c=Bˬ>q=M=d>.z>=>d>">d>">jI=i>x=>d>(>2Av=>=>2Av=>q== t=>/=Bˬ>g5=0=q=@=q=@=/=">^==^==^==^=H2=^=H2=^=M====H2==H2==M=>.z>>">>">x=|2>>(>2Av=|2>2Av=|2>==== t=|2>^=0==@=Y=<>|>`h>p=>|>>>꜡>b>>>d>b>`h>̂=<>|>@>d>>`>F<>b>@>d>>D>>=>D>>fҒ>Z>=@=F>>=>==F>>D>F<>=@=̂=u>==@>꜡> ^=@=>x>q=> ^==e>x>@>d>>x>Y=u>e>x>D> u>r=>>Z>]>y>fҒ>>e>Z>]>n>r=>|>ɸ>|>y>`> u>|>n>b>ɸ>fҒ>ء>߅=f>}=>}=>q=K>|=>|=>|=>\=Ӭ>!G=f>Jz=>\=N|>\=N|>y=>==\=5>y=>=H2==H2=!G=K>=M==M=>$>q=f>>~>߅=K>>~>#=>>*.>>>#=>>*.>>*.>m=>}=|2>}=|2>}=|2>|=|2>|=|2>=Ӭ>Jz=|2>=N|>=N|>c===5>c=H2=c=H2=c=H2=c=M=">$>">~>">~>">*.><Ŷ>><Ŷ>><Ŷ>*.>m=|2>>>=>*>>TG=>*>`h> =D>>`h>=>*>ɸ>ů>6U>NԳ=>>ɸ>B>6U> =,>0=n>ů>>7Ҡ=>B>>0=F>==ů>}>=,>=@=B>}>LԳ=R>׳===>׳=@= =f>KZ===\==>KZ=@==M=TG=R>{=\==e>{=M= =\=>:P>p.=F> =M=>P̱>7Ҡ=>Tm>:P>*>@>p.=n>Tm>P̱>>@> =e> => >$> >$>=> >~> >~>= > >xI>煟=W>Ī>>7Ҡ= +<>>>>>=W>b>>Ī>>=>>>>>= >Ī>O>b>>>O>=;>>O>>>b>O>7Ҡ=V> >*.>^e>>煟=;>p'>$>p'>$>p'>~>p'>~>p'>xI>Ī>Z>>Z>>Z>b>Z>Ī>r>>r>>r>Ī>i>b>r>>i>>i>>Z>b>i>p'>*.>^e>Z>Ž>\q>e>De>>>e>P@]>v3>>e>V>>/>e>D2R>Vu>>$>tԡ>>>)>>N>>}>VY>ҩ>>}>>R>`]`>.9>>r>W>>>V>(|Q>&>>(/>tm>ȣ>L>(/>>vH>HI>(/>n> >G>(/>>E͍>F>&/>p>9S>dG>(/>(,>γJ>H>(/>~>XXD> +K>(/> >Vu>r}>Ĺ?>pN>>r}>tu<>4'S>N>r}>k:>Y>ҩ>r}>"9>pb>:>^9>}>r}>;>H|>.9>r}>>>>>r}>wA>B>e>t>&>r}>Y.F>l>e>>/L>L>e>pZ>$U>>e>>R>0>,>>R>B> >>T>n(>>J>y>=T>>ý> >:e>>=҄>â>>=Ҡ>E> >=>ƚ>]>m_>>=>uV>>=ί>O>>=:ʘ>aJ>~Ѹ> >>=(>`F>~Ѹ>?>>TD>~Ѹ>>+>C>~Ѹ>7>!gR>D>~Ѹ>0> oI>TE>~Ѹ>B>;B>:H>~Ѹ>n(>0[=>L>~Ѹ>>ý>F>6x>9>HQ>F>4s>}7>$EX>F> l>O6>Ca>F>c>F> >E8>L>F>>r8>L->F>=_;>(>R> >F>p=*?>(7>R>?>mD> >R>>DjK>%>R>7>AhT>"~>/>}>j>e>t>j>x?]>>5>j>V>>>j>L/R>v>>>6> >>>i>>>>Э>>>}>>>(ڵ>8>>>>>>>(Q>>>4>n>>>4>>>$R>4>>t>b>4> +>/>6>4>p>v>6>4>+>>b>4>>x>$R>4>>v>w>1>> >w>~>(Q>>w>u>>>w>j>(ڵ>j>Э>}>w>u>i>8>w>~>6>>w>1>>j>>>w>x>5>j> +>>j>Z>v>}>j> +>>0>Ɠ>>>>TC{>>j)>p>$}>zx>`=>Ľ>'>6>>`=h>B>x>`=L->2>v >`=ؕ>0;>ؕ>L>>`=L->ʺ> >`=h>vE>>`='>>׷>>>`=r>h>׷>>>>N>׷>>Ɠ>N>׷>7>>N>׷>0>>N>׷>>>h>׷>j)>>>׷>Ľ>|>9x>*>vE>|>8s>">ʺ>|> l>>L>|>c>|> >>2;>|>>">2>|>=*>B>>>|>x=>6>>>>>$}>>>>TC{>>7>>?=xq>\m=T>v=D>W=v>m =<ǎ>#=؇>@.=Bk>?=/>m = G>#==>@.=5>Zm=(>v= (>W=y+>(>xq>]0><ǎ>+/>؇>->Bk>t>T>T>D>&">v>(>/>t>(>S> (>$">y+>]0> G>+/>=>->5>D>:P>>E>>E>>E>->E>IX>:P>bP>:P> I>:P>D>*>t>:P>>:P>>:P>=>:P>IX>*>bP>*> I>*>D>F>6ޑ>f>6ޑ>>6ޑ>§>6ޑ>>IX>F>bP>F> I>F>4ޑ>L/R>>(>>(>>(>->(>4ޑ>0e>4ޑ>ܬ]>4ޑ><6W>}$>P>>>W%>D>>>IX>>W%>/>bP>>}$><"> I>>">]>D>>>n{>>>->n{> >>>n{>">j>>n{>ή >V>IX>n{>x=V>bP>n{>(=j> I>n{>w~=>D>n{>Ǩ>f>Q[j=>Ǩ>>Z[=]>Ǩ>§>0`S=<">Ǩ>>ɀP=/>ɀP=D>Ǩ>0e>0`S=P>Ǩ>ܬ]>Z[=>Ǩ><6W>Q[j= >Ǩ>L/R>>>w~=ƨ>->>(=>>>v=V>>>ͮ >V>IX>>!>>bP>> >ƨ> I>>> >D>>t>>">>=>>1>d>1>d> >> 2>>>>@3>>>2>Ԕ>2>Ԕ>_2/>`>C>˓>_2/>`>q(>>|/>g>ų>2ٓ>ND>ʏ>*>DH>g=P>1/>>|ų>亏>P>>>w$>>g=r>˲>,ڋ>>>~w>>>>1g=>*>BN>P>>H>>H> g=Nj>>:>cE=H>cE=H> g=,M>6=:>cw=>X>z>cw=>1g=7C>vv=BN>C><>><>?XV=>g=:>|B>8>>ŋ>-<=DH>ȥ=H%>g=0 4>ha>>)=`>/>>)=`>ƥ4=P%>4D'=g>>=f>=f>fV=P%>=>j=Ԕ>j=Ԕ>P}=@%>ȥ=>>j=P>j=P>ȥ=>>@%>=>=>=p> >P%>)=>)=>t>/>4D'=x >r>>>q(>P%>-<=*>ؐ>v/>>>z#L=P>1/>@%>HXV=Zz>>k>>?>#L=r>cw=>cw=>Ę>>|v=$>4>>#L=>fE=&*>fE=&*>6=>#L=Nj>>&*>>&*>>>#L=,M>>>>>X>>*>$>C>˟>#L=7C>y$>Zz>>k>|B>]>#L=:> *>*>>~>ja>"p>ȥ= >z#L=0 4>_2/>>_2/>>/>xm>|/>v >>*>ƥ4=>1>>1>> 2>n>fV=>2>P>2>P>@3>>P}=>>\g>ȥ=l G>? >>? >> >x> >x>jw>Z>>\g>\>>3=tE=>ci(>x>%=(4>v>>$(=5>>ʱ>$(=5>~=:D>/>>8= .>:=.>:=.>~=^>DS=I)>T=)>T=)>~=>t=H&>n0>[> +pu=h6'>>G> +pu=h6'>~=ȋ>~=ȋ>4ت>dg>=rċ>Y>jb>E=R&>~=M>~=M>>d@>=$M>>C>̇>R&>~=7C>t>H&>>N>h6'>~g>dg>N>h6'>~=<:>#>I)>I#>)>I#>)>. =">~=$4>Y*> .>)>.>)>.>T4=">J/>$4>&>>.>5>>$>.>5>VV=">VV=">c>±>V=#>N>"1>]1>pE=>}=">}=">q ~=#>XA2>l G>? >">? >">XA2>ю>>#> >">>f> >">]1>>>#>">>J/>>>tr>ci(>">.>Η>.>Η>Ƥ>0>\*>P>^Ic=:D>/>">)> >)> >#>Ȳ>FIc=^>K#>]>K#>]>t>(>y>[>)Ic=>N>>N>>x>G>:Ic=ȋ>!>dg>:Ic=ȋ>͇>->,f=rċ>\>jb>:Ic=M>|>d@>:Ic=M>E=->,f=$M>Lh>C>t=(>/>)Ic=7C>pu=>pu=>Ⱜ>dg>DS=Ȳ>FIc=<:>T=]>T=]>ƍ8=P>. =>^Ic=$4>:= >:= >%=>T2>@>T4=x>$(=Η>$(=Η>>׽>VV=x>&T>ꏺ>VV=x>3=>V=\g>͵>a>}=>}=>ȥ=ю>q ~=\g>  +"" + $$" + &&$ ))'--)//,/00!0!#0#%0%(0(*0*+0+.0.0114448 88< <<? ??B  BBEEEGGGIIILLL162OOR695QQT9;7SSV;>:UUX>@=WWY@CAZZ[CFD\\]FJH^^_JMK``aM3NbbP3ciggecegnnkelottrlrtzzwrvy~~|v|~|iicjhhppssxx}}jfdfmfmqmququ{u{{dd   $! &## +(%% + *''  +)) .,-0//211543"667=;;97=B??;=CHFF@CHNKKFHMRPPJMRWTTPRX\ZZUX\`]]Z\afcc^ag799dg:<i<AiAEiEIiIOiOSiSYiY_i_eie:i>8ool>D>llqDGDqqsGLGssvLQLvvyQVQyy|V[V||[b[bhbh8ho8jnjpkptrtwuw{x{~z~}mm + +   QSQSUSXUXZXZ\Z\^\!^_^!!$__$&&a_a&((caec((+ehe++-hjh--/jlj//1lnl113nn355pnp577rptr77:twt::<wyw<<>y{y>>@{~{@@A~~ACC~CEEEEGGGJJJLLLNQNNQPRPRTRTWTVYV  Y[Y" "[][#"#]`]`b`%#%bdb'%')')dgd,*,fif.,.iki0.0kmk202momoqo424qsq646868sus;9;vxv=;=xzx?=?z|zB?B|}|}}DBD  FDFIFI   KHK MKMOMOOP#'##,''1,,611;55@;;D@@IDDMIISMMXSS\WWb\\fbbjffpjjtpp ytt xx  ""&"&&+&+0+040:4:?:?C?CFCFFJFJNJNTNYTY]Y]c]cgcggkgkqkquqzuzz   + + +  +     $!!$(%%!$(-))%(.2//*.2733/27=9937<A>>8<AEBB>AEHGGBEHLKKGHLQOOKLRVUUPRV[ZZUV[a__Z[`edd^`eihhdeinllhiosrrmo swvvrs    w~||vw }{}  + +gP@l,AgP@l,A9P@UA9P@UAvP@!tAvP@!tAdP@18AdP@18AdP@18A(XP@/A(XP@/A +*rP@FA +*rP@FAdIP@q AdIP@q Ag@l,Ag@l,A9@UA9@UAv@!tAv@!tAd@18Ad@18Ad@18A(X@/A(X@/A +*r@FA +*r@FAdI@q AdI@q Aau@9C1Aau@9C1AԓP@0AԓP@0AgǧғP@w[AgǧғP@w[A8e@ʦ^A8e@ʦ^A=ԓP@|A=ԓP@|A4@A4@ArYԓP@ˊArYԓP@ˊA@UA@UA@UAԓP@AԓP@AԓP@Ar@ΦAr@ΦAr@ΦAxғP@x9AxғP@x9A{@JנA{@JנAMԓP@,AMԓP@,A_N@sA_N@sAZ UAZ UA_NZ sA{Z JנArZ ΦAauZ 9C1A8eZ ʦ^A4Z A_s@VA _NAZ sA _NA@sA _NA@sA{A@JנA{A@JנA{A@JנA{AZ JנArA@ΦArA@ΦArAZ ΦAA@UAA@UAA@UAAZ UAAZ UA[uA@9C1A[uA@9C1A[uAZ 9C1A2eAZ ʦ^A2eA@ʦ^A2eA@ʦ^A4AZ A4A@A4A@AAԓP@0AAԓP@0AaǧAғP@w[AaǧAғP@w[A3AP@UA3AP@UAgAP@l,AgAP@l,A=AԓP@|A=AԓP@|AvAP@!tAvAP@!tAlYAԓP@ˊAlYAԓP@ˊA^AP@18A^AP@18A^AP@18AAԓP@AAԓP@A"XAP@/A"XAP@/AxAғP@x9AxAғP@x9AxAғP@x9A)rAP@FA)rAP@FAMAԓP@,AMAԓP@,AdIAP@q AdIAP@q A3A@UA3A@UAgA@l,AgA@l,AvA@!tAvA@!tA^A@18A^A@18A^A@18A"XA@/A"XA@/A)rA@FA)rA@FAdIA@q AdIA@q ASsA@VA_NZ o_N@o_N@o_N@o{@Fנ{@Fנ{Z Fנr@ʦr@ʦr@ʦrZ ʦ@U@U@UZ UZ Uau@1C1au@1C1auZ 1C18eZ ¦^8e@¦^8e@¦^4Z 4@4@ԓP@0ԓP@0gǧғP@ w[gǧғP@ w[9P@U9P@UgP@d,gP@d,=ԓP@|=ԓP@|vP@!tvP@!trYԓP@ˊrYԓP@ˊdP@-8dP@-8dP@-8ԓP@ԓP@ԓP@(XP@/(XP@/xғP@t9xғP@t9 +*rP@F +*rP@FMԓP@,MԓP@,MԓP@,dIP@m dIP@m 9@U9@Ug@d,g@d,v@!tv@!td@-8d@-8d@-8(X@/(X@/ +*r@F +*r@FdI@m dI@m _s@V _NAZ o _NA@o _NA@o{AZ Fנ{A@Fנ{A@FנrAZ ʦrA@ʦrA@ʦAZ UAZ UA@UA@UA@U[uA@1C1[uA@1C12eA@¦^2eA@¦^2eAZ ¦^[uAZ 1C14A@4A@4AZ AԓP@0AԓP@0gAP@d,gAP@d,3AP@U3AP@UaǧAғP@ w[aǧAғP@ w[vAP@!tvAP@!t=AԓP@|=AԓP@|^AP@-8^AP@-8^AP@-8lYAԓP@ˊlYAԓP@ˊ"XAP@/"XAP@/AԓP@AԓP@)rAP@F)rAP@FxAғP@t9xAғP@t9dIAP@m dIAP@m MAԓP@,MAԓP@,gA@d,gA@d,3A@U3A@UvA@!tvA@!t^A@-8^A@-8^A@-8"XA@/"XA@/)rA@F)rA@FdIA@m dIA@m SsA@V<:?Ѵѹ?;9Pd$:@?'s-Q>1z9 +?;9=??;9?1z?-Q?Pd?X?5?55?5?X>Pd?-Q>1z?;9=;9= +4X5?)= +4X5?)= 05?>hi 6?a>Q;?ϔPdX>hi 6?a>A>6?A>S;?S55?55?A>6?A>a6?hi ?a6?hi ?3;?XPd?a6?hi ?a6?hi ?5?0?;V?`,-Q1z?5?0?)X5? +4?: +?;9?)X5? +4?55?55?;9?-Q1z?XPd?;9=1z-Q>PdX>?;9=?)=X5? +4?;9=?>5?0?>5?0?-Q>1z?-Q>1z?a>6?hi ?X>Pd?X>Pd?A>>6?A>5?5?5?5?5?5?5?5? +4?X5?)=?;9=?;9=1z?-Q>0?5?>1z?-Q>Pd?X>hi ?6?a>Pd?X>H?  +4?X5?)= v?0?5?>1z-Qn?L޺;9:?ѴѹQ?ϔhi ?6?a>PdX?yS?SA>>6?A>5555 S?ޙĻ3?a>6?hi ?XPdy?V?`,>5?0?>5?0?-Q1z$޺@?'s +?)=X5? +4?;9ѹ +?1z-Q?;9?PdX?5555?XPd?-Q1z?;9??;9;9)X5? +4)X5? +4-Q1z5?0-Q1zXPda6?hi a6?hi XPd5555A>6?A5555;9 +4X5?);91z-Q1z-Q05?PdXPdXhi 6?a +4X5?)<:?Ѵ9?;9=hi 6?aQ;?ϔ;;?y;Pd?X>A>6?AS;?S; S;?ޙ;5?5?5?5?a6?hi a6?hi 3;?;y;?;X>Pd?5?0;V?`,<$:@?'s<-Q>1z?)X5? +4)X5? +4: +?<9 +?<;9=??1z?-Q>??;9=?Pd?X>?5?5?5?5??X>Pd??-Q>1z??;9=??;9=)=X5? +4;9=-Q>1z>5?0-Q>1zX>Pda>6?hi X>Pd5?55?5A>>6?A5?55?5 +4?X5?)?;90?5?1z?-Q1z?-Q?;9hi ?6?aPd?XPd?X辖H? : +4?X5?);9=:?Ѵ91z-Q>n?L: v?:0?5?PdX>?y;Q?ϔ;hi ?6?a55?55? S?ޙ;S?S;A>>6?AXPd?y?;3?;a>6?hi -Q1z?$޺@?'s<V?`,<>5?0;9?ѹ +?< +?<)=X5? +4;9=?1z-Q>?PdX>?55?55??XPd??-Q1z??;9???茡>>>>e>(>>>x?]>> >>>V>~J>&Ѯ>œ=˗>>>L/R>>.>œ=u>>`)>=C>r>nի>œ=>&>9x>>e>>$sw>>x?]>"->Qu>>V> +>q>>=˗>>L/R>.>Om>>=u>>>\f>>=C>0>a^>>=>i>"> >Xw=`Y >O=>2)>9Y> =^>ʬ>**>"> +>x"=Zc>=e>d6> >">>p_=z >Y=>ܡ>zx>(=>">#>0.=Ǭ$>=aE>]> +ޜ>Ϋ>~>(=;'>=D>>oL>]>L_>Z>b>(=M>>U>>ߔ>Z>">(=aV>>zx>0=>^>">0=b>0=~>0=i>^>**>^> >^>>g>Y>0=l0>8>Y>(=\I>tש>>ݴ>>(=>0=1,B>@1>>(=>0=/<>e>>j>>(=>g>>0=@4>>Z>j>Z>g>H>g>x5>[>H>j>ඩ>g>7>s>ඩ>j>8>)>8>)>8>B>8>B>H6>Z>;>A>H6> +>;>䇹>:>~+>:>~+>H6> +>=> >q>>>q>>>=0 4>H6>> A>>nC>>nC>>=8>E>>*J>n>*J>n>|>>=\?>, L>L>S>`>>Z>=G>T>m>>Z>>@=> +>$>a=> +>"->(2=<=0 4>>> +>x=<=8>.>6=<=\?>>>l><=G>0> +>> L>B,> '>B,>PY= t= >rߕ>>z>PY=0ӌ=>z> '>Jt%>PY=ȥ==2!=u>Jt%> '>+>PY=>">)=H=+> '>>^>J>">ނ=xL=J>^><>^><>">_=8.=Ҧ>^>Ҧ>">$TA=ȗ== $=>b!>~~b==>A>>>6 >@>Z>>>@> +>G==$>>t>(?>@> +>L2=P=Q>v>>>L=0 4>@>>$=N=S4=5>F>v>Ĝ>|N>L=8>|=ė>F>>ؕ>j>L=\?>u=HS>ʕ>U>ʕ>U>R>r>L=G>?>$sw>>Z>>9x>> +> >Qu>> +>>q>bn=0 4>>> >Om>bn=8>>\f>`n=\?>>a^>bn=G>"&>g>v= '>SU>>v=PY=P= '>K>2>P=PY=p1= '>C>>p1=PY=ȥ= '>#>g>=>>ȥ=PY=#>j>55>:>y>j>6>>6:>j>6:>g>y>g>C|9>b>>j>>g> 9>!> 9>!>H6>e><>v>H6>x?]>=>>@9>6>@9>6>H6>V>8?>*>i<>>i<>>L=˗>H6>L/R>ߟB>y> 5@>"> 5@>">L=u>WG>v>xE>T|>xE>T|>L=C>aM>!>cvL>>cvL>>L=>OV>u>uU>>uU>>>e>>a=>x?]>?>@=>V> >(2=dn=˗>>L/R>>x=dn=u> >6=dn=C>>l>dn=>> +>"&> L>;7@@?;72AA@72,==A2BC$$BCD(($CD>--(D!#!#'#+'+1 +16 16: 6:x{ :x + +  +  zz" %"&"%%)&*&)).*/*..3/5044859588<9 EEEEEEEFH;;?FHFLLKHKLOONKNOTTRNWVZZXWXZ]][X[]QQS[^ecc`^`ciif`jfiinjojnnrosorrwsxsww{xd~||bdb|hbhmhlqlqvqvzvaYUU_ag\YYagkP\\gkpMPPkptIMMptyGJJuy}}9<GGy9~~dEEB!EE + +   + _U_     VVWe^^ \v@,A˂v@UAmv@tAJxv@1ASv@X&A%rv@H;AcIv@AcIAv@A%rAv@H;ASAv@X&ARxAv@1AmAv@tAԂAv@UA\Av@,A\Av@,ԂAv@UmAv@tRxAv@1SAv@\&%rAv@K;cIAv@cIv@%rv@K;Sv@\&Jxv@1mv@t˂v@U\v@,????????????????????????????@4>(>5>M1>7>(7>:>[<>?>$?>F>A>N>dB>t>dB>>A>>$?>&@>[<>>(7>B>M1>z^>(>z^>=B>=>=&@>=>=>X=t>x=N>x=F>X=?>=:>=7>=5>=@4>= + +  +   s:[ ?s:[ ?s:[ ?jw>[ ?jw>[ ?jw>[ ?s:a s:a s:a jw>a jw>a jw>a ?s:[ ??s:[ ??s:[ ??jw>[ ??jw>[ ??jw>[ ??s:a ?s:a ?s:a ?jw>a ?jw>a ?jw>a ????????????>?>>> ?? ?`?>>@?>?>@? ?@? ?@?`??>>>>>> ?> ?> ?>>?>?>? ?? ?? ??  +      \ No newline at end of file diff --git a/assets/models/UpLu_Stone_Display_Sm.gltf b/assets/models/UpLu_Stone_Display_Sm.gltf new file mode 100644 index 0000000..528c94d --- /dev/null +++ b/assets/models/UpLu_Stone_Display_Sm.gltf @@ -0,0 +1,765 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":204 + }, + "mesh":0, + "name":"UpLu_Stone_Display_Sm.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0, + 0.23993602395057678, + 0 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Stone_Display_Sm_bcol" + }, + "mesh":1, + "name":"UpLu_Stone_Display_Sm_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Stone_Display_Sm", + "translation":[ + -0.01616668701171875, + 0, + 0 + ] + } + ], + "materials":[ + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Metal", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8005601167678833, + 0.48333922028541565, + 0.11432372033596039, + 1 + ], + "metallicRoughnessTexture":{ + "index":1 + } + } + }, + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Wall_Secondary", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 1, + 0.9442875385284424, + 0.9201762080192566, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5527864098548889 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Material", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8000229597091675, + 0.2857304811477661, + 0.18876983225345612, + 0.30000001192092896 + ], + "metallicFactor":0.6165803074836731, + "roughnessFactor":0 + } + } + ], + "meshes":[ + { + "name":"Mesh.019", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.005", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_normal", + "uri":"Aurelia_Atlas_01_normal.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_ORM", + "uri":"Aurelia_Atlas_01_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":1052, + "max":[ + 22.900733947753906, + 5.199557781219482, + 21.078372955322266 + ], + "min":[ + -22.900718688964844, + -9.409690856933594, + -21.078378677368164 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":1052, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":1052, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":2520, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":280, + "max":[ + 22.182302474975586, + 3.2590227127075195, + 20.363012313842773 + ], + "min":[ + -22.182313919067383, + -7.251507759094238, + -20.363004684448242 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":280, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":280, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":774, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":28, + "max":[ + 20.295257568359375, + 4.7957282066345215, + 18.51028060913086 + ], + "min":[ + -20.29524040222168, + 4.795722007751465, + -18.510286331176758 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":28, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":28, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":78, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.5816784501075745, + 0.37200480699539185, + 0.5353905558586121 + ], + "min":[ + -0.5816784501075745, + 0.0009298622608184814, + -0.5353909134864807 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":12624, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":12624, + "byteOffset":12624, + "target":34962 + }, + { + "buffer":0, + "byteLength":8416, + "byteOffset":25248, + "target":34962 + }, + { + "buffer":0, + "byteLength":5040, + "byteOffset":33664, + "target":34963 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":38704, + "target":34962 + }, + { + "buffer":0, + "byteLength":3360, + "byteOffset":42064, + "target":34962 + }, + { + "buffer":0, + "byteLength":2240, + "byteOffset":45424, + "target":34962 + }, + { + "buffer":0, + "byteLength":1548, + "byteOffset":47664, + "target":34963 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":49212, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":49548, + "target":34962 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":49884, + "target":34962 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":50108, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50264, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":50552, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":50840, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":51032, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":51104, + "uri":"UpLu_Stone_Display_Sm.bin" + } + ] +} diff --git a/assets/models/UpLu_Stone_Platform_01.bin b/assets/models/UpLu_Stone_Platform_01.bin new file mode 100644 index 0000000..0610bc0 Binary files /dev/null and b/assets/models/UpLu_Stone_Platform_01.bin differ diff --git a/assets/models/UpLu_Stone_Platform_01.gltf b/assets/models/UpLu_Stone_Platform_01.gltf new file mode 100644 index 0000000..eb55c77 --- /dev/null +++ b/assets/models/UpLu_Stone_Platform_01.gltf @@ -0,0 +1,787 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":313 + }, + "mesh":0, + "name":"UpLu_Stone_Platform_01.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0.0005587858031503856, + 0.22665396332740784, + 0.002424798673018813 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Stone_Platform_01_bcol" + }, + "mesh":1, + "name":"UpLu_Stone_Platform_01_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Stone_Platform_01" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "alphaMode":"BLEND", + "emissiveFactor":[ + 1, + 1, + 1 + ], + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":3 + } + }, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Light_mtl", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ] + } + }, + { + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Metal", + "normalTexture":{ + "index":3 + }, + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8005601167678833, + 0.48333922028541565, + 0.11432372033596039, + 1 + ], + "metallicRoughnessTexture":{ + "index":4 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.043", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.018", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":3 + }, + { + "sampler":0, + "source":4 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_normal", + "uri":"Aurelia_Atlas_01_normal.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_01_ORM", + "uri":"Aurelia_Atlas_01_ORM.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":1252, + "max":[ + 64.6351089477539, + 14.851305961608887, + 49.43544387817383 + ], + "min":[ + -64.67911529541016, + -14.68109130859375, + -49.62636947631836 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":1252, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":1252, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":3546, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":72, + "max":[ + 63.39653396606445, + -1.2517253160476685, + 49.36221694946289 + ], + "min":[ + -62.74260330200195, + -1.2517253160476685, + -46.52450180053711 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":216, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":908, + "max":[ + 65.17852020263672, + 6.138332366943359, + 49.978851318359375 + ], + "min":[ + -65.22252655029297, + -12.956727027893066, + -50.16979217529297 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":908, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":908, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":2160, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 1.6560931205749512, + 0.6038771867752075, + 1.2718876600265503 + ], + "min":[ + -1.6560935974121094, + -0.1462458223104477, + -1.2718878984451294 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":15024, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":15024, + "byteOffset":15024, + "target":34962 + }, + { + "buffer":0, + "byteLength":10016, + "byteOffset":30048, + "target":34962 + }, + { + "buffer":0, + "byteLength":7092, + "byteOffset":40064, + "target":34963 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":47156, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":48020, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":48884, + "target":34962 + }, + { + "buffer":0, + "byteLength":432, + "byteOffset":49460, + "target":34963 + }, + { + "buffer":0, + "byteLength":10896, + "byteOffset":49892, + "target":34962 + }, + { + "buffer":0, + "byteLength":10896, + "byteOffset":60788, + "target":34962 + }, + { + "buffer":0, + "byteLength":7264, + "byteOffset":71684, + "target":34962 + }, + { + "buffer":0, + "byteLength":4320, + "byteOffset":78948, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83268, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":83556, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":83844, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":84036, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":84108, + "uri":"UpLu_Stone_Platform_01.bin" + } + ] +} diff --git a/assets/models/UpLu_Stone_Platform_02.bin b/assets/models/UpLu_Stone_Platform_02.bin new file mode 100644 index 0000000..ee6523a Binary files /dev/null and b/assets/models/UpLu_Stone_Platform_02.bin differ diff --git a/assets/models/UpLu_Stone_Platform_02.gltf b/assets/models/UpLu_Stone_Platform_02.gltf new file mode 100644 index 0000000..3616e5d --- /dev/null +++ b/assets/models/UpLu_Stone_Platform_02.gltf @@ -0,0 +1,662 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_emissive_strength" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":534 + }, + "mesh":0, + "name":"UpLu_Stone_Platform_02.001", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + -0.006729804445058107, + 0.2039921134710312, + 0.010812039487063885 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Stone_Platform_02_bcol" + }, + "mesh":1, + "name":"UpLu_Stone_Platform_02_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Stone_Platform_02" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "alphaMode":"BLEND", + "emissiveFactor":[ + 1, + 1, + 1 + ], + "extensions":{ + "KHR_materials_emissive_strength":{ + "emissiveStrength":3 + } + }, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Light_mtl", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0, + 0, + 0, + 1 + ] + } + } + ], + "meshes":[ + { + "name":"Mesh.067", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + }, + { + "name":"Cube.019", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":976, + "max":[ + 50.00968551635742, + 3.6811347007751465, + 59.827999114990234 + ], + "min":[ + -49.47977828979492, + -11.683528900146484, + -60.67934036254883 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":976, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":976, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":2934, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":56, + "max":[ + 43.36397171020508, + -8.0311861038208, + 63.63814163208008 + ], + "min":[ + -50.85670852661133, + -8.0311861038208, + -51.60041809082031 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":56, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":56, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":168, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":24, + "max":[ + 1.2635161876678467, + 0.29749301075935364, + 1.627220869064331 + ], + "min":[ + -1.298490285873413, + -0.09276959300041199, + -1.5304431915283203 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":11712, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":11712, + "byteOffset":11712, + "target":34962 + }, + { + "buffer":0, + "byteLength":7808, + "byteOffset":23424, + "target":34962 + }, + { + "buffer":0, + "byteLength":5868, + "byteOffset":31232, + "target":34963 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":37100, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":37772, + "target":34962 + }, + { + "buffer":0, + "byteLength":448, + "byteOffset":38444, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":38892, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39228, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":39516, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":39804, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":39996, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":40068, + "uri":"UpLu_Stone_Platform_02.bin" + } + ] +} diff --git a/assets/models/UpLu_Wall_Foliage.bin b/assets/models/UpLu_Wall_Foliage.bin new file mode 100644 index 0000000..d8da89a Binary files /dev/null and b/assets/models/UpLu_Wall_Foliage.bin differ diff --git a/assets/models/UpLu_Wall_Foliage.gltf b/assets/models/UpLu_Wall_Foliage.gltf new file mode 100644 index 0000000..55525da --- /dev/null +++ b/assets/models/UpLu_Wall_Foliage.gltf @@ -0,0 +1,548 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":1441 + }, + "mesh":0, + "name":"UpLu_Wall_Foliage.002", + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + -0.08048850297927856, + -0.8348926305770874, + 0.13769255578517914 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Wall_Foliage_bcol" + }, + "mesh":1, + "name":"UpLu_Wall_Foliage_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Wall_Foliage" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.021", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.012", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":15506, + "max":[ + 80.55809020996094, + 37.0760498046875, + 10.376474380493164 + ], + "min":[ + -78.58405303955078, + -76.62344360351562, + -14.924758911132812 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":15506, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":15506, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":31338, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 1.9656870365142822, + 0.10683894157409668, + 0.4012550115585327 + ], + "min":[ + -2.076523542404175, + -2.7811279296875, + -0.24139630794525146 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":186072, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":186072, + "byteOffset":186072, + "target":34962 + }, + { + "buffer":0, + "byteLength":124048, + "byteOffset":372144, + "target":34962 + }, + { + "buffer":0, + "byteLength":62676, + "byteOffset":496192, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":558868, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":559156, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":559444, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":559636, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":559708, + "uri":"UpLu_Wall_Foliage.bin" + } + ] +} diff --git a/assets/models/UpLu_Wall_Foliage_small.bin b/assets/models/UpLu_Wall_Foliage_small.bin new file mode 100644 index 0000000..413f22a Binary files /dev/null and b/assets/models/UpLu_Wall_Foliage_small.bin differ diff --git a/assets/models/UpLu_Wall_Foliage_small.gltf b/assets/models/UpLu_Wall_Foliage_small.gltf new file mode 100644 index 0000000..5214f86 --- /dev/null +++ b/assets/models/UpLu_Wall_Foliage_small.gltf @@ -0,0 +1,548 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":1559 + }, + "mesh":0, + "name":"UpLU_Wall_Foliage_small", + "scale":[ + 0.02094240114092827, + 0.02094240114092827, + 0.02094240114092827 + ], + "translation":[ + 0.004516211804002523, + -0.6586388945579529, + 0.050145041197538376 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLU_Wall_Foliage_small_bcol" + }, + "mesh":1, + "name":"UpLU_Wall_Foliage_small_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Wall_Foliage_small" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Uplu_Atlas_01", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + } + ], + "meshes":[ + { + "name":"Mesh.024", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"Cube.013", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Rough", + "uri":"UpLu_Rough-1.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":4895, + "max":[ + 25.171863555908203, + 35.800315856933594, + 8.368180274963379 + ], + "min":[ + -25.60315704345703, + -64.13101959228516, + -13.15703296661377 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":4895, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":4895, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":10014, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":24, + "max":[ + 0.5316754579544067, + 0.09110569953918457, + 0.2253948301076889 + ], + "min":[ + -0.5316754579544067, + -2.0016963481903076, + -0.2253948301076889 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":58740, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":58740, + "byteOffset":58740, + "target":34962 + }, + { + "buffer":0, + "byteLength":39160, + "byteOffset":117480, + "target":34962 + }, + { + "buffer":0, + "byteLength":20028, + "byteOffset":156640, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":176668, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":176956, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":177244, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":177436, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":177508, + "uri":"UpLu_Wall_Foliage_small.bin" + } + ] +} diff --git a/assets/models/UpLu_Wall_Shelf.bin b/assets/models/UpLu_Wall_Shelf.bin new file mode 100644 index 0000000..3185562 Binary files /dev/null and b/assets/models/UpLu_Wall_Shelf.bin differ diff --git a/assets/models/UpLu_Wall_Shelf.gltf b/assets/models/UpLu_Wall_Shelf.gltf new file mode 100644 index 0000000..bad692a --- /dev/null +++ b/assets/models/UpLu_Wall_Shelf.gltf @@ -0,0 +1,756 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.0.44", + "version":"2.0" + }, + "extensionsUsed":[ + "KHR_materials_specular", + "KHR_materials_ior" + ], + "scene":0, + "scenes":[ + { + "extras":{ + "sun_pos_properties":{ + "show_surface":0, + "show_analemmas":0, + "show_north":0, + "latitude":0.0, + "day_of_year":66, + "sun_object":{}, + "object_collection":{} + }, + "vrm_addon_extension":{ + "vrm0_material_gltf_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_MetallicGlossMap_ST", + "value":"_MetallicGlossMap_ST" + }, + { + "name":"_MetallicGlossMap_ST_S", + "value":"_MetallicGlossMap_ST_S" + }, + { + "name":"_MetallicGlossMap_ST_T", + "value":"_MetallicGlossMap_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ParallaxMap_ST", + "value":"_ParallaxMap_ST" + }, + { + "name":"_ParallaxMap_ST_S", + "value":"_ParallaxMap_ST_S" + }, + { + "name":"_ParallaxMap_ST_T", + "value":"_ParallaxMap_ST_T" + }, + { + "name":"_OcclusionMap_ST", + "value":"_OcclusionMap_ST" + }, + { + "name":"_OcclusionMap_ST_S", + "value":"_OcclusionMap_ST_S" + }, + { + "name":"_OcclusionMap_ST_T", + "value":"_OcclusionMap_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_DetailMask_ST", + "value":"_DetailMask_ST" + }, + { + "name":"_DetailMask_ST_S", + "value":"_DetailMask_ST_S" + }, + { + "name":"_DetailMask_ST_T", + "value":"_DetailMask_ST_T" + }, + { + "name":"_DetailAlbedoMap_ST", + "value":"_DetailAlbedoMap_ST" + }, + { + "name":"_DetailAlbedoMap_ST_S", + "value":"_DetailAlbedoMap_ST_S" + }, + { + "name":"_DetailAlbedoMap_ST_T", + "value":"_DetailAlbedoMap_ST_T" + }, + { + "name":"_DetailNormalMap_ST", + "value":"_DetailNormalMap_ST" + }, + { + "name":"_DetailNormalMap_ST_S", + "value":"_DetailNormalMap_ST_S" + }, + { + "name":"_DetailNormalMap_ST_T", + "value":"_DetailNormalMap_ST_T" + } + ], + "vrm0_material_mtoon0_property_names":[ + { + "name":"_Color", + "value":"_Color" + }, + { + "name":"_ShadeColor", + "value":"_ShadeColor" + }, + { + "name":"_MainTex_ST", + "value":"_MainTex_ST" + }, + { + "name":"_MainTex_ST_S", + "value":"_MainTex_ST_S" + }, + { + "name":"_MainTex_ST_T", + "value":"_MainTex_ST_T" + }, + { + "name":"_ShadeTexture_ST", + "value":"_ShadeTexture_ST" + }, + { + "name":"_ShadeTexture_ST_S", + "value":"_ShadeTexture_ST_S" + }, + { + "name":"_ShadeTexture_ST_T", + "value":"_ShadeTexture_ST_T" + }, + { + "name":"_BumpMap_ST", + "value":"_BumpMap_ST" + }, + { + "name":"_BumpMap_ST_S", + "value":"_BumpMap_ST_S" + }, + { + "name":"_BumpMap_ST_T", + "value":"_BumpMap_ST_T" + }, + { + "name":"_ReceiveShadowTexture_ST", + "value":"_ReceiveShadowTexture_ST" + }, + { + "name":"_ReceiveShadowTexture_ST_S", + "value":"_ReceiveShadowTexture_ST_S" + }, + { + "name":"_ReceiveShadowTexture_ST_T", + "value":"_ReceiveShadowTexture_ST_T" + }, + { + "name":"_ShadingGradeTexture_ST", + "value":"_ShadingGradeTexture_ST" + }, + { + "name":"_ShadingGradeTexture_ST_S", + "value":"_ShadingGradeTexture_ST_S" + }, + { + "name":"_ShadingGradeTexture_ST_T", + "value":"_ShadingGradeTexture_ST_T" + }, + { + "name":"_RimColor", + "value":"_RimColor" + }, + { + "name":"_RimTexture_ST", + "value":"_RimTexture_ST" + }, + { + "name":"_RimTexture_ST_S", + "value":"_RimTexture_ST_S" + }, + { + "name":"_RimTexture_ST_T", + "value":"_RimTexture_ST_T" + }, + { + "name":"_SphereAdd_ST", + "value":"_SphereAdd_ST" + }, + { + "name":"_SphereAdd_ST_S", + "value":"_SphereAdd_ST_S" + }, + { + "name":"_SphereAdd_ST_T", + "value":"_SphereAdd_ST_T" + }, + { + "name":"_EmissionColor", + "value":"_EmissionColor" + }, + { + "name":"_EmissionMap_ST", + "value":"_EmissionMap_ST" + }, + { + "name":"_EmissionMap_ST_S", + "value":"_EmissionMap_ST_S" + }, + { + "name":"_EmissionMap_ST_T", + "value":"_EmissionMap_ST_T" + }, + { + "name":"_OutlineWidthTexture_ST", + "value":"_OutlineWidthTexture_ST" + }, + { + "name":"_OutlineWidthTexture_ST_S", + "value":"_OutlineWidthTexture_ST_S" + }, + { + "name":"_OutlineWidthTexture_ST_T", + "value":"_OutlineWidthTexture_ST_T" + }, + { + "name":"_OutlineColor", + "value":"_OutlineColor" + }, + { + "name":"_UvAnimMaskTexture_ST", + "value":"_UvAnimMaskTexture_ST" + }, + { + "name":"_UvAnimMaskTexture_ST_S", + "value":"_UvAnimMaskTexture_ST_S" + }, + { + "name":"_UvAnimMaskTexture_ST_T", + "value":"_UvAnimMaskTexture_ST_T" + } + ] + }, + "puresky_properties":{ + "int_flag_updt_camera":1 + }, + "muv_pack_uv_enabled":0, + "handy_toolset_props":{}, + "retopo_target":{}, + "uuid":"eb44b635-cf8f-407b-8bcb-3687f5cabf28", + "assets reported":{}, + "recast_navmesh":{}, + "HubsComponentsExtensionImportProperties":{}, + "assets used":{}, + "created_collider":{} + }, + "name":"Scene", + "nodes":[ + 2 + ] + } + ], + "nodes":[ + { + "extras":{ + "MaxHandle":434 + }, + "mesh":0, + "name":"UpLu_Wall_Shelf.001", + "rotation":[ + 0, + 0.7071068286895752, + 0, + 0.7071068286895752 + ], + "scale":[ + 0.02539999969303608, + 0.02539999969303608, + 0.02539999969303608 + ], + "translation":[ + 0.00017301821208093315, + 0.1139519214630127, + -1.4074131286179181e-05 + ] + }, + { + "extras":{ + "xrengine.EE_collider.shape":"box", + "xrengine.entity":"UpLu_Wall_Shelf.001_bcol" + }, + "mesh":1, + "name":"UpLu_Wall_Shelf.001_bcol" + }, + { + "children":[ + 0, + 1 + ], + "extras":{ + "xrengine.EE_rigidbody.type":"fixed", + "xrengine.entity":"Upscale_Luxury_Props" + }, + "name":"UpLu_Wall_Shelf" + } + ], + "materials":[ + { + "doubleSided":true, + "extensions":{ + "KHR_materials_specular":{ + "specularFactor":0 + }, + "KHR_materials_ior":{ + "ior":1.4500000476837158 + } + }, + "name":"Aurelia_Atlas_02", + "normalTexture":{ + "index":0 + }, + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "metallicRoughnessTexture":{ + "index":2 + } + } + }, + { + "doubleSided":true, + "name":"UpLu_Atlas_Metal", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":3 + }, + "roughnessFactor":0 + } + }, + { + "alphaMode":"BLEND", + "doubleSided":true, + "extras":{ + "vrm_addon_extension":{ + "mtoon1":{ + "pbr_metallic_roughness":{ + "base_color_texture":{} + }, + "normal_texture":{}, + "emissive_texture":{}, + "extensions":{ + "vrmc_materials_mtoon":{ + "shade_multiply_texture":{}, + "shading_shift_texture":{}, + "matcap_texture":{}, + "rim_multiply_texture":{}, + "outline_width_multiply_texture":{}, + "uv_animation_mask_texture":{} + } + } + } + }, + "blenderkit":{} + }, + "name":"Glass", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.8000229597091675, + 0.2857304811477661, + 0.18876983225345612, + 0.30000001192092896 + ], + "metallicFactor":0.6165803074836731, + "roughnessFactor":0 + } + } + ], + "meshes":[ + { + "name":"Mesh.026", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + } + ] + }, + { + "name":"Cube.014", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":3 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_02_Normal", + "uri":"Aurelia_Atlas_02_Normal.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_02_Base_color", + "uri":"Aurelia_Atlas_02_Base_color.png" + }, + { + "mimeType":"image/png", + "name":"Aurelia_Atlas_02_Roughness", + "uri":"Aurelia_Atlas_02_Roughness.png" + }, + { + "mimeType":"image/png", + "name":"UpLu_Diff", + "uri":"UpLu_Diff.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":80, + "max":[ + 22.304893493652344, + 3.074796199798584, + 5.829365253448486 + ], + "min":[ + -22.30600929260254, + -12.047391891479492, + -5.842976093292236 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":80, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":80, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":120, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":576, + "max":[ + 23.518836975097656, + 24.82245445251465, + 6.335999011993408 + ], + "min":[ + -23.526676177978516, + -20.976749420166016, + -5.960631847381592 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":576, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":576, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":2688, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":225, + "max":[ + 23.026817321777344, + 24.330434799194336, + 4.999815940856934 + ], + "min":[ + -23.034656524658203, + -20.48472785949707, + -5.187392711639404 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":225, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":225, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":666, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":24, + "max":[ + 0.16110742092132568, + 0.7444422841072083, + 0.5975635051727295 + ], + "min":[ + -0.15122705698013306, + -0.41885751485824585, + -0.5973925590515137 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":24, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":24, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":36, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":960, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":960, + "target":34962 + }, + { + "buffer":0, + "byteLength":640, + "byteOffset":1920, + "target":34962 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":2560, + "target":34963 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":2800, + "target":34962 + }, + { + "buffer":0, + "byteLength":6912, + "byteOffset":9712, + "target":34962 + }, + { + "buffer":0, + "byteLength":4608, + "byteOffset":16624, + "target":34962 + }, + { + "buffer":0, + "byteLength":5376, + "byteOffset":21232, + "target":34963 + }, + { + "buffer":0, + "byteLength":2700, + "byteOffset":26608, + "target":34962 + }, + { + "buffer":0, + "byteLength":2700, + "byteOffset":29308, + "target":34962 + }, + { + "buffer":0, + "byteLength":1800, + "byteOffset":32008, + "target":34962 + }, + { + "buffer":0, + "byteLength":1332, + "byteOffset":33808, + "target":34963 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35140, + "target":34962 + }, + { + "buffer":0, + "byteLength":288, + "byteOffset":35428, + "target":34962 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":35716, + "target":34962 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":35908, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":35980, + "uri":"UpLu_Wall_Shelf.bin" + } + ] +} diff --git a/assets/models/Walls_01_lightmap-Exhibition_ORM.png b/assets/models/Walls_01_lightmap-Exhibition_ORM.png new file mode 100644 index 0000000..7d10c0f Binary files /dev/null and b/assets/models/Walls_01_lightmap-Exhibition_ORM.png differ diff --git a/assets/models/block_folly_AO.png b/assets/models/block_folly_AO.png new file mode 100644 index 0000000..badcd6c Binary files /dev/null and b/assets/models/block_folly_AO.png differ diff --git a/assets/models/block_folly_Norm.png b/assets/models/block_folly_Norm.png new file mode 100644 index 0000000..00ce456 Binary files /dev/null and b/assets/models/block_folly_Norm.png differ diff --git a/assets/models/block_folly_Rough.png b/assets/models/block_folly_Rough.png new file mode 100644 index 0000000..7f25a5e Binary files /dev/null and b/assets/models/block_folly_Rough.png differ diff --git a/assets/models/oak_wood_sawn_Base02_Color.png b/assets/models/oak_wood_sawn_Base02_Color.png new file mode 100644 index 0000000..fe04783 Binary files /dev/null and b/assets/models/oak_wood_sawn_Base02_Color.png differ diff --git a/assets/models/oak_wood_sawn_Normal.png b/assets/models/oak_wood_sawn_Normal.png new file mode 100644 index 0000000..1086704 Binary files /dev/null and b/assets/models/oak_wood_sawn_Normal.png differ diff --git a/assets/models/oak_wood_sawn_Roughness.png b/assets/models/oak_wood_sawn_Roughness.png new file mode 100644 index 0000000..e676125 Binary files /dev/null and b/assets/models/oak_wood_sawn_Roughness.png differ diff --git a/manifest.json b/manifest.json index 7bf18b4..68603d2 100644 --- a/manifest.json +++ b/manifest.json @@ -3,6 +3,5 @@ "version": "0.0.0", "engineVersion": "1.6.0", "description": "The default project for iR Engine", - "thumbnail": "/static/etherealengine_thumbnail.jpg", - "dependencies": [] + "thumbnail": "/static/etherealengine_thumbnail.jpg" } \ No newline at end of file diff --git a/public/scenes/New-Scene.gltf b/public/scenes/New-Scene.gltf deleted file mode 100644 index 9828575..0000000 --- a/public/scenes/New-Scene.gltf +++ /dev/null @@ -1,562 +0,0 @@ -{ - "asset": { - "generator": "IREngine.SceneExporter", - "version": "2.0" - }, - "nodes": [ - { - "name": "Settings", - "extensions": { - "EE_uuid": "0d5a20e1-abe2-455e-9963-d5e1e19fca19", - "EE_envmapbake": { - "bakePosition": { - "x": 0, - "y": 0, - "z": 0 - }, - "bakePositionOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "bakeScale": { - "x": 1, - "y": 1, - "z": 1 - }, - "bakeType": "Baked", - "resolution": 2048, - "refreshMode": "OnAwake", - "envMapOrigin": "__$project$__/ir-engine/default-project/public/scenes/default.envmap.ktx2", - "boxProjection": true - }, - "EE_fog": { - "type": "linear", - "color": "#FFFFFF", - "density": 0.005, - "near": 1, - "far": 1000, - "timeScale": 1, - "height": 0.05 - }, - "EE_camera_settings": { - "fov": 50, - "cameraNearClip": 0.1, - "cameraFarClip": 1000, - "projectionType": 1, - "minCameraDistance": 1, - "maxCameraDistance": 50, - "startCameraDistance": 3, - "cameraMode": "Dynamic", - "cameraModeDefault": "ThirdPerson", - "minPhi": -70, - "maxPhi": 85 - }, - "EE_postprocessing": { - "enabled": false, - "effects": { - "SSREffect": { - "isActive": false, - "distance": 10, - "thickness": 10, - "autoThickness": false, - "maxRoughness": 1, - "blend": 0.9, - "denoiseIterations": 1, - "denoiseKernel": 2, - "denoiseDiffuse": 10, - "denoiseSpecular": 10, - "depthPhi": 2, - "normalPhi": 50, - "roughnessPhi": 1, - "envBlur": 0.5, - "importanceSampling": true, - "directLightMultiplier": 1, - "steps": 20, - "refineSteps": 5, - "spp": 1, - "resolutionScale": 1, - "missedRays": false - }, - "DepthOfFieldEffect": { - "isActive": false, - "blendFunction": 23, - "focusDistance": 0.02, - "focalLength": 0.5, - "bokehScale": 1 - }, - "BloomEffect": { - "isActive": true, - "blendFunction": 28, - "kernelSize": 2, - "luminanceThreshold": 1, - "luminanceSmoothing": 0.1, - "intensity": 0.2 - }, - "ToneMappingEffect": { - "isActive": false, - "blendFunction": 23, - "adaptive": true, - "resolution": 512, - "middleGrey": 0.6, - "maxLuminance": 32, - "averageLuminance": 1, - "adaptationRate": 2 - }, - "BrightnessContrastEffect": { - "isActive": false, - "brightness": 0.05, - "contrast": 0.1 - }, - "HueSaturationEffect": { - "isActive": false, - "hue": 0, - "saturation": -0.15 - }, - "ColorDepthEffect": { - "isActive": false, - "bits": 16 - }, - "LinearTosRGBEffect": { - "isActive": false - }, - "SSGIEffect": { - "isActive": false, - "distance": 10, - "thickness": 10, - "autoThickness": false, - "maxRoughness": 1, - "blend": 0.9, - "denoiseIterations": 1, - "denoiseKernel": 2, - "denoiseDiffuse": 10, - "denoiseSpecular": 10, - "depthPhi": 2, - "normalPhi": 50, - "roughnessPhi": 1, - "envBlur": 0.5, - "importanceSampling": true, - "directLightMultiplier": 1, - "steps": 20, - "refineSteps": 5, - "spp": 1, - "resolutionScale": 1, - "missedRays": false - }, - "TRAAEffect": { - "isActive": false, - "blend": 0.8, - "constantBlend": true, - "dilation": true, - "blockySampling": false, - "logTransform": false, - "depthDistance": 10, - "worldDistance": 5, - "neighborhoodClamping": true - }, - "MotionBlurEffect": { - "isActive": false, - "intensity": 1, - "jitter": 1, - "samples": 16 - }, - "ChromaticAberrationEffect": { - "isActive": false, - "offset": { - "x": 0.001, - "y": 0.0005 - }, - "radialModulation": false, - "modulationOffset": 0.15 - }, - "ColorAverageEffect": { - "isActive": false, - "blendFunction": 23 - }, - "DotScreenEffect": { - "isActive": false, - "blendFunction": 23, - "angle": 1.5707963267948966, - "scale": 1 - }, - "FXAAEffect": { - "isActive": false, - "blendFunction": 30 - }, - "GlitchEffect": { - "isActive": false, - "blendFunction": 23, - "delay": { - "x": 1.5, - "y": 3.5 - }, - "duration": { - "x": 0.6, - "y": 1 - }, - "strength": { - "x": 0.3, - "y": 1 - }, - "dtSize": 64, - "columns": 0.05, - "ratio": 0.85 - }, - "GridEffect": { - "isActive": false, - "blendFunction": 24, - "scale": 1, - "lineWidth": 0 - }, - "LensDistortionEffect": { - "isActive": false, - "distortion": { - "x": 0, - "y": 0 - }, - "principalPoint": { - "x": 0, - "y": 0 - }, - "focalLength": { - "x": 1, - "y": 1 - }, - "skew": 0 - }, - "LUT1DEffect": { - "isActive": false, - "blendFunction": 30 - }, - "LUT3DEffect": { - "isActive": false, - "blendFunction": 30 - }, - "NoiseEffect": { - "isActive": false, - "blendFunction": 28, - "premultiply": false - }, - "PixelationEffect": { - "isActive": false, - "granularity": 30 - }, - "ScanlineEffect": { - "isActive": false, - "blendFunction": 24, - "density": 1.25, - "scrollSpeed": 0 - }, - "ShockWaveEffect": { - "isActive": false, - "position": { - "x": 0, - "y": 0, - "z": 0 - }, - "speed": 2, - "maxRadius": 1, - "waveSize": 0.2, - "amplitude": 0.05 - }, - "TextureEffect": { - "isActive": false, - "blendFunction": 23, - "aspectCorrection": false - }, - "TiltShiftEffect": { - "isActive": false, - "blendFunction": 23, - "offset": 0, - "rotation": 0, - "focusArea": 0.4, - "feather": 0.3, - "kernelSize": 2, - "resolutionScale": 0.5, - "resolutionX": -1, - "resolutionY": -1 - }, - "VignetteEffect": { - "isActive": false, - "blendFunction": 23, - "technique": 0, - "eskil": false, - "offset": 0.5, - "darkness": 0.5 - }, - "SMAAEffect": { - "isActive": false, - "preset": 1, - "edgeDetectionMode": 2, - "predicationMode": 0 - }, - "SSAOEffect": { - "isActive": true, - "blendFunction": 21, - "distanceScaling": true, - "depthAwareUpsampling": true, - "samples": 9, - "rings": 7, - "distanceThreshold": 0.97, - "distanceFalloff": 0.03, - "rangeThreshold": 0.0005, - "rangeFalloff": 0.001, - "minRadiusScale": 0.1, - "luminanceInfluence": 0.7, - "bias": 0.025, - "radius": 0.1825, - "intensity": 1, - "fade": 0.01, - "resolutionScale": 1, - "resolutionX": -1, - "resolutionY": -1, - "width": -1, - "height": -1, - "blur": false, - "kernelSize": 1 - } - } - }, - "EE_render_settings": { - "primaryLight": "cb045cfd-8daf-4a2b-b764-35625be54a11", - "csm": true, - "cascades": 3, - "toneMapping": 1, - "toneMappingExposure": 0.8, - "shadowMapType": 2 - }, - "EE_scene_settings": { - "thumbnailURL": "__$project$__/ir-engine/default-project/public/scenes/default.thumbnail.jpg", - "loadingScreenURL": "__$project$__/ir-engine/default-project/public/scenes/default.loadingscreen.ktx2", - "primaryColor": "#B3B3B3", - "backgroundColor": "#2C2C2C", - "alternativeColor": "#A1A1A1", - "sceneKillHeight": -10, - "spectateEntity": "" - }, - "EE_visible": true - } - }, - { - "name": "scene preview camera", - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 2.5, - 5, - 1 - ], - "extensions": { - "EE_uuid": "bb362197-f14d-4da7-9c3c-1ed834386423", - "EE_scene_preview_camera": {} - } - }, - { - "name": "Skybox", - "extensions": { - "EE_uuid": "e7d6bfb1-6390-4a8b-b744-da83b059c2d3", - "EE_visible": true, - "EE_skybox": { - "backgroundColor": 3026478, - "equirectangularPath": "__$project$__/ir-engine/default-project/assets/generic_midday_02.ktx2?hash=19535b", - "cubemapPath": "__$project$__/ir-engine/default-project/assets/skyboxsun25deg/", - "backgroundType": 2, - "skyboxProps": { - "turbidity": 10, - "rayleigh": 1, - "luminance": 1, - "mieCoefficient": 0.004999999999999893, - "mieDirectionalG": 0.99, - "inclination": 0.10471975511965978, - "azimuth": 0.20833333333333334 - } - } - } - }, - { - "name": "spawn point", - "matrix": [ - -1, - 1.0106430996148606e-15, - -1.224646852585167e-16, - 0, - 1.0106430996148606e-15, - 1, - 1.2246467991473547e-16, - 0, - 1.2246468525851686e-16, - 1.2246467991473532e-16, - -1, - 0, - 0, - 0, - 0, - 1 - ], - "extensions": { - "EE_uuid": "3e8a430e-9dcf-440e-990c-44ecb8051762", - "EE_visible": true, - "EE_spawn_point": { - "permissionedUsers": [] - } - } - }, - { - "name": "hemisphere light", - "extensions": { - "EE_uuid": "f77dc4c6-c9a6-433d-8102-4a9a8e1c0ce9", - "EE_visible": true, - "EE_hemisphere_light": { - "skyColor": 16777215, - "groundColor": 16777215, - "intensity": 1 - } - } - }, - { - "name": "directional light", - "matrix": [ - 0.8201518642540717, - 0.2860729507918132, - -0.49549287218469207, - 0, - -2.135677357184562e-9, - 0.866025399522099, - 0.5000000073825887, - 0, - 0.5721458901019657, - -0.41007593712366663, - 0.7102723465203862, - 0, - 0, - 0, - 0, - 1 - ], - "extensions": { - "EE_uuid": "cb045cfd-8daf-4a2b-b764-35625be54a11", - "EE_directional_light": { - "color": 16777215, - "intensity": 1, - "castShadow": true, - "shadowBias": -0.00001, - "shadowRadius": 1, - "cameraFar": 50 - }, - "EE_visible": true - } - }, - { - "name": "platform", - "extensions": { - "EE_uuid": "685c48da-e2a0-4a9a-af7c-c5a3c187c99a", - "EE_model": { - "src": "__$project$__/ir-engine/default-project/assets/platform.glb", - "cameraOcclusion": true, - "applyColliders": false, - "shape": "box" - }, - "EE_visible": true, - "EE_shadow": { - "cast": true, - "receive": true - }, - "EE_envmap": { - "type": "Skybox", - "envMapSourceColor": 4095, - "envMapSourceURL": "", - "envMapCubemapURL": "", - "envMapSourceEntityUUID": "", - "envMapIntensity": 1 - } - } - }, - { - "name": "Aur_Chair", - "matrix": [ - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 1, - 0, - 1, - 0, - 1.5, - 1 - ], - "extensions": { - "EE_uuid": "81502bec-fa68-45a1-bd4c-5eb19691f516", - "EE_model": { - "src": "__$project$__/ir-engine/ir-props/assets/models/Aurelia_Props/Aur_Chair.gltf?hash=ab44bc", - "cameraOcclusion": true, - "applyColliders": false, - "shape": "box" - }, - "EE_shadow": { - "cast": true, - "receive": true - }, - "EE_envmap": { - "type": "Skybox", - "envMapSourceColor": 8421631, - "envMapSourceURL": "", - "envMapCubemapURL": "", - "envMapSourceEntityUUID": "", - "envMapIntensity": 1 - }, - "EE_visible": true - } - } - ], - "scene": 0, - "scenes": [ - { - "nodes": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - } - ], - "extensionsUsed": [ - "EE_uuid", - "EE_envmapbake", - "EE_fog", - "EE_camera_settings", - "EE_postprocessing", - "EE_render_settings", - "EE_scene_settings", - "EE_visible", - "EE_scene_preview_camera", - "EE_skybox", - "EE_spawn_point", - "EE_hemisphere_light", - "EE_directional_light", - "EE_model", - "EE_shadow", - "EE_envmap" - ] -} \ No newline at end of file diff --git a/public/thumbnails/02927bc91d031373116cfbfc4879dc4106c9f77aac5caf.png b/public/thumbnails/02927bc91d031373116cfbfc4879dc4106c9f77aac5caf.png new file mode 100644 index 0000000..390f5ae Binary files /dev/null and b/public/thumbnails/02927bc91d031373116cfbfc4879dc4106c9f77aac5caf.png differ diff --git a/public/thumbnails/0ca9aa5409a223e3cc3d97b91f189fbefcc6b8daca970d.png b/public/thumbnails/0ca9aa5409a223e3cc3d97b91f189fbefcc6b8daca970d.png new file mode 100644 index 0000000..2fb294b Binary files /dev/null and b/public/thumbnails/0ca9aa5409a223e3cc3d97b91f189fbefcc6b8daca970d.png differ diff --git a/public/thumbnails/1140b8c01eba4aa47b2cabbca0e9fe00d1d425581efdc4.png b/public/thumbnails/1140b8c01eba4aa47b2cabbca0e9fe00d1d425581efdc4.png new file mode 100644 index 0000000..bc3b490 Binary files /dev/null and b/public/thumbnails/1140b8c01eba4aa47b2cabbca0e9fe00d1d425581efdc4.png differ diff --git a/public/thumbnails/15b3de77eb9d6a6d212ecbbaf8c23786eebe17ff4df57f.png b/public/thumbnails/15b3de77eb9d6a6d212ecbbaf8c23786eebe17ff4df57f.png new file mode 100644 index 0000000..1a3799e Binary files /dev/null and b/public/thumbnails/15b3de77eb9d6a6d212ecbbaf8c23786eebe17ff4df57f.png differ diff --git a/public/thumbnails/20ce2fe41a7a51cc64c62d83efef83779ebaf74e29f045.png b/public/thumbnails/20ce2fe41a7a51cc64c62d83efef83779ebaf74e29f045.png new file mode 100644 index 0000000..7727863 Binary files /dev/null and b/public/thumbnails/20ce2fe41a7a51cc64c62d83efef83779ebaf74e29f045.png differ diff --git a/public/thumbnails/2ee894f278fd7763538190b34465bd62f243756296c458.png b/public/thumbnails/2ee894f278fd7763538190b34465bd62f243756296c458.png new file mode 100644 index 0000000..fe76c62 Binary files /dev/null and b/public/thumbnails/2ee894f278fd7763538190b34465bd62f243756296c458.png differ diff --git a/public/thumbnails/30561a25d85a3f5bc4536a2489e3c587e86e86c717c98e.png b/public/thumbnails/30561a25d85a3f5bc4536a2489e3c587e86e86c717c98e.png new file mode 100644 index 0000000..198d128 Binary files /dev/null and b/public/thumbnails/30561a25d85a3f5bc4536a2489e3c587e86e86c717c98e.png differ diff --git a/public/thumbnails/32eb4a39a2ca09da43cf1271c6f16bd403bef2b7eb71c3.png b/public/thumbnails/32eb4a39a2ca09da43cf1271c6f16bd403bef2b7eb71c3.png new file mode 100644 index 0000000..11f6e4b Binary files /dev/null and b/public/thumbnails/32eb4a39a2ca09da43cf1271c6f16bd403bef2b7eb71c3.png differ diff --git a/public/thumbnails/3ae56d8f75d9f6aae1c03245e8c63cab4def8e7d94cbd9.png b/public/thumbnails/3ae56d8f75d9f6aae1c03245e8c63cab4def8e7d94cbd9.png new file mode 100644 index 0000000..a6c2647 Binary files /dev/null and b/public/thumbnails/3ae56d8f75d9f6aae1c03245e8c63cab4def8e7d94cbd9.png differ diff --git a/public/thumbnails/408698ed4ee29460689ff54209561e3c851a130019d7f9.png b/public/thumbnails/408698ed4ee29460689ff54209561e3c851a130019d7f9.png new file mode 100644 index 0000000..b399646 Binary files /dev/null and b/public/thumbnails/408698ed4ee29460689ff54209561e3c851a130019d7f9.png differ diff --git a/public/thumbnails/40a08b529a20de177b9ae03526109eec3edea1b2156495.png b/public/thumbnails/40a08b529a20de177b9ae03526109eec3edea1b2156495.png new file mode 100644 index 0000000..61723e0 Binary files /dev/null and b/public/thumbnails/40a08b529a20de177b9ae03526109eec3edea1b2156495.png differ diff --git a/public/thumbnails/419351b5118a29c8890bca5d6e596adcf5a0ee3cddb821.png b/public/thumbnails/419351b5118a29c8890bca5d6e596adcf5a0ee3cddb821.png new file mode 100644 index 0000000..89c4e11 Binary files /dev/null and b/public/thumbnails/419351b5118a29c8890bca5d6e596adcf5a0ee3cddb821.png differ diff --git a/public/thumbnails/4844ebc48ca6cbb43528dcdd83e6d185ba76be8e52d31c.png b/public/thumbnails/4844ebc48ca6cbb43528dcdd83e6d185ba76be8e52d31c.png new file mode 100644 index 0000000..d15e2e4 Binary files /dev/null and b/public/thumbnails/4844ebc48ca6cbb43528dcdd83e6d185ba76be8e52d31c.png differ diff --git a/public/thumbnails/4b68e2e5706314d7ef39bbef6c0eea919ebe4b01048d6c.png b/public/thumbnails/4b68e2e5706314d7ef39bbef6c0eea919ebe4b01048d6c.png new file mode 100644 index 0000000..ccd9eab Binary files /dev/null and b/public/thumbnails/4b68e2e5706314d7ef39bbef6c0eea919ebe4b01048d6c.png differ diff --git a/public/thumbnails/50b0d8a683e36c5c1224a23e357a06aa812ee79161e90a.png b/public/thumbnails/50b0d8a683e36c5c1224a23e357a06aa812ee79161e90a.png new file mode 100644 index 0000000..8cb8a68 Binary files /dev/null and b/public/thumbnails/50b0d8a683e36c5c1224a23e357a06aa812ee79161e90a.png differ diff --git a/public/thumbnails/5782c463279e195b1879601001861c59f8a7db85dba6b9.png b/public/thumbnails/5782c463279e195b1879601001861c59f8a7db85dba6b9.png new file mode 100644 index 0000000..123d54e Binary files /dev/null and b/public/thumbnails/5782c463279e195b1879601001861c59f8a7db85dba6b9.png differ diff --git a/public/thumbnails/57d89ae08ec04230e0da363a973ed7cf11c847523bff03.png b/public/thumbnails/57d89ae08ec04230e0da363a973ed7cf11c847523bff03.png new file mode 100644 index 0000000..160bfac Binary files /dev/null and b/public/thumbnails/57d89ae08ec04230e0da363a973ed7cf11c847523bff03.png differ diff --git a/public/thumbnails/5ef77ce20e08de4deb25e860d335941f592f8748496327.png b/public/thumbnails/5ef77ce20e08de4deb25e860d335941f592f8748496327.png new file mode 100644 index 0000000..0488cc5 Binary files /dev/null and b/public/thumbnails/5ef77ce20e08de4deb25e860d335941f592f8748496327.png differ diff --git a/public/thumbnails/680ff73c1b24753e28c4815286bed6ce205364c9f7c2b5.png b/public/thumbnails/680ff73c1b24753e28c4815286bed6ce205364c9f7c2b5.png new file mode 100644 index 0000000..11807bd Binary files /dev/null and b/public/thumbnails/680ff73c1b24753e28c4815286bed6ce205364c9f7c2b5.png differ diff --git a/public/thumbnails/6fc4e2a7bdee52a8d16c5b5666692cd1ca8a98421e4ffe.png b/public/thumbnails/6fc4e2a7bdee52a8d16c5b5666692cd1ca8a98421e4ffe.png new file mode 100644 index 0000000..1ef01b4 Binary files /dev/null and b/public/thumbnails/6fc4e2a7bdee52a8d16c5b5666692cd1ca8a98421e4ffe.png differ diff --git a/public/thumbnails/7f98ae66a63f9d0a086732dc16f3b4110ecc883043966a.png b/public/thumbnails/7f98ae66a63f9d0a086732dc16f3b4110ecc883043966a.png new file mode 100644 index 0000000..4eed014 Binary files /dev/null and b/public/thumbnails/7f98ae66a63f9d0a086732dc16f3b4110ecc883043966a.png differ diff --git a/public/thumbnails/893e4ee47a8814b7d94becfddc8754a78983f63d0a87ff.png b/public/thumbnails/893e4ee47a8814b7d94becfddc8754a78983f63d0a87ff.png new file mode 100644 index 0000000..d6a3d46 Binary files /dev/null and b/public/thumbnails/893e4ee47a8814b7d94becfddc8754a78983f63d0a87ff.png differ diff --git a/public/thumbnails/8f418b007845d57fe0f0b2f4ce38b82c8b8f88201eea77.png b/public/thumbnails/8f418b007845d57fe0f0b2f4ce38b82c8b8f88201eea77.png new file mode 100644 index 0000000..56f4d2c Binary files /dev/null and b/public/thumbnails/8f418b007845d57fe0f0b2f4ce38b82c8b8f88201eea77.png differ diff --git a/public/thumbnails/New-Scene.thumbnail.jpg b/public/thumbnails/New-Scene.thumbnail.jpg deleted file mode 100644 index e0ba406..0000000 Binary files a/public/thumbnails/New-Scene.thumbnail.jpg and /dev/null differ diff --git a/public/thumbnails/a89d78cb6f7da93f8ab37d105ec115811ff95eba3fb4c0.png b/public/thumbnails/a89d78cb6f7da93f8ab37d105ec115811ff95eba3fb4c0.png new file mode 100644 index 0000000..ab61437 Binary files /dev/null and b/public/thumbnails/a89d78cb6f7da93f8ab37d105ec115811ff95eba3fb4c0.png differ diff --git a/public/thumbnails/ab87303af2b6851d9ceaca8d75f817367444500524ac88.png b/public/thumbnails/ab87303af2b6851d9ceaca8d75f817367444500524ac88.png new file mode 100644 index 0000000..c5e9463 Binary files /dev/null and b/public/thumbnails/ab87303af2b6851d9ceaca8d75f817367444500524ac88.png differ diff --git a/public/thumbnails/ae7eccf278226aeca1ef3b33c6eaeb7b8fcddb70e10550.png b/public/thumbnails/ae7eccf278226aeca1ef3b33c6eaeb7b8fcddb70e10550.png new file mode 100644 index 0000000..05f0000 Binary files /dev/null and b/public/thumbnails/ae7eccf278226aeca1ef3b33c6eaeb7b8fcddb70e10550.png differ diff --git a/public/thumbnails/c0aa545a0c1488f6de214df0a8b4e221ab9daa79d2aa75.png b/public/thumbnails/c0aa545a0c1488f6de214df0a8b4e221ab9daa79d2aa75.png new file mode 100644 index 0000000..0272b5c Binary files /dev/null and b/public/thumbnails/c0aa545a0c1488f6de214df0a8b4e221ab9daa79d2aa75.png differ diff --git a/public/thumbnails/c37bacf599df556e67a5e7c351d988c90745fd6326efff.png b/public/thumbnails/c37bacf599df556e67a5e7c351d988c90745fd6326efff.png new file mode 100644 index 0000000..d1badb1 Binary files /dev/null and b/public/thumbnails/c37bacf599df556e67a5e7c351d988c90745fd6326efff.png differ diff --git a/public/thumbnails/c9f61152034152e72ac961329ef3b998a5b6337d63e32c.png b/public/thumbnails/c9f61152034152e72ac961329ef3b998a5b6337d63e32c.png new file mode 100644 index 0000000..eeefc61 Binary files /dev/null and b/public/thumbnails/c9f61152034152e72ac961329ef3b998a5b6337d63e32c.png differ diff --git a/public/thumbnails/d77525414dd025f886c81f08cdb3c7c1967f15044eeb00.png b/public/thumbnails/d77525414dd025f886c81f08cdb3c7c1967f15044eeb00.png new file mode 100644 index 0000000..27f3c1d Binary files /dev/null and b/public/thumbnails/d77525414dd025f886c81f08cdb3c7c1967f15044eeb00.png differ diff --git a/public/thumbnails/d946bf4b5d74382811915340ae71aa45161cd674f7ab85.png b/public/thumbnails/d946bf4b5d74382811915340ae71aa45161cd674f7ab85.png new file mode 100644 index 0000000..65f64ce Binary files /dev/null and b/public/thumbnails/d946bf4b5d74382811915340ae71aa45161cd674f7ab85.png differ diff --git a/public/thumbnails/de19000d180c06a2cce6488248b2e0bc20254a9b55e811.png b/public/thumbnails/de19000d180c06a2cce6488248b2e0bc20254a9b55e811.png new file mode 100644 index 0000000..ad48c6a Binary files /dev/null and b/public/thumbnails/de19000d180c06a2cce6488248b2e0bc20254a9b55e811.png differ diff --git a/public/thumbnails/f13a138155a0906e0260751723e20372e85407634e224b.png b/public/thumbnails/f13a138155a0906e0260751723e20372e85407634e224b.png new file mode 100644 index 0000000..d769236 Binary files /dev/null and b/public/thumbnails/f13a138155a0906e0260751723e20372e85407634e224b.png differ diff --git a/public/thumbnails/f8fc22919bb977aa20aa1f04711e67bbec2a943af1c717.png b/public/thumbnails/f8fc22919bb977aa20aa1f04711e67bbec2a943af1c717.png new file mode 100644 index 0000000..3d14ca1 Binary files /dev/null and b/public/thumbnails/f8fc22919bb977aa20aa1f04711e67bbec2a943af1c717.png differ diff --git a/public/thumbnails/fa55f07c22e9dce93bf8ad5fc8b0519a7cd1d10f86412c.png b/public/thumbnails/fa55f07c22e9dce93bf8ad5fc8b0519a7cd1d10f86412c.png new file mode 100644 index 0000000..28d1da7 Binary files /dev/null and b/public/thumbnails/fa55f07c22e9dce93bf8ad5fc8b0519a7cd1d10f86412c.png differ diff --git a/resources.json b/resources.json index 37a0ccb..acd85f5 100644 --- a/resources.json +++ b/resources.json @@ -4,8 +4,7 @@ "tags": [ "unknown" ], - "dependencies": [], - "name": "Architectural_Model_Lamp_Legs.002.bin" + "dependencies": [] }, "assets/models/Architectural_Model_Lamp_Legs.002.gltf": { "type": "asset", @@ -16,12 +15,19 @@ "lamp" ], "dependencies": [], - "name": "Architectural_Model_Lamp_Legs.002.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsArchitectural_Model_Lamp_Legs.002.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.48, - "height": 4.4, - "depth": 2.54 + "thumbnailMode": "automatic" + }, + "assets/models/Aur_CenterRack.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Aurelia Clothing Rack", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/419351b5118a29c8890bca5d6e596adcf5a0ee3cddb821.png", + "thumbnailMode": "automatic" }, "assets/models/Aur_Chair.gltf": { "type": "asset", @@ -83,7 +89,9 @@ "Image" ], "dependencies": [], - "name": "Aurelia_Atlas_01_base_color.png" + "name": "Aurelia_Atlas_01_base_color.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/57d89ae08ec04230e0da363a973ed7cf11c847523bff03.png", + "thumbnailMode": "automatic" }, "assets/models/Aurelia_Atlas_01_normal.png": { "type": "asset", @@ -92,7 +100,7 @@ ], "dependencies": [], "name": "Aurelia_Atlas_01_normal.png", - "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/cd51da833a40e73383b5064fda6477115880059a8ce098.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/3ae56d8f75d9f6aae1c03245e8c63cab4def8e7d94cbd9.png", "thumbnailMode": "automatic" }, "assets/models/Aurelia_Atlas_01_ORM.png": { @@ -103,6 +111,16 @@ "dependencies": [], "name": "Aurelia_Atlas_01_ORM.png" }, + "assets/models/Aurelia_Atlas_01_Roughness.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Aurelia_Atlas_01_Roughness.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/408698ed4ee29460689ff54209561e3c851a130019d7f9.png", + "thumbnailMode": "automatic" + }, "assets/models/Aurelia_Atlas_02_Base_color.png": { "type": "asset", "tags": [ @@ -110,7 +128,7 @@ ], "dependencies": [], "name": "Aurelia_Atlas_02_Base_color.png", - "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/cbf5d853029d0a74de5468d1fca1ad79b1f89f4bb4a546.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/5ef77ce20e08de4deb25e860d335941f592f8748496327.png", "thumbnailMode": "automatic" }, "assets/models/Aurelia_Atlas_02_Normal_OpenGL.png": { @@ -123,16 +141,24 @@ "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/edc261aa0644c7f620ddc50064482eabdb617c3a9e1f33.png", "thumbnailMode": "automatic" }, - "assets/models/Aurelia_Atlas_02_Roughness.png": { + "assets/models/Aurelia_Atlas_02_Normal.png": { "type": "asset", "tags": [ "Image" ], "dependencies": [], - "name": "Aurelia_Atlas_02_Roughness.png", - "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/8bf2ec0fbb39cc35299c99f430ed85b25b593780710203.png", + "name": "Aurelia_Atlas_02_Normal.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/d77525414dd025f886c81f08cdb3c7c1967f15044eeb00.png", "thumbnailMode": "automatic" }, + "assets/models/Aurelia_Atlas_02_Roughness.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Aurelia_Atlas_02_Roughness.png" + }, "assets/models/Aurelia_Props/Aur_CenterRack.bin": { "type": "asset", "tags": [ @@ -384,8 +410,7 @@ "tags": [ "unknown" ], - "dependencies": [], - "name": "BasicSeat.bin" + "dependencies": [] }, "assets/models/BasicSeat.gltf": { "type": "asset", @@ -397,20 +422,15 @@ "chair" ], "dependencies": [], - "name": "BasicSeat.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsBasicSeat.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.65, - "height": 0.69, - "depth": 0.69 + "thumbnailMode": "automatic" }, "assets/models/Bed_plush.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Bed_plush.001.bin" + "dependencies": [] }, "assets/models/Bed_plush.001.gltf": { "type": "asset", @@ -422,20 +442,15 @@ "bed" ], "dependencies": [], - "name": "Bed_plush.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsBed_plush.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 8.22, - "height": 4.94, - "depth": 7.87 + "thumbnailMode": "automatic" }, "assets/models/Bigrug.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Bigrug.bin" + "dependencies": [] }, "assets/models/Bigrug.gltf": { "type": "asset", @@ -446,20 +461,39 @@ "rug" ], "dependencies": [], - "name": "Bigrug.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsBigrug.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.55, - "height": 0, - "depth": 1.17 + "thumbnailMode": "automatic" + }, + "assets/models/block_folly_AO.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "block_folly_AO.png" + }, + "assets/models/block_folly_Norm.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "block_folly_Norm.png" + }, + "assets/models/block_folly_Rough.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "block_folly_Rough.png" }, "assets/models/bookcase_circle.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "bookcase_circle.bin" + "dependencies": [] }, "assets/models/bookcase_circle.gltf": { "type": "asset", @@ -471,20 +505,15 @@ "bookshelf" ], "dependencies": [], - "name": "bookcase_circle.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsbookcase_circle.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.31, - "height": 1.78, - "depth": 1.78 + "thumbnailMode": "automatic" }, "assets/models/bookcase.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "bookcase.001.bin" + "dependencies": [] }, "assets/models/bookcase.001.gltf": { "type": "asset", @@ -496,20 +525,15 @@ "bookshelf" ], "dependencies": [], - "name": "bookcase.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsbookcase.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.41, - "height": 1.41, - "depth": 2.25 + "thumbnailMode": "automatic" }, "assets/models/bookcase.003.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "bookcase.003.bin" + "dependencies": [] }, "assets/models/bookcase.003.gltf": { "type": "asset", @@ -521,20 +545,15 @@ "bookshelf" ], "dependencies": [], - "name": "bookcase.003.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsbookcase.003.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.88, - "height": 3.62, - "depth": 3.6 + "thumbnailMode": "automatic" }, "assets/models/bookcase.004.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "bookcase.004.bin" + "dependencies": [] }, "assets/models/bookcase.004.gltf": { "type": "asset", @@ -546,20 +565,15 @@ "bookshelf" ], "dependencies": [], - "name": "bookcase.004.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsbookcase.004.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.8, - "height": 3.81, - "depth": 3.98 + "thumbnailMode": "automatic" }, "assets/models/bookcase.006.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "bookcase.006.bin" + "dependencies": [] }, "assets/models/bookcase.006.gltf": { "type": "asset", @@ -571,20 +585,15 @@ "bookshelf" ], "dependencies": [], - "name": "bookcase.006.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsbookcase.006.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.43, - "height": 2.89, - "depth": 2.04 + "thumbnailMode": "automatic" }, "assets/models/bookcase.008.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "bookcase.008.bin" + "dependencies": [] }, "assets/models/bookcase.008.gltf": { "type": "asset", @@ -596,20 +605,15 @@ "bookshelf" ], "dependencies": [], - "name": "bookcase.008.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsbookcase.008.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.58, - "height": 3.2, - "depth": 1.48 + "thumbnailMode": "automatic" }, "assets/models/bookshelf_tall.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "bookshelf_tall.001.bin" + "dependencies": [] }, "assets/models/bookshelf_tall.001.gltf": { "type": "asset", @@ -621,20 +625,15 @@ "bookshelf" ], "dependencies": [], - "name": "bookshelf_tall.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsbookshelf_tall.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.3, - "height": 1.94, - "depth": 2.01 + "thumbnailMode": "automatic" }, "assets/models/California_office_chair.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "California_office_chair.001.bin" + "dependencies": [] }, "assets/models/California_office_chair.001.gltf": { "type": "asset", @@ -647,20 +646,15 @@ "office" ], "dependencies": [], - "name": "California_office_chair.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCalifornia_office_chair.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.34, - "height": 2.8, - "depth": 2.38 + "thumbnailMode": "automatic" }, "assets/models/Camille_Navy_Velvet_Dining_Chair007.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Camille_Navy_Velvet_Dining_Chair007.001.bin" + "dependencies": [] }, "assets/models/Camille_Navy_Velvet_Dining_Chair007.001.gltf": { "type": "asset", @@ -672,20 +666,15 @@ "chair" ], "dependencies": [], - "name": "Camille_Navy_Velvet_Dining_Chair007.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCamille_Navy_Velvet_Dining_Chair007.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.69, - "height": 2.48, - "depth": 1.51 + "thumbnailMode": "automatic" }, "assets/models/Chair_jungle.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Chair_jungle.bin" + "dependencies": [] }, "assets/models/Chair_jungle.gltf": { "type": "asset", @@ -697,20 +686,15 @@ "chair" ], "dependencies": [], - "name": "Chair_jungle.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsChair_jungle.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.14, - "height": 1.47, - "depth": 1.05 + "thumbnailMode": "automatic" }, "assets/models/Circle_chair.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Circle_chair.001.bin" + "dependencies": [] }, "assets/models/Circle_chair.001.gltf": { "type": "asset", @@ -722,20 +706,15 @@ "chair" ], "dependencies": [], - "name": "Circle_chair.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCircle_chair.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.05, - "height": 0.98, - "depth": 0.87 + "thumbnailMode": "automatic" }, "assets/models/cirlcelamp.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "cirlcelamp.bin" + "dependencies": [] }, "assets/models/cirlcelamp.gltf": { "type": "asset", @@ -747,20 +726,15 @@ "lamp" ], "dependencies": [], - "name": "cirlcelamp.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelscirlcelamp.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.92, - "height": 0.52, - "depth": 0.92 + "thumbnailMode": "automatic" }, "assets/models/Coffee_table_-_2.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Coffee_table_-_2.bin" + "dependencies": [] }, "assets/models/Coffee_table_-_2.gltf": { "type": "asset", @@ -774,20 +748,15 @@ "table" ], "dependencies": [], - "name": "Coffee_table_-_2.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCoffee_table_-_2.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2, - "height": 0.46, - "depth": 1 + "thumbnailMode": "automatic" }, "assets/models/Coffee_table_-_3.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Coffee_table_-_3.bin" + "dependencies": [] }, "assets/models/Coffee_table_-_3.gltf": { "type": "asset", @@ -801,20 +770,15 @@ "table" ], "dependencies": [], - "name": "Coffee_table_-_3.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCoffee_table_-_3.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2, - "height": 0.41, - "depth": 0.88 + "thumbnailMode": "automatic" }, "assets/models/Coffee_table_-_4.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Coffee_table_-_4.bin" + "dependencies": [] }, "assets/models/Coffee_table_-_4.gltf": { "type": "asset", @@ -828,20 +792,15 @@ "table" ], "dependencies": [], - "name": "Coffee_table_-_4.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCoffee_table_-_4.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2, - "height": 0.41, - "depth": 0.62 + "thumbnailMode": "automatic" }, "assets/models/Coffee_Table_-1.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Coffee_Table_-1.bin" + "dependencies": [] }, "assets/models/Coffee_Table_-1.gltf": { "type": "asset", @@ -855,20 +814,15 @@ "table" ], "dependencies": [], - "name": "Coffee_Table_-1.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCoffee_Table_-1.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.99, - "height": 0.51, - "depth": 1.02 + "thumbnailMode": "automatic" }, "assets/models/coffee_table_cubes.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "coffee_table_cubes.001.bin" + "dependencies": [] }, "assets/models/coffee_table_cubes.001.gltf": { "type": "asset", @@ -880,20 +834,15 @@ "table" ], "dependencies": [], - "name": "coffee_table_cubes.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelscoffee_table_cubes.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.12, - "height": 0.43, - "depth": 1.12 + "thumbnailMode": "automatic" }, "assets/models/coffee_table_flat.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "coffee_table_flat.001.bin" + "dependencies": [] }, "assets/models/coffee_table_flat.001.gltf": { "type": "asset", @@ -905,20 +854,15 @@ "table" ], "dependencies": [], - "name": "coffee_table_flat.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelscoffee_table_flat.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.9, - "height": 0.56, - "depth": 0.74 + "thumbnailMode": "automatic" }, "assets/models/Coffee_table.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Coffee_table.bin" + "dependencies": [] }, "assets/models/Coffee_table.gltf": { "type": "asset", @@ -930,20 +874,15 @@ "table" ], "dependencies": [], - "name": "Coffee_table.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCoffee_table.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.89, - "height": 0.32, - "depth": 0.91 + "thumbnailMode": "automatic" }, "assets/models/Couch_padded.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Couch_padded.bin" + "dependencies": [] }, "assets/models/Couch_padded.gltf": { "type": "asset", @@ -955,20 +894,15 @@ "sofa" ], "dependencies": [], - "name": "Couch_padded.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCouch_padded.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.84, - "height": 0.64, - "depth": 2.29 + "thumbnailMode": "automatic" }, "assets/models/cubeLamp.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "cubeLamp.bin" + "dependencies": [] }, "assets/models/cubeLamp.gltf": { "type": "asset", @@ -979,20 +913,15 @@ "lamp" ], "dependencies": [], - "name": "cubeLamp.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelscubeLamp.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.24, - "height": 0.53, - "depth": 0.24 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Chair.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Chair.001.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Chair.001.gltf": { "type": "asset", @@ -1006,20 +935,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Chair.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Chair.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.27, - "height": 1.81, - "depth": 1.11 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Chair.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Chair.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Chair.gltf": { "type": "asset", @@ -1033,20 +957,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Chair.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Chair.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.27, - "height": 1.81, - "depth": 1.11 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Desk.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Desk.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Desk.gltf": { "type": "asset", @@ -1060,20 +979,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Desk.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Desk.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.35, - "height": 1.32, - "depth": 2.49 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Roller_Chair.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Roller_Chair.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Roller_Chair.gltf": { "type": "asset", @@ -1087,20 +1001,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Roller_Chair.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Roller_Chair.gltfhash84b35b-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.49, - "height": 2.05, - "depth": 1.44 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Rug.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Rug.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Rug.gltf": { "type": "asset", @@ -1113,20 +1022,15 @@ "rug" ], "dependencies": [], - "name": "Curved_Colorful_Rug.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Rug.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.67, - "height": 0.03, - "depth": 2.13 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Soft_Chair_01.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Soft_Chair_01.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Soft_Chair_01.gltf": { "type": "asset", @@ -1140,20 +1044,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Soft_Chair_01.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Soft_Chair_01.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.94, - "height": 1.4, - "depth": 1.27 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Soft_Chair_02.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Soft_Chair_02.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Soft_Chair_02.gltf": { "type": "asset", @@ -1167,20 +1066,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Soft_Chair_02.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Soft_Chair_02.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.94, - "height": 1.4, - "depth": 1.27 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Swoop_Desk.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Swoop_Desk.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Swoop_Desk.gltf": { "type": "asset", @@ -1194,20 +1088,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Swoop_Desk.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Swoop_Desk.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.19, - "height": 1.38, - "depth": 3.25 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Table.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Table.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Table.gltf": { "type": "asset", @@ -1221,20 +1110,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Table.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Table.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.98, - "height": 1.04, - "depth": 1.98 + "thumbnailMode": "automatic" }, "assets/models/Curved_Colorful_Wall_Pod.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Curved_Colorful_Wall_Pod.bin" + "dependencies": [] }, "assets/models/Curved_Colorful_Wall_Pod.gltf": { "type": "asset", @@ -1248,20 +1132,15 @@ "furniture" ], "dependencies": [], - "name": "Curved_Colorful_Wall_Pod.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsCurved_Colorful_Wall_Pod.gltfhashb67e35-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.49, - "height": 4.52, - "depth": 1.09 + "thumbnailMode": "automatic" }, "assets/models/curvy_table.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "curvy_table.bin" + "dependencies": [] }, "assets/models/curvy_table.gltf": { "type": "asset", @@ -1273,20 +1152,34 @@ "table" ], "dependencies": [], - "name": "curvy_table.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelscurvy_table.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.66, - "height": 0.35, - "depth": 0.21 + "thumbnailMode": "automatic" + }, + "assets/models/DeSo_Inflatable_Display.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "DeSo_Inflatable_Display.bin" + }, + "assets/models/DeSo_Inflatable_Display.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Inflatable Display", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/c9f61152034152e72ac961329ef3b998a5b6337d63e32c.png", + "thumbnailMode": "automatic" }, "assets/models/Dining_table.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Dining_table.001.bin" + "dependencies": [] }, "assets/models/Dining_table.001.gltf": { "type": "asset", @@ -1300,116 +1193,332 @@ "table" ], "dependencies": [], - "name": "Dining_table.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsDining_table.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 3.04, - "height": 0.74, - "depth": 1.16 + "thumbnailMode": "automatic" }, - "assets/models/Egg_chair_half.001.bin": { - "type": "file", + "assets/models/Dojo_Display_Round.bin": { + "type": "asset", "tags": [ "unknown" ], "dependencies": [], - "name": "Egg_chair_half.001.bin" + "name": "Dojo_Display_Round.bin" }, - "assets/models/Egg_chair_half.001.gltf": { + "assets/models/Dojo_Display_Round.gltf": { "type": "asset", "tags": [ - "Model", - "furniture_cc03", "prop", "furniture", - "chair" + "table", + "Model" ], "dependencies": [], - "name": "Egg_chair_half.001.gltf", - "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsEgg_chair_half.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.01, - "height": 1.1, - "depth": 0.82 + "name": "Dojo Round Table", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/1140b8c01eba4aa47b2cabbca0e9fe00d1d425581efdc4.png", + "thumbnailMode": "automatic" }, - "assets/models/Egg_chair.001.bin": { - "type": "file", + "assets/models/Dojo_Display_Tree.bin": { + "type": "asset", "tags": [ "unknown" ], "dependencies": [], - "name": "Egg_chair.001.bin" + "name": "Dojo_Display_Tree.bin" }, - "assets/models/Egg_chair.001.gltf": { + "assets/models/Dojo_Display_Tree.gltf": { "type": "asset", "tags": [ + "furniture", "Model" ], "dependencies": [], - "name": "Egg_chair.001.gltf", - "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsEgg_chair.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.01, - "height": 1.96, - "depth": 0.84 + "name": "Dojo Display Tree", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/de19000d180c06a2cce6488248b2e0bc20254a9b55e811.png", + "thumbnailMode": "automatic" }, - "assets/models/Floria_Velvet_CHair_001.002.bin": { - "type": "file", + "assets/models/Dojo_Display.gltf": { + "type": "asset", "tags": [ - "unknown" + "prop", + "furniture", + "Model" ], "dependencies": [], - "name": "Floria_Velvet_CHair_001.002.bin" + "name": "Dojo Display", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/15b3de77eb9d6a6d212ecbbaf8c23786eebe17ff4df57f.png", + "thumbnailMode": "automatic" }, - "assets/models/Floria_Velvet_CHair_001.002.gltf": { + "assets/models/Dojo_Table.gltf": { "type": "asset", "tags": [ - "Model", - "furniture_cc02", - "prop", "furniture", - "chair" + "table", + "Model" ], "dependencies": [], - "name": "Floria_Velvet_CHair_001.002.gltf", - "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsFloria_Velvet_CHair_001.002.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.82, - "height": 0.86, - "depth": 0.88 + "name": "Dojo Table", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/32eb4a39a2ca09da43cf1271c6f16bd403bef2b7eb71c3.png", + "thumbnailMode": "automatic" }, - "assets/models/folded_shelf.001.bin": { + "assets/models/Egg_chair_half.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "folded_shelf.001.bin" + "dependencies": [] }, - "assets/models/folded_shelf.001.gltf": { + "assets/models/Egg_chair_half.001.gltf": { "type": "asset", "tags": [ "Model", - "furniture_cc02", + "furniture_cc03", "prop", "furniture", - "bookshelf" + "chair" + ], + "dependencies": [], + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsEgg_chair_half.001.gltf-thumbnail.png", + "thumbnailMode": "automatic" + }, + "assets/models/Egg_chair.001.bin": { + "type": "file", + "tags": [ + "unknown" + ], + "dependencies": [] + }, + "assets/models/Egg_chair.001.gltf": { + "type": "asset", + "tags": [ + "Model" + ], + "dependencies": [], + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsEgg_chair.001.gltf-thumbnail.png", + "thumbnailMode": "automatic" + }, + "assets/models/Elevated_Minimalist_Props.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "Elevated_Minimalist_Props.bin" + }, + "assets/models/ElMi_Chair.gltf": { + "type": "asset", + "tags": [ + "Model" + ], + "dependencies": [], + "name": "ElMi_Chair.gltf", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/d946bf4b5d74382811915340ae71aa45161cd674f7ab85.png", + "thumbnailMode": "automatic" + }, + "assets/models/ElMi_Loveseat.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "ElMi_Loveseat.bin" + }, + "assets/models/ElMi_Loveseat.gltf": { + "type": "asset", + "tags": [ + "prop", + "furniture", + "chair", + "Model" + ], + "dependencies": [], + "name": "Minimalist Loveseat", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ae7eccf278226aeca1ef3b33c6eaeb7b8fcddb70e10550.png", + "thumbnailMode": "automatic" + }, + "assets/models/ElMi_Sofa.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "ElMi_Sofa.bin" + }, + "assets/models/ElMi_Sofa.gltf": { + "type": "asset", + "tags": [ + "furniture", + "prop", + "Model" + ], + "dependencies": [], + "name": "Minimalist Sofa", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/a89d78cb6f7da93f8ab37d105ec115811ff95eba3fb4c0.png", + "thumbnailMode": "automatic" + }, + "assets/models/ElMi_Table_Round.gltf": { + "type": "asset", + "tags": [ + "prop", + "table", + "Model" + ], + "dependencies": [], + "name": "Minimalist Round Table", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/7f98ae66a63f9d0a086732dc16f3b4110ecc883043966a.png", + "thumbnailMode": "automatic" + }, + "assets/models/ElMi_Table_Square.gltf": { + "type": "asset", + "tags": [ + "prop", + "furniture", + "table", + "Model" + ], + "dependencies": [], + "name": "Minimalist Table", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/02927bc91d031373116cfbfc4879dc4106c9f77aac5caf.png", + "thumbnailMode": "automatic" + }, + "assets/models/Exhibition_base_color.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Exhibition_base_color.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/fa55f07c22e9dce93bf8ad5fc8b0519a7cd1d10f86412c.png", + "thumbnailMode": "automatic" + }, + "assets/models/Exhibition_Furn_base_color.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Exhibition_Furn_base_color.png" + }, + "assets/models/Exhibition_normal.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Exhibition_normal.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/f8fc22919bb977aa20aa1f04711e67bbec2a943af1c717.png", + "thumbnailMode": "automatic" + }, + "assets/models/ExRo_Display_Cube.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "ExRo_Display_Cube.bin" + }, + "assets/models/ExRo_Display_Cube.gltf": { + "type": "asset", + "tags": [ + "prop", + "furniture", + "Model" + ], + "dependencies": [], + "name": "Exhibition Room Display", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/c37bacf599df556e67a5e7c351d988c90745fd6326efff.png", + "thumbnailMode": "automatic" + }, + "assets/models/ExRo_Lamp.gltf": { + "type": "asset", + "tags": [ + "prop", + "furniture", + "lamp", + "Model" + ], + "dependencies": [], + "name": "Exhibition Room Lamp", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/40a08b529a20de177b9ae03526109eec3edea1b2156495.png", + "thumbnailMode": "automatic" + }, + "assets/models/ExRo_Long_Light.gltf": { + "type": "asset", + "tags": [ + "prop", + "furniture", + "lamp", + "Model" + ], + "dependencies": [], + "name": "Exhibition Room Pendant Light", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/0ca9aa5409a223e3cc3d97b91f189fbefcc6b8daca970d.png", + "thumbnailMode": "automatic" + }, + "assets/models/ExRo_Podium.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "ExRo_Podium.bin" + }, + "assets/models/ExRo_Podium.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Exhibition Room Podium", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/893e4ee47a8814b7d94becfddc8754a78983f63d0a87ff.png", + "thumbnailMode": "automatic" + }, + "assets/models/Floria_Velvet_CHair_001.002.bin": { + "type": "file", + "tags": [ + "unknown" + ], + "dependencies": [] + }, + "assets/models/Floria_Velvet_CHair_001.002.gltf": { + "type": "asset", + "tags": [ + "Model", + "furniture_cc02", + "prop", + "furniture", + "chair" + ], + "dependencies": [], + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsFloria_Velvet_CHair_001.002.gltf-thumbnail.png", + "thumbnailMode": "automatic" + }, + "assets/models/folded_shelf.001.bin": { + "type": "file", + "tags": [ + "unknown" + ], + "dependencies": [] + }, + "assets/models/folded_shelf.001.gltf": { + "type": "asset", + "tags": [ + "Model", + "furniture_cc02", + "prop", + "furniture", + "bookshelf" ], "dependencies": [], - "name": "folded_shelf.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsfolded_shelf.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.32, - "height": 1.13, - "depth": 0.3 + "thumbnailMode": "automatic" }, "assets/models/gold_sculpture.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "gold_sculpture.bin" + "dependencies": [] }, "assets/models/gold_sculpture.gltf": { "type": "asset", @@ -1421,20 +1530,35 @@ "sculpture" ], "dependencies": [], - "name": "gold_sculpture.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsgold_sculpture.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.27, - "height": 0.27, - "depth": 0.27 + "thumbnailMode": "automatic" + }, + "assets/models/Inflatable_display_Normal.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Inflatable_display_Normal.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/50b0d8a683e36c5c1224a23e357a06aa812ee79161e90a.png", + "thumbnailMode": "automatic" + }, + "assets/models/Inflatable_display_Roughness.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Inflatable_display_Roughness.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/c0aa545a0c1488f6de214df0a8b4e221ab9daa79d2aa75.png", + "thumbnailMode": "automatic" }, "assets/models/large_circular_plinth.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "large_circular_plinth.bin" + "dependencies": [] }, "assets/models/large_circular_plinth.gltf": { "type": "asset", @@ -1447,20 +1571,15 @@ "plinth" ], "dependencies": [], - "name": "large_circular_plinth.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelslarge_circular_plinth.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.69, - "height": 2.36, - "depth": 1.69 + "thumbnailMode": "automatic" }, "assets/models/linelamp.002.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "linelamp.002.bin" + "dependencies": [] }, "assets/models/linelamp.002.gltf": { "type": "asset", @@ -1473,20 +1592,43 @@ "lamp" ], "dependencies": [], - "name": "linelamp.002.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelslinelamp.002.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.05, - "height": 0.54, - "depth": 1.36 + "thumbnailMode": "automatic" + }, + "assets/models/Log_Displays_BaseColor.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Log_Displays_BaseColor.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ab87303af2b6851d9ceaca8d75f817367444500524ac88.png", + "thumbnailMode": "automatic" + }, + "assets/models/Log_Displays_Normal.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Log_Displays_Normal.png", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/4b68e2e5706314d7ef39bbef6c0eea919ebe4b01048d6c.png", + "thumbnailMode": "automatic" + }, + "assets/models/Log_Displays_ORM.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Log_Displays_ORM.png" }, "assets/models/Makeup_console.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Makeup_console.bin" + "dependencies": [] }, "assets/models/Makeup_console.gltf": { "type": "asset", @@ -1498,20 +1640,94 @@ "table" ], "dependencies": [], - "name": "Makeup_console.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsMakeup_console.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.78, - "height": 1.29, - "depth": 0.76 + "thumbnailMode": "automatic" + }, + "assets/models/MeCo_Gravel_Large.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "MeCo_Gravel_Large.bin" + }, + "assets/models/MeCo_Gravel_Large.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Courtyard Gravel Large", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/680ff73c1b24753e28c4815286bed6ce205364c9f7c2b5.png", + "thumbnailMode": "automatic" + }, + "assets/models/MeCo_Gravel_Small.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "MeCo_Gravel_Small.bin" + }, + "assets/models/MeCo_Gravel_Small.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Courtyard Gravel Small", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/20ce2fe41a7a51cc64c62d83efef83779ebaf74e29f045.png", + "thumbnailMode": "automatic" + }, + "assets/models/MeCo_large_Display.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "MeCo_large_Display.bin" + }, + "assets/models/MeCo_large_Display.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Courtyard Large Display", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/f13a138155a0906e0260751723e20372e85407634e224b.png", + "thumbnailMode": "automatic" + }, + "assets/models/MeCo_Medium_Display.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Courtyard Medium Display ", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/5782c463279e195b1879601001861c59f8a7db85dba6b9.png", + "thumbnailMode": "automatic" + }, + "assets/models/MeCo_Small_Display.gltf": { + "type": "asset", + "tags": [ + "prop", + "Model" + ], + "dependencies": [], + "name": "Courtyard Small Display", + "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/30561a25d85a3f5bc4536a2489e3c587e86e86c717c98e.png", + "thumbnailMode": "automatic" }, "assets/models/Midcentury_Chair.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Midcentury_Chair.001.bin" + "dependencies": [] }, "assets/models/Midcentury_Chair.001.gltf": { "type": "asset", @@ -1523,20 +1739,15 @@ "chair" ], "dependencies": [], - "name": "Midcentury_Chair.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsMidcentury_Chair.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.22, - "height": 1.91, - "depth": 1.67 + "thumbnailMode": "automatic" }, "assets/models/midCentury_console.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "midCentury_console.bin" + "dependencies": [] }, "assets/models/midCentury_console.gltf": { "type": "asset", @@ -1548,20 +1759,15 @@ "table" ], "dependencies": [], - "name": "midCentury_console.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsmidCentury_console.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.35, - "height": 0.82, - "depth": 0.4 + "thumbnailMode": "automatic" }, "assets/models/Midcentury_Footstool.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Midcentury_Footstool.001.bin" + "dependencies": [] }, "assets/models/Midcentury_Footstool.001.gltf": { "type": "asset", @@ -1573,20 +1779,15 @@ "chair" ], "dependencies": [], - "name": "Midcentury_Footstool.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsMidcentury_Footstool.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.04, - "height": 1.03, - "depth": 2.09 + "thumbnailMode": "automatic" }, "assets/models/Midcentury_rug.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Midcentury_rug.001.bin" + "dependencies": [] }, "assets/models/Midcentury_rug.001.gltf": { "type": "asset", @@ -1597,20 +1798,15 @@ "rug" ], "dependencies": [], - "name": "Midcentury_rug.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsMidcentury_rug.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 4.47, - "height": 0.04, - "depth": 4.02 + "thumbnailMode": "automatic" }, "assets/models/mirabel_98_pewter.002.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "mirabel_98_pewter.002.bin" + "dependencies": [] }, "assets/models/mirabel_98_pewter.002.gltf": { "type": "asset", @@ -1622,12 +1818,8 @@ "sofa" ], "dependencies": [], - "name": "mirabel_98_pewter.002.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsmirabel_98_pewter.002.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 5.18, - "height": 3.31, - "depth": 9.87 + "thumbnailMode": "automatic" }, "assets/models/model-resources/Egg_chair/buffers/208e0bf817bf7576e72321cfce1334fb0679b9276409215ea1bf8cbe377ea75e.bin": { "type": "file", @@ -1664,13 +1856,84 @@ ], "dependencies": [] }, + "assets/models/MoSt_Wall_Shelf.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "MoSt_Wall_Shelf.bin" + }, + "assets/models/MoSt_Wall_Shelf.gltf": { + "type": "asset", + "tags": [ + "Model" + ], + "dependencies": [], + "name": "MoSt_Wall_Shelf.gltf" + }, + "assets/models/MoSt_Wood_Table.gltf": { + "type": "asset", + "tags": [ + "Model" + ], + "dependencies": [], + "name": "MoSt_Wood_Table.gltf" + }, + "assets/models/Natural_store_trimsheet_1_Base_color.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Natural_store_trimsheet_1_Base_color.png" + }, + "assets/models/Natural_store_trimsheet_1_Normal_OpenGL.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Natural_store_trimsheet_1_Normal_OpenGL.png" + }, + "assets/models/Natural_store_trimsheet_ORM.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "Natural_store_trimsheet_ORM.png" + }, + "assets/models/oak_wood_sawn_Base02_Color.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "oak_wood_sawn_Base02_Color.png" + }, + "assets/models/oak_wood_sawn_Normal.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "oak_wood_sawn_Normal.png" + }, + "assets/models/oak_wood_sawn_Roughness.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "oak_wood_sawn_Roughness.png" + }, "assets/models/Office_-_Computer_1.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Computer_1.001.bin" + "dependencies": [] }, "assets/models/Office_-_Computer_1.001.gltf": { "type": "asset", @@ -1683,20 +1946,15 @@ "computer" ], "dependencies": [], - "name": "Office_-_Computer_1.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Computer_1.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.37, - "height": 0.11, - "depth": 0.37 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Computer_2.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Computer_2.001.bin" + "dependencies": [] }, "assets/models/Office_-_Computer_2.001.gltf": { "type": "asset", @@ -1709,20 +1967,15 @@ "computer" ], "dependencies": [], - "name": "Office_-_Computer_2.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Computer_2.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.37, - "height": 0.12, - "depth": 0.37 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Conference_table_modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Conference_table_modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_Conference_table_modern.001.gltf": { "type": "asset", @@ -1736,20 +1989,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Conference_table_modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Conference_table_modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2, - "height": 1.01, - "depth": 6 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Cubicle_2x2_modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Cubicle_2x2_modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_Cubicle_2x2_modern.001.gltf": { "type": "asset", @@ -1762,20 +2010,15 @@ "cubicle" ], "dependencies": [], - "name": "Office_-_Cubicle_2x2_modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Cubicle_2x2_modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.01, - "height": 1.67, - "depth": 3.04 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Cubicle_6x2_modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Cubicle_6x2_modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_Cubicle_6x2_modern.001.gltf": { "type": "asset", @@ -1788,20 +2031,15 @@ "cubicle" ], "dependencies": [], - "name": "Office_-_Cubicle_6x2_modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Cubicle_6x2_modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.08, - "height": 1.67, - "depth": 6.09 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Desk_1_Modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Desk_1_Modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_Desk_1_Modern.001.gltf": { "type": "asset", @@ -1816,20 +2054,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Desk_1_Modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Desk_1_Modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.85, - "height": 1.2, - "depth": 2.16 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Desk_2_Modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Desk_2_Modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_Desk_2_Modern.001.gltf": { "type": "asset", @@ -1844,20 +2077,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Desk_2_Modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Desk_2_Modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.86, - "height": 0.99, - "depth": 2.11 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Desk_chair_modern_black.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Desk_chair_modern_black.001.bin" + "dependencies": [] }, "assets/models/Office_-_Desk_chair_modern_black.001.gltf": { "type": "asset", @@ -1871,20 +2099,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Desk_chair_modern_black.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Desk_chair_modern_black.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.05, - "height": 1.3, - "depth": 0.95 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Desk_chair_modern_orange.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Desk_chair_modern_orange.001.bin" + "dependencies": [] }, "assets/models/Office_-_Desk_chair_modern_orange.001.gltf": { "type": "asset", @@ -1898,20 +2121,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Desk_chair_modern_orange.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Desk_chair_modern_orange.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.05, - "height": 1.3, - "depth": 0.95 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Desk_chair_modern_white.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Desk_chair_modern_white.001.bin" + "dependencies": [] }, "assets/models/Office_-_Desk_chair_modern_white.001.gltf": { "type": "asset", @@ -1925,20 +2143,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Desk_chair_modern_white.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Desk_chair_modern_white.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.05, - "height": 1.3, - "depth": 0.95 + "thumbnailMode": "automatic" }, "assets/models/Office_-_guest_chair_modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_guest_chair_modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_guest_chair_modern.001.gltf": { "type": "asset", @@ -1952,20 +2165,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_guest_chair_modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_guest_chair_modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.85, - "height": 1.14, - "depth": 0.91 + "thumbnailMode": "automatic" }, "assets/models/Office_-_iMac.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_iMac.001.bin" + "dependencies": [] }, "assets/models/Office_-_iMac.001.gltf": { "type": "asset", @@ -1978,20 +2186,15 @@ "computer" ], "dependencies": [], - "name": "Office_-_iMac.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_iMac.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.24, - "height": 0.8, - "depth": 1.03 + "thumbnailMode": "automatic" }, "assets/models/Office_-_keyboard.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_keyboard.001.bin" + "dependencies": [] }, "assets/models/Office_-_keyboard.001.gltf": { "type": "asset", @@ -2004,20 +2207,15 @@ "computer" ], "dependencies": [], - "name": "Office_-_keyboard.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_keyboard.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.29, - "height": 0.04, - "depth": 0.8 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Leg_chair_modern_black.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Leg_chair_modern_black.001.bin" + "dependencies": [] }, "assets/models/Office_-_Leg_chair_modern_black.001.gltf": { "type": "asset", @@ -2031,20 +2229,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Leg_chair_modern_black.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Leg_chair_modern_black.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.99, - "height": 1.38, - "depth": 0.82 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Leg_chair_modern_orange.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Leg_chair_modern_orange.001.bin" + "dependencies": [] }, "assets/models/Office_-_Leg_chair_modern_orange.001.gltf": { "type": "asset", @@ -2058,20 +2251,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Leg_chair_modern_orange.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Leg_chair_modern_orange.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.99, - "height": 1.38, - "depth": 0.82 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Leg_chair_modern_white.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Leg_chair_modern_white.001.bin" + "dependencies": [] }, "assets/models/Office_-_Leg_chair_modern_white.001.gltf": { "type": "asset", @@ -2085,20 +2273,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Leg_chair_modern_white.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Leg_chair_modern_white.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.99, - "height": 1.38, - "depth": 0.82 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Light_fixture_1.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Light_fixture_1.001.bin" + "dependencies": [] }, "assets/models/Office_-_Light_fixture_1.001.gltf": { "type": "asset", @@ -2111,20 +2294,15 @@ "light" ], "dependencies": [], - "name": "Office_-_Light_fixture_1.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Light_fixture_1.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2, - "height": 0.78, - "depth": 1 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Light_fixture_2.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Light_fixture_2.001.bin" + "dependencies": [] }, "assets/models/Office_-_Light_fixture_2.001.gltf": { "type": "asset", @@ -2137,20 +2315,15 @@ "light" ], "dependencies": [], - "name": "Office_-_Light_fixture_2.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Light_fixture_2.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 4, - "height": 0.78, - "depth": 1 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Monitor.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Monitor.001.bin" + "dependencies": [] }, "assets/models/Office_-_Monitor.001.gltf": { "type": "asset", @@ -2163,20 +2336,15 @@ "computer" ], "dependencies": [], - "name": "Office_-_Monitor.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Monitor.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.31, - "height": 0.8, - "depth": 0.98 + "thumbnailMode": "automatic" }, "assets/models/Office_-_mouse.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_mouse.001.bin" + "dependencies": [] }, "assets/models/Office_-_mouse.001.gltf": { "type": "asset", @@ -2189,20 +2357,15 @@ "computer" ], "dependencies": [], - "name": "Office_-_mouse.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_mouse.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.14, - "height": 0.06, - "depth": 0.07 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Server_farm_modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Server_farm_modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_Server_farm_modern.001.gltf": { "type": "asset", @@ -2215,20 +2378,15 @@ "computer" ], "dependencies": [], - "name": "Office_-_Server_farm_modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Server_farm_modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.01, - "height": 2, - "depth": 0.6 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Shelves_2x3_modern.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Shelves_2x3_modern.001.bin" + "dependencies": [] }, "assets/models/Office_-_Shelves_2x3_modern.001.gltf": { "type": "asset", @@ -2241,20 +2399,15 @@ "shelf" ], "dependencies": [], - "name": "Office_-_Shelves_2x3_modern.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Shelves_2x3_modern.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.1, - "height": 2.19, - "depth": 1.72 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Task_chair_modern_black.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Task_chair_modern_black.001.bin" + "dependencies": [] }, "assets/models/Office_-_Task_chair_modern_black.001.gltf": { "type": "asset", @@ -2268,20 +2421,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Task_chair_modern_black.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Task_chair_modern_black.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.77, - "height": 1.18, - "depth": 0.84 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Task_chair_modern_orange.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Task_chair_modern_orange.001.bin" + "dependencies": [] }, "assets/models/Office_-_Task_chair_modern_orange.001.gltf": { "type": "asset", @@ -2295,20 +2443,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Task_chair_modern_orange.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Task_chair_modern_orange.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.77, - "height": 1.18, - "depth": 0.84 + "thumbnailMode": "automatic" }, "assets/models/Office_-_Task_chair_modern_white.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Office_-_Task_chair_modern_white.001.bin" + "dependencies": [] }, "assets/models/Office_-_Task_chair_modern_white.001.gltf": { "type": "asset", @@ -2322,20 +2465,15 @@ "furniture" ], "dependencies": [], - "name": "Office_-_Task_chair_modern_white.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsOffice_-_Task_chair_modern_white.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.77, - "height": 1.18, - "depth": 0.84 + "thumbnailMode": "automatic" }, "assets/models/Pillowpile.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Pillowpile.001.bin" + "dependencies": [] }, "assets/models/Pillowpile.001.gltf": { "type": "asset", @@ -2346,20 +2484,15 @@ "pillow" ], "dependencies": [], - "name": "Pillowpile.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsPillowpile.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.4, - "height": 0.46, - "depth": 0.54 + "thumbnailMode": "automatic" }, "assets/models/Pouf_chair.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Pouf_chair.001.bin" + "dependencies": [] }, "assets/models/Pouf_chair.001.gltf": { "type": "asset", @@ -2371,20 +2504,39 @@ "chair" ], "dependencies": [], - "name": "Pouf_chair.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsPouf_chair.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.61, - "height": 0.56, - "depth": 0.63 + "thumbnailMode": "automatic" + }, + "assets/models/ReNe_Clothing_Wall.gltf": { + "type": "asset", + "tags": [ + "Model" + ], + "dependencies": [], + "name": "ReNe_Clothing_Wall.gltf" + }, + "assets/models/ReNe_Rectangle_Island.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "ReNe_Rectangle_Island.bin" + }, + "assets/models/ReNe_Round_Table.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "ReNe_Round_Table.bin" }, "assets/models/Round_Table.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Round_Table.001.bin" + "dependencies": [] }, "assets/models/Round_Table.001.gltf": { "type": "asset", @@ -2396,20 +2548,15 @@ "table" ], "dependencies": [], - "name": "Round_Table.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsRound_Table.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 5.71, - "height": 2.3, - "depth": 5.71 + "thumbnailMode": "automatic" }, "assets/models/rounded_platform.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "rounded_platform.bin" + "dependencies": [] }, "assets/models/rounded_platform.gltf": { "type": "asset", @@ -2422,20 +2569,15 @@ "platform" ], "dependencies": [], - "name": "rounded_platform.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsrounded_platform.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 2.24, - "height": 5.11, - "depth": 2.45 + "thumbnailMode": "automatic" }, "assets/models/Side_table_-_1.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Side_table_-_1.001.bin" + "dependencies": [] }, "assets/models/Side_table_-_1.001.gltf": { "type": "asset", @@ -2449,20 +2591,15 @@ "table" ], "dependencies": [], - "name": "Side_table_-_1.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsSide_table_-_1.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.19, - "height": 0.59, - "depth": 1.19 + "thumbnailMode": "automatic" }, "assets/models/Side_table_-_2.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Side_table_-_2.001.bin" + "dependencies": [] }, "assets/models/Side_table_-_2.001.gltf": { "type": "asset", @@ -2476,20 +2613,15 @@ "table" ], "dependencies": [], - "name": "Side_table_-_2.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsSide_table_-_2.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.19, - "height": 0.58, - "depth": 1.19 + "thumbnailMode": "automatic" }, "assets/models/Simple_chair.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Simple_chair.bin" + "dependencies": [] }, "assets/models/Simple_chair.gltf": { "type": "asset", @@ -2503,20 +2635,15 @@ "chair" ], "dependencies": [], - "name": "Simple_chair.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsSimple_chair.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.66, - "height": 1.09, - "depth": 0.82 + "thumbnailMode": "automatic" }, "assets/models/smallrug.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "smallrug.001.bin" + "dependencies": [] }, "assets/models/smallrug.001.gltf": { "type": "asset", @@ -2527,20 +2654,15 @@ " rug" ], "dependencies": [], - "name": "smallrug.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelssmallrug.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.99, - "height": 0, - "depth": 0.99 + "thumbnailMode": "automatic" }, "assets/models/squarelamp.002.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "squarelamp.002.bin" + "dependencies": [] }, "assets/models/squarelamp.002.gltf": { "type": "asset", @@ -2553,20 +2675,15 @@ "lamp" ], "dependencies": [], - "name": "squarelamp.002.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelssquarelamp.002.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.8, - "height": 0.54, - "depth": 1.33 + "thumbnailMode": "automatic" }, "assets/models/Standing_shelves_-_1.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Standing_shelves_-_1.001.bin" + "dependencies": [] }, "assets/models/Standing_shelves_-_1.001.gltf": { "type": "asset", @@ -2580,20 +2697,15 @@ "shelf" ], "dependencies": [], - "name": "Standing_shelves_-_1.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsStanding_shelves_-_1.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.85, - "height": 1.39, - "depth": 0.76 + "thumbnailMode": "automatic" }, "assets/models/Standing_shelves_-_2.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Standing_shelves_-_2.001.bin" + "dependencies": [] }, "assets/models/Standing_shelves_-_2.001.gltf": { "type": "asset", @@ -2607,20 +2719,15 @@ "shelf" ], "dependencies": [], - "name": "Standing_shelves_-_2.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsStanding_shelves_-_2.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.44, - "height": 1.39, - "depth": 0.48 + "thumbnailMode": "automatic" }, "assets/models/Storage_box.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Storage_box.bin" + "dependencies": [] }, "assets/models/Storage_box.gltf": { "type": "asset", @@ -2634,12 +2741,8 @@ "shelf" ], "dependencies": [], - "name": "Storage_box.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsStorage_box.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.5, - "height": 0.5, - "depth": 0.5 + "thumbnailMode": "automatic" }, "assets/models/textures/Aurelia_Atlas_01_base_color.png": { "type": "asset", @@ -2705,7 +2808,6 @@ "Image" ], "dependencies": [], - "name": "Colorful_Curved_Trimsheet_Color.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesColorful_Curved_Trimsheet_Color.pnghash8e8332-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2715,7 +2817,6 @@ "Image" ], "dependencies": [], - "name": "Colorful_Curved_Trimsheet_Metallic-Colorful_Curved_Trimsheet_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesColorful_Curved_Trimsheet_Metallic-Colorful_Curved_Trimsheet_Roughness.pnghash2c400e-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2725,7 +2826,6 @@ "Image" ], "dependencies": [], - "name": "Colorful_Curved_Trimsheet_Normal.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesColorful_Curved_Trimsheet_Normal.pnghashe6757e-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2735,7 +2835,6 @@ "Image" ], "dependencies": [], - "name": "computer_trimsheet_Base_color.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturescomputer_trimsheet_Base_color.pnghash142063-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2745,7 +2844,6 @@ "Image" ], "dependencies": [], - "name": "computer_trimsheet_Metallic-computer_trimsheet_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturescomputer_trimsheet_Metallic-computer_trimsheet_Roughness.pnghash32c1de-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2755,7 +2853,6 @@ "Image" ], "dependencies": [], - "name": "computer_trimsheet_Normal_OpenGL.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturescomputer_trimsheet_Normal_OpenGL.pnghash74e658-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2765,7 +2862,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_CC02_BaseColor.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_CC02_BaseColor.pnghash750846-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2775,7 +2871,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_CC02_Emission.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_CC02_Emission.pnghash7db2cc-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2785,7 +2880,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_CC02_Metallic_png-Furniture_CC02_Roughness_png.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_CC02_Metallic_png-Furniture_CC02_Roughness_png.pnghashf1124c-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2795,7 +2889,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_CC02_Normal.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_CC02_Normal.pnghash788193-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2805,7 +2898,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_cc03_BaseColor.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_cc03_BaseColor.pnghash90714c-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2815,7 +2907,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_cc03_Metallic_png-Furniture_cc03_Roughness_png.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_cc03_Metallic_png-Furniture_cc03_Roughness_png.pnghash43b386-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2825,7 +2916,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_cc03_Normal.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_cc03_Normal.pnghash1dc18d-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2835,7 +2925,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc05_BaseColor.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc05_BaseColor.pnghashe285fd-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2845,7 +2934,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc05_Emission.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc05_Emission.pnghash02b59b-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2855,7 +2943,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc05_Metallic-furniture_cc05_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc05_Metallic-furniture_cc05_Roughness.pnghashff67c5-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2865,7 +2952,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc05_Normal.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc05_Normal.pnghashbd2514-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2875,7 +2961,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc06_BaseColor.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc06_BaseColor.pnghash236e9b-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2885,7 +2970,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc06_Emission.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc06_Emission.pnghashc56828-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2895,7 +2979,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc06_Metallic-furniture_cc06_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc06_Metallic-furniture_cc06_Roughness.pnghashda42d0-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2905,7 +2988,6 @@ "Image" ], "dependencies": [], - "name": "furniture_cc06_Normal.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesfurniture_cc06_Normal.pnghashf795cc-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2915,7 +2997,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_pack_1_Base_color.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_pack_1_Base_color.pnghash853e68-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2925,7 +3006,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_pack_1_Metallic-Furniture_pack_1_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_pack_1_Metallic-Furniture_pack_1_Roughness.pnghash283736-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2935,7 +3015,6 @@ "Image" ], "dependencies": [], - "name": "Furniture_pack_1_Normal_OpenGL.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesFurniture_pack_1_Normal_OpenGL.pnghashca70ff-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2945,7 +3024,6 @@ "Image" ], "dependencies": [], - "name": "Natural_store_trimsheet_1_Base_color.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesNatural_store_trimsheet_1_Base_color.pnghash62b253-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2955,7 +3033,6 @@ "Image" ], "dependencies": [], - "name": "Natural_store_trimsheet_1_Metallic_png-Natural_store_trimsheet_1_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesNatural_store_trimsheet_1_Metallic_png-Natural_store_trimsheet_1_Roughness.pnghash2e203c-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2965,7 +3042,6 @@ "Image" ], "dependencies": [], - "name": "Natural_store_trimsheet_1_Normal_OpenGL.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesNatural_store_trimsheet_1_Normal_OpenGL.pnghash89a7ea-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2975,7 +3051,6 @@ "Image" ], "dependencies": [], - "name": "Office_Furniture_Trimsheet_Base_color.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesOffice_Furniture_Trimsheet_Base_color.pnghash38c590-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2985,7 +3060,6 @@ "Image" ], "dependencies": [], - "name": "Office_Furniture_Trimsheet_Metallic-Office_Furniture_Trimsheet_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesOffice_Furniture_Trimsheet_Metallic-Office_Furniture_Trimsheet_Roughness.pnghash809590-thumbnail.png", "thumbnailMode": "automatic" }, @@ -2995,7 +3069,6 @@ "Image" ], "dependencies": [], - "name": "Office_Furniture_Trimsheet_Normal_OpenGL.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesOffice_Furniture_Trimsheet_Normal_OpenGL.pnghash1b75e8-thumbnail.png", "thumbnailMode": "automatic" }, @@ -3005,7 +3078,6 @@ "Image" ], "dependencies": [], - "name": "Wood_Furniture_modular_Base_color.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesWood_Furniture_modular_Base_color.pnghash32ef5a-thumbnail.png", "thumbnailMode": "automatic" }, @@ -3015,7 +3087,6 @@ "Image" ], "dependencies": [], - "name": "Wood_Furniture_modular_Metallic-Wood_Furniture_modular_Roughness.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesWood_Furniture_modular_Metallic-Wood_Furniture_modular_Roughness.pnghash6cf6ee-thumbnail.png", "thumbnailMode": "automatic" }, @@ -3025,7 +3096,6 @@ "Image" ], "dependencies": [], - "name": "Wood_Furniture_modular_Normal_OpenGL.png", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstexturesWood_Furniture_modular_Normal_OpenGL.pnghash4d5701-thumbnail.png", "thumbnailMode": "automatic" }, @@ -3034,8 +3104,7 @@ "tags": [ "unknown" ], - "dependencies": [], - "name": "TorusKnotLight.001.bin" + "dependencies": [] }, "assets/models/TorusKnotLight.001.gltf": { "type": "asset", @@ -3047,20 +3116,15 @@ "ceiling lamp" ], "dependencies": [], - "name": "TorusKnotLight.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsTorusKnotLight.001.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.4, - "height": 1.76, - "depth": 1.46 + "thumbnailMode": "automatic" }, "assets/models/triangle_plinths.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "triangle_plinths.bin" + "dependencies": [] }, "assets/models/triangle_plinths.gltf": { "type": "asset", @@ -3073,20 +3137,95 @@ "plinth" ], "dependencies": [], - "name": "triangle_plinths.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelstriangle_plinths.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.6, - "height": 2.16, - "depth": 1.71 + "thumbnailMode": "automatic" + }, + "assets/models/UpLu_Checkout_Counter.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "UpLu_Checkout_Counter.bin" + }, + "assets/models/UpLu_Green_Wall_with_Sign.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "UpLu_Green_Wall_with_Sign.bin" + }, + "assets/models/UpLu_Green_Wall_with_Sign.gltf": { + "type": "asset", + "tags": [ + "Model" + ], + "dependencies": [], + "name": "UpLu_Green_Wall_with_Sign.gltf" + }, + "assets/models/UpLu_Marble_Planter.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "UpLu_Marble_Planter.bin" + }, + "assets/models/UpLu_Norm.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "UpLu_Norm.png" + }, + "assets/models/UpLu_Rough-1.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "UpLu_Rough-1.png" + }, + "assets/models/UpLu_Rough.png": { + "type": "asset", + "tags": [ + "Image" + ], + "dependencies": [], + "name": "UpLu_Rough.png" + }, + "assets/models/UpLu_Round_Marble_Display.gltf": { + "type": "asset", + "tags": [ + "Model" + ], + "dependencies": [], + "name": "UpLu_Round_Marble_Display.gltf" + }, + "assets/models/UpLu_Wall_Foliage_small.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "UpLu_Wall_Foliage_small.bin" + }, + "assets/models/UpLu_Wall_Foliage.bin": { + "type": "asset", + "tags": [ + "unknown" + ], + "dependencies": [], + "name": "UpLu_Wall_Foliage.bin" }, "assets/models/Vase_1.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Vase_1.001.bin" + "dependencies": [] }, "assets/models/Vase_1.001.gltf": { "type": "asset", @@ -3097,20 +3236,15 @@ "sculpture" ], "dependencies": [], - "name": "Vase_1.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsVase_1.001.gltfhash97ae89-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.16, - "height": 0.21, - "depth": 0.16 + "thumbnailMode": "automatic" }, "assets/models/Vase_2_low.002.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Vase_2_low.002.bin" + "dependencies": [] }, "assets/models/Vase_2_low.002.gltf": { "type": "asset", @@ -3121,20 +3255,15 @@ "sculpture" ], "dependencies": [], - "name": "Vase_2_low.002.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsVase_2_low.002.gltfhash268514-thumbnail.png", - "thumbnailMode": "automatic", - "width": 0.12, - "height": 0.24, - "depth": 0.12 + "thumbnailMode": "automatic" }, "assets/models/Velvet_armchair.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Velvet_armchair.bin" + "dependencies": [] }, "assets/models/Velvet_armchair.gltf": { "type": "asset", @@ -3146,20 +3275,15 @@ "chair" ], "dependencies": [], - "name": "Velvet_armchair.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsVelvet_armchair.gltf-thumbnail.png", - "thumbnailMode": "automatic", - "width": 1.32, - "height": 1.6, - "depth": 2.39 + "thumbnailMode": "automatic" }, "assets/models/Velvet_sofa.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Velvet_sofa.bin" + "dependencies": [] }, "assets/models/Velvet_sofa.gltf": { "type": "asset", @@ -3171,20 +3295,15 @@ "sofa" ], "dependencies": [], - "name": "Velvet_sofa.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsVelvet_sofa.gltfhash64c337-thumbnail.png", - "thumbnailMode": "automatic", - "width": 4.99, - "height": 1.26, - "depth": 1.73 + "thumbnailMode": "automatic" }, "assets/models/Wall_shelves_-_2.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Wall_shelves_-_2.001.bin" + "dependencies": [] }, "assets/models/Wall_shelves_-_2.001.gltf": { "type": "asset", @@ -3198,20 +3317,15 @@ "shelf" ], "dependencies": [], - "name": "Wall_shelves_-_2.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsWall_shelves_-_2.001.gltfhash8cd9db-thumbnail.png", - "thumbnailMode": "automatic", - "width": 3.04, - "height": 1.13, - "depth": 0.33 + "thumbnailMode": "automatic" }, "assets/models/Wall_shelves_-1.001.bin": { "type": "file", "tags": [ "unknown" ], - "dependencies": [], - "name": "Wall_shelves_-1.001.bin" + "dependencies": [] }, "assets/models/Wall_shelves_-1.001.gltf": { "type": "asset", @@ -3225,21 +3339,18 @@ "shelf" ], "dependencies": [], - "name": "Wall_shelves_-1.001.gltf", "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/ir-propsassetsmodelsWall_shelves_-1.001.gltfhash4ac485-thumbnail.png", "thumbnailMode": "automatic", "width": 3, "height": 0.4, "depth": 0.42 }, - "public/scenes/New-Scene.gltf": { - "type": "scene", + "assets/models/Walls_01_lightmap-Exhibition_ORM.png": { + "type": "asset", "tags": [ - "Model" + "Image" ], "dependencies": [], - "name": "New-Scene.gltf", - "thumbnailKey": "projects/ir-engine/ir-props/public/thumbnails/New-Scene.thumbnail.jpg", - "thumbnailMode": "custom" + "name": "Walls_01_lightmap-Exhibition_ORM.png" } }